prettier 3.0.0-alpha.1 → 3.0.0-alpha.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. package/LICENSE +910 -759
  2. package/README.md +3 -3
  3. package/bin/prettier.cjs +0 -0
  4. package/doc.d.ts +240 -0
  5. package/doc.js +351 -479
  6. package/doc.mjs +342 -474
  7. package/index.cjs +400 -230
  8. package/index.d.ts +919 -0
  9. package/index.mjs +18129 -32123
  10. package/internal/cli.mjs +4374 -10823
  11. package/internal/internal.mjs +6437 -0
  12. package/package.json +55 -13
  13. package/plugins/acorn.d.ts +6 -0
  14. package/plugins/acorn.js +13 -0
  15. package/plugins/acorn.mjs +13 -0
  16. package/plugins/angular.d.ts +8 -0
  17. package/plugins/angular.js +2 -2
  18. package/plugins/angular.mjs +2 -2
  19. package/plugins/babel.d.ts +17 -0
  20. package/plugins/babel.js +12 -12
  21. package/plugins/babel.mjs +12 -12
  22. package/plugins/estree.d.ts +0 -0
  23. package/plugins/estree.js +35 -0
  24. package/plugins/estree.mjs +35 -0
  25. package/plugins/flow.d.ts +5 -0
  26. package/plugins/flow.js +20 -20
  27. package/plugins/flow.mjs +20 -20
  28. package/plugins/glimmer.d.ts +5 -0
  29. package/plugins/glimmer.js +23 -18
  30. package/plugins/glimmer.mjs +23 -18
  31. package/plugins/graphql.d.ts +5 -0
  32. package/plugins/graphql.js +16 -7
  33. package/plugins/graphql.mjs +16 -7
  34. package/plugins/html.d.ts +8 -0
  35. package/plugins/html.js +19 -29
  36. package/plugins/html.mjs +19 -29
  37. package/plugins/markdown.d.ts +7 -0
  38. package/plugins/markdown.js +52 -32
  39. package/plugins/markdown.mjs +52 -32
  40. package/plugins/meriyah.d.ts +5 -0
  41. package/plugins/meriyah.js +5 -6
  42. package/plugins/meriyah.mjs +5 -6
  43. package/plugins/postcss.d.ts +7 -0
  44. package/plugins/postcss.js +45 -43
  45. package/plugins/postcss.mjs +45 -43
  46. package/plugins/typescript.d.ts +5 -0
  47. package/plugins/typescript.js +24 -239
  48. package/plugins/typescript.mjs +24 -239
  49. package/plugins/yaml.d.ts +5 -0
  50. package/plugins/yaml.js +146 -133
  51. package/plugins/yaml.mjs +146 -133
  52. package/standalone.d.ts +33 -0
  53. package/standalone.js +35 -105
  54. package/standalone.mjs +35 -105
  55. package/internal/third-party.mjs +0 -9071
  56. package/plugins/acorn-and-espree.js +0 -13
  57. package/plugins/acorn-and-espree.mjs +0 -13
package/LICENSE CHANGED
@@ -13,23 +13,28 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
13
13
  ## Licenses of bundled dependencies
14
14
 
15
15
  The published Prettier artifact additionally contains code with the following licenses:
16
- MIT, ISC, BSD-2-Clause, BSD-3-Clause, Apache-2.0, 0BSD
16
+ MIT, ISC, BSD-2-Clause, BSD-3-Clause, 0BSD, Apache-2.0
17
17
 
18
18
  ## Bundled dependencies
19
19
 
20
- ### @angular/compiler@v12.2.16
20
+ ### @angular/compiler@v15.2.8
21
+
22
+ > Angular - the compiler library
21
23
 
22
24
  License: MIT
23
- By: angular
24
25
  Repository: <https://github.com/angular/angular.git>
26
+ Author: angular
25
27
 
26
28
  ----------------------------------------
27
29
 
28
- ### @babel/code-frame@v7.18.6
30
+ ### @babel/code-frame@v7.21.4
31
+
32
+ > Generate errors that contain a code frame that point to source locations.
29
33
 
30
34
  License: MIT
31
- By: The Babel Team
35
+ Homepage: <https://babel.dev/docs/en/next/babel-code-frame>
32
36
  Repository: <https://github.com/babel/babel.git>
37
+ Author: The Babel Team (https://babel.dev/team)
33
38
 
34
39
  > MIT License
35
40
  >
@@ -58,9 +63,11 @@ Repository: <https://github.com/babel/babel.git>
58
63
 
59
64
  ### @babel/helper-validator-identifier@v7.19.1
60
65
 
66
+ > Validate identifier/keywords name
67
+
61
68
  License: MIT
62
- By: The Babel Team
63
69
  Repository: <https://github.com/babel/babel.git>
70
+ Author: The Babel Team (https://babel.dev/team)
64
71
 
65
72
  > MIT License
66
73
  >
@@ -89,9 +96,12 @@ Repository: <https://github.com/babel/babel.git>
89
96
 
90
97
  ### @babel/highlight@v7.18.6
91
98
 
99
+ > Syntax highlight JavaScript strings for output in terminals.
100
+
92
101
  License: MIT
93
- By: The Babel Team
102
+ Homepage: <https://babel.dev/docs/en/next/babel-highlight>
94
103
  Repository: <https://github.com/babel/babel.git>
104
+ Author: The Babel Team (https://babel.dev/team)
95
105
 
96
106
  > MIT License
97
107
  >
@@ -118,11 +128,14 @@ Repository: <https://github.com/babel/babel.git>
118
128
 
119
129
  ----------------------------------------
120
130
 
121
- ### @babel/parser@v7.19.3
131
+ ### @babel/parser@v7.21.4
132
+
133
+ > A JavaScript parser
122
134
 
123
135
  License: MIT
124
- By: The Babel Team
136
+ Homepage: <https://babel.dev/docs/en/next/babel-parser>
125
137
  Repository: <https://github.com/babel/babel.git>
138
+ Author: The Babel Team (https://babel.dev/team)
126
139
 
127
140
  > Copyright (C) 2012-2014 by various contributors (see AUTHORS)
128
141
  >
@@ -148,6 +161,8 @@ Repository: <https://github.com/babel/babel.git>
148
161
 
149
162
  ### @glimmer/env@v0.1.7
150
163
 
164
+ > Glimmer application environment variables stub
165
+
151
166
  License: MIT
152
167
 
153
168
  > Copyright (c) 2017 Martin Muñoz and contributors.
@@ -172,7 +187,7 @@ License: MIT
172
187
 
173
188
  ----------------------------------------
174
189
 
175
- ### @glimmer/syntax@v0.84.2
190
+ ### @glimmer/syntax@v0.84.3
176
191
 
177
192
  License: MIT
178
193
 
@@ -198,7 +213,9 @@ License: MIT
198
213
 
199
214
  ----------------------------------------
200
215
 
201
- ### @glimmer/util@v0.84.2
216
+ ### @glimmer/util@v0.84.3
217
+
218
+ > Common utilities used in Glimmer
202
219
 
203
220
  License: MIT
204
221
 
@@ -226,16 +243,22 @@ License: MIT
226
243
 
227
244
  ### @handlebars/parser@v2.0.0
228
245
 
246
+ > The parser for the Handlebars language
247
+
229
248
  License: ISC
249
+ Homepage: <https://github.com/handlebars-lang/handlebars-parser#readme>
230
250
  Repository: <git+https://github.com/handlebars-lang/handlebars-parser.git>
231
251
 
232
252
  ----------------------------------------
233
253
 
234
254
  ### @iarna/toml@v2.2.5
235
255
 
256
+ > Better TOML parsing and stringifying all in that familiar JSON interface.
257
+
236
258
  License: ISC
237
- By: Rebecca Turner
259
+ Homepage: <https://github.com/iarna/iarna-toml#readme>
238
260
  Repository: <git+https://github.com/iarna/iarna-toml.git>
261
+ Author: Rebecca Turner <me@re-becca.org> (http://re-becca.org/)
239
262
 
240
263
  > Copyright (c) 2016, Rebecca Turner <me@re-becca.org>
241
264
  >
@@ -255,6 +278,8 @@ Repository: <git+https://github.com/iarna/iarna-toml.git>
255
278
 
256
279
  ### @nodelib/fs.scandir@v2.1.5
257
280
 
281
+ > List files and directories inside the specified directory
282
+
258
283
  License: MIT
259
284
 
260
285
  > The MIT License (MIT)
@@ -283,6 +308,8 @@ License: MIT
283
308
 
284
309
  ### @nodelib/fs.stat@v2.0.5
285
310
 
311
+ > Get the status of a file with some features
312
+
286
313
  License: MIT
287
314
 
288
315
  > The MIT License (MIT)
@@ -311,6 +338,8 @@ License: MIT
311
338
 
312
339
  ### @nodelib/fs.walk@v1.2.8
313
340
 
341
+ > A library for efficiently walking a directory recursively
342
+
314
343
  License: MIT
315
344
 
316
345
  > The MIT License (MIT)
@@ -337,10 +366,44 @@ License: MIT
337
366
 
338
367
  ----------------------------------------
339
368
 
340
- ### @prettier/parse-srcset@v2.0.1
369
+ ### @prettier/is-es5-identifier-name@v0.1.0
370
+
371
+ > Check if provided string is an `IdentifierName` as specified in ECMA262 edition 5.1 section 7.6.
341
372
 
342
373
  License: MIT
343
- By: Alex Bell
374
+ Author: fisker Cheung <lionkay@gmail.com>
375
+
376
+ > MIT License
377
+ >
378
+ > Copyright (c) fisker Cheung <lionkay@gmail.com> (https://www.fiskercheung.com/)
379
+ >
380
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
381
+ > of this software and associated documentation files (the "Software"), to deal
382
+ > in the Software without restriction, including without limitation the rights
383
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
384
+ > copies of the Software, and to permit persons to whom the Software is
385
+ > furnished to do so, subject to the following conditions:
386
+ >
387
+ > The above copyright notice and this permission notice shall be included in all
388
+ > copies or substantial portions of the Software.
389
+ >
390
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
391
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
392
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
393
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
394
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
395
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
396
+ > SOFTWARE.
397
+
398
+ ----------------------------------------
399
+
400
+ ### @prettier/parse-srcset@v3.0.0
401
+
402
+ > A spec-conformant JavaScript parser for the HTML5 srcset attribute
403
+
404
+ License: MIT
405
+ Homepage: <https://github.com/prettier/parse-srcset#readme>
406
+ Author: Alex Bell <alex@bellandwhistle.net>
344
407
 
345
408
  > The MIT License (MIT)
346
409
  >
@@ -366,14 +429,16 @@ By: Alex Bell
366
429
 
367
430
  ----------------------------------------
368
431
 
369
- ### @typescript-eslint/types@v5.38.1
432
+ ### @typescript-eslint/types@v5.59.0
433
+
434
+ > Types for the TypeScript-ESTree AST spec
370
435
 
371
436
  License: MIT
372
437
  Repository: <https://github.com/typescript-eslint/typescript-eslint.git>
373
438
 
374
439
  > MIT License
375
440
  >
376
- > Copyright (c) 2019 TypeScript ESLint and other contributors
441
+ > Copyright (c) 2019 typescript-eslint and other contributors
377
442
  >
378
443
  > Permission is hereby granted, free of charge, to any person obtaining a copy
379
444
  > of this software and associated documentation files (the "Software"), to deal
@@ -395,7 +460,9 @@ Repository: <https://github.com/typescript-eslint/typescript-eslint.git>
395
460
 
396
461
  ----------------------------------------
397
462
 
398
- ### @typescript-eslint/typescript-estree@v5.38.1
463
+ ### @typescript-eslint/typescript-estree@v5.59.0
464
+
465
+ > A parser that converts TypeScript source code into an ESTree compatible form
399
466
 
400
467
  License: BSD-2-Clause
401
468
  Repository: <https://github.com/typescript-eslint/typescript-eslint.git>
@@ -410,11 +477,11 @@ Repository: <https://github.com/typescript-eslint/typescript-eslint.git>
410
477
  > Redistribution and use in source and binary forms, with or without
411
478
  > modification, are permitted provided that the following conditions are met:
412
479
  >
413
- > * Redistributions of source code must retain the above copyright
414
- > notice, this list of conditions and the following disclaimer.
415
- > * Redistributions in binary form must reproduce the above copyright
416
- > notice, this list of conditions and the following disclaimer in the
417
- > documentation and/or other materials provided with the distribution.
480
+ > - Redistributions of source code must retain the above copyright
481
+ > notice, this list of conditions and the following disclaimer.
482
+ > - Redistributions in binary form must reproduce the above copyright
483
+ > notice, this list of conditions and the following disclaimer in the
484
+ > documentation and/or other materials provided with the distribution.
418
485
  >
419
486
  > THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
420
487
  > AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
@@ -429,38 +496,12 @@ Repository: <https://github.com/typescript-eslint/typescript-eslint.git>
429
496
 
430
497
  ----------------------------------------
431
498
 
432
- ### @typescript-eslint/visitor-keys@v5.38.1
499
+ ### acorn@v8.8.2
433
500
 
434
- License: MIT
435
- Repository: <https://github.com/typescript-eslint/typescript-eslint.git>
436
-
437
- > MIT License
438
- >
439
- > Copyright (c) 2019 TypeScript ESLint and other contributors
440
- >
441
- > Permission is hereby granted, free of charge, to any person obtaining a copy
442
- > of this software and associated documentation files (the "Software"), to deal
443
- > in the Software without restriction, including without limitation the rights
444
- > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
445
- > copies of the Software, and to permit persons to whom the Software is
446
- > furnished to do so, subject to the following conditions:
447
- >
448
- > The above copyright notice and this permission notice shall be included in all
449
- > copies or substantial portions of the Software.
450
- >
451
- > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
452
- > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
453
- > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
454
- > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
455
- > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
456
- > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
457
- > SOFTWARE.
458
-
459
- ----------------------------------------
460
-
461
- ### acorn@v8.8.0
501
+ > ECMAScript parser
462
502
 
463
503
  License: MIT
504
+ Homepage: <https://github.com/acornjs/acorn>
464
505
  Repository: <https://github.com/acornjs/acorn.git>
465
506
 
466
507
  > MIT License
@@ -489,7 +530,10 @@ Repository: <https://github.com/acornjs/acorn.git>
489
530
 
490
531
  ### acorn-jsx@v5.3.2
491
532
 
533
+ > Modern, fast React.js JSX parser
534
+
492
535
  License: MIT
536
+ Homepage: <https://github.com/acornjs/acorn-jsx>
493
537
  Repository: <https://github.com/acornjs/acorn-jsx>
494
538
 
495
539
  > Copyright (C) 2012-2017 by Ingvar Stepanyan
@@ -514,10 +558,13 @@ Repository: <https://github.com/acornjs/acorn-jsx>
514
558
 
515
559
  ----------------------------------------
516
560
 
517
- ### angular-estree-parser@v2.5.1
561
+ ### angular-estree-parser@v6.2.0
562
+
563
+ > A parser that converts Angular source code into an ESTree-compatible form
518
564
 
519
565
  License: MIT
520
- By: Ika
566
+ Homepage: <https://github.com/prettier/angular-estree-parser#readme>
567
+ Author: Ika <ikatyang@gmail.com> (https://github.com/ikatyang)
521
568
 
522
569
  > MIT License
523
570
  >
@@ -543,39 +590,44 @@ By: Ika
543
590
 
544
591
  ----------------------------------------
545
592
 
546
- ### angular-html-parser@v2.0.0
593
+ ### angular-html-parser@v4.0.1
594
+
595
+ > A HTML parser extracted from Angular with some modifications
547
596
 
548
597
  License: MIT
549
- By: Ika
598
+ Homepage: <https://github.com/prettier/angular-html-parser/blob/master/packages/angular-html-parser#readme>
599
+ Author: Ika <ikatyang@gmail.com> (https://github.com/ikatyang)
550
600
 
551
- > MIT License
552
- >
553
- > Copyright (c) Ika <ikatyang@gmail.com> (https://github.com/ikatyang)
554
- >
555
- > Permission is hereby granted, free of charge, to any person obtaining a copy
556
- > of this software and associated documentation files (the "Software"), to deal
557
- > in the Software without restriction, including without limitation the rights
558
- > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
559
- > copies of the Software, and to permit persons to whom the Software is
560
- > furnished to do so, subject to the following conditions:
561
- >
562
- > The above copyright notice and this permission notice shall be included in all
563
- > copies or substantial portions of the Software.
564
- >
565
- > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
566
- > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
567
- > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
568
- > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
569
- > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
570
- > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
601
+ > MIT License
602
+ >
603
+ > Copyright (c) Ika <ikatyang@gmail.com> (https://github.com/ikatyang)
604
+ >
605
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
606
+ > of this software and associated documentation files (the "Software"), to deal
607
+ > in the Software without restriction, including without limitation the rights
608
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
609
+ > copies of the Software, and to permit persons to whom the Software is
610
+ > furnished to do so, subject to the following conditions:
611
+ >
612
+ > The above copyright notice and this permission notice shall be included in all
613
+ > copies or substantial portions of the Software.
614
+ >
615
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
616
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
617
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
618
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
619
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
620
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
571
621
  > SOFTWARE.
572
622
 
573
623
  ----------------------------------------
574
624
 
575
625
  ### ansi-regex@v6.0.1
576
626
 
627
+ > Regular expression for matching ANSI escape codes
628
+
577
629
  License: MIT
578
- By: Sindre Sorhus
630
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
579
631
 
580
632
  > MIT License
581
633
  >
@@ -591,8 +643,10 @@ By: Sindre Sorhus
591
643
 
592
644
  ### ansi-styles@v3.2.1
593
645
 
646
+ > ANSI escape codes for styling strings in the terminal
647
+
594
648
  License: MIT
595
- By: Sindre Sorhus
649
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
596
650
 
597
651
  > MIT License
598
652
  >
@@ -608,8 +662,12 @@ By: Sindre Sorhus
608
662
 
609
663
  ### bail@v1.0.5
610
664
 
665
+ > Throw a given error
666
+
611
667
  License: MIT
612
- By: Titus Wormer
668
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
669
+ Contributors:
670
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
613
671
 
614
672
  > (The MIT License)
615
673
  >
@@ -638,9 +696,12 @@ By: Titus Wormer
638
696
 
639
697
  ### balanced-match@v1.0.2
640
698
 
699
+ > Match balanced character pairs, like "{" and "}"
700
+
641
701
  License: MIT
642
- By: Julian Gruber
702
+ Homepage: <https://github.com/juliangruber/balanced-match>
643
703
  Repository: <git://github.com/juliangruber/balanced-match.git>
704
+ Author: Julian Gruber <mail@juliangruber.com> (http://juliangruber.com)
644
705
 
645
706
  > (MIT)
646
707
  >
@@ -668,9 +729,12 @@ Repository: <git://github.com/juliangruber/balanced-match.git>
668
729
 
669
730
  ### brace-expansion@v1.1.11
670
731
 
732
+ > Brace expansion as known from sh/bash
733
+
671
734
  License: MIT
672
- By: Julian Gruber
735
+ Homepage: <https://github.com/juliangruber/brace-expansion>
673
736
  Repository: <git://github.com/juliangruber/brace-expansion.git>
737
+ Author: Julian Gruber <mail@juliangruber.com> (http://juliangruber.com)
674
738
 
675
739
  > MIT License
676
740
  >
@@ -698,8 +762,17 @@ Repository: <git://github.com/juliangruber/brace-expansion.git>
698
762
 
699
763
  ### braces@v3.0.2
700
764
 
765
+ > Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.
766
+
701
767
  License: MIT
702
- By: Jon Schlinkert
768
+ Homepage: <https://github.com/micromatch/braces>
769
+ Author: Jon Schlinkert (https://github.com/jonschlinkert)
770
+ Contributors:
771
+ - Brian Woodward (https://twitter.com/doowb)
772
+ - Elan Shanker (https://github.com/es128)
773
+ - Eugene Sharygin (https://github.com/eush77)
774
+ - hemanth.hm (http://h3manth.com)
775
+ - Jon Schlinkert (http://twitter.com/jonschlinkert)
703
776
 
704
777
  > The MIT License (MIT)
705
778
  >
@@ -725,10 +798,12 @@ By: Jon Schlinkert
725
798
 
726
799
  ----------------------------------------
727
800
 
728
- ### camelcase@v7.0.0
801
+ ### camelcase@v7.0.1
802
+
803
+ > Convert a dash/dot/underscore/space separated string to camelCase or PascalCase: `foo-bar` → `fooBar`
729
804
 
730
805
  License: MIT
731
- By: Sindre Sorhus
806
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
732
807
 
733
808
  > MIT License
734
809
  >
@@ -744,8 +819,12 @@ By: Sindre Sorhus
744
819
 
745
820
  ### ccount@v1.1.0
746
821
 
822
+ > Count characters
823
+
747
824
  License: MIT
748
- By: Titus Wormer
825
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
826
+ Contributors:
827
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
749
828
 
750
829
  > (The MIT License)
751
830
  >
@@ -774,6 +853,8 @@ By: Titus Wormer
774
853
 
775
854
  ### chalk@v2.4.2
776
855
 
856
+ > Terminal string styling done right
857
+
777
858
  License: MIT
778
859
 
779
860
  > MIT License
@@ -788,7 +869,9 @@ License: MIT
788
869
 
789
870
  ----------------------------------------
790
871
 
791
- ### chalk@v5.0.1
872
+ ### chalk@v5.2.0
873
+
874
+ > Terminal string styling done right
792
875
 
793
876
  License: MIT
794
877
 
@@ -806,8 +889,12 @@ License: MIT
806
889
 
807
890
  ### character-entities@v1.2.4
808
891
 
892
+ > HTML character entity information
893
+
809
894
  License: MIT
810
- By: Titus Wormer
895
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
896
+ Contributors:
897
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
811
898
 
812
899
  > (The MIT License)
813
900
  >
@@ -836,8 +923,12 @@ By: Titus Wormer
836
923
 
837
924
  ### character-entities-legacy@v1.1.4
838
925
 
926
+ > HTML legacy character entity information
927
+
839
928
  License: MIT
840
- By: Titus Wormer
929
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
930
+ Contributors:
931
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
841
932
 
842
933
  > (The MIT License)
843
934
  >
@@ -866,8 +957,12 @@ By: Titus Wormer
866
957
 
867
958
  ### character-reference-invalid@v1.1.4
868
959
 
960
+ > HTML invalid numeric character reference information
961
+
869
962
  License: MIT
870
- By: Titus Wormer
963
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
964
+ Contributors:
965
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
871
966
 
872
967
  > (The MIT License)
873
968
  >
@@ -894,14 +989,17 @@ By: Titus Wormer
894
989
 
895
990
  ----------------------------------------
896
991
 
897
- ### ci-info@v3.4.0
992
+ ### ci-info@v3.8.0
993
+
994
+ > Get details about the current Continuous Integration environment
898
995
 
899
996
  License: MIT
900
- By: Thomas Watson Steen
997
+ Homepage: <https://github.com/watson/ci-info>
998
+ Author: Thomas Watson Steen <w@tson.dk> (https://twitter.com/wa7son)
901
999
 
902
1000
  > The MIT License (MIT)
903
1001
  >
904
- > Copyright (c) 2016-2021 Thomas Watson Steen
1002
+ > Copyright (c) 2016-2023 Thomas Watson Steen
905
1003
  >
906
1004
  > Permission is hereby granted, free of charge, to any person obtaining a copy
907
1005
  > of this software and associated documentation files (the "Software"), to deal
@@ -925,9 +1023,28 @@ By: Thomas Watson Steen
925
1023
 
926
1024
  ### clone@v1.0.4
927
1025
 
1026
+ > deep cloning of objects and arrays
1027
+
928
1028
  License: MIT
929
- By: Paul Vorbach
930
1029
  Repository: <git://github.com/pvorb/node-clone.git>
1030
+ Author: Paul Vorbach <paul@vorba.ch> (http://paul.vorba.ch/)
1031
+ Contributors:
1032
+ - Blake Miner <miner.blake@gmail.com> (http://www.blakeminer.com/)
1033
+ - Tian You <axqd001@gmail.com> (http://blog.axqd.net/)
1034
+ - George Stagas <gstagas@gmail.com> (http://stagas.com/)
1035
+ - Tobiasz Cudnik <tobiasz.cudnik@gmail.com> (https://github.com/TobiaszCudnik)
1036
+ - Pavel Lang <langpavel@phpskelet.org> (https://github.com/langpavel)
1037
+ - Dan MacTough (http://yabfog.com/)
1038
+ - w1nk (https://github.com/w1nk)
1039
+ - Hugh Kennedy (http://twitter.com/hughskennedy)
1040
+ - Dustin Diaz (http://dustindiaz.com)
1041
+ - Ilya Shaisultanov (https://github.com/diversario)
1042
+ - Nathan MacInnes <nathan@macinn.es> (http://macinn.es/)
1043
+ - Benjamin E. Coe <ben@npmjs.com> (https://twitter.com/benjamincoe)
1044
+ - Nathan Zadoks (https://github.com/nathan7)
1045
+ - Róbert Oroszi <robert+gh@oroszi.net> (https://github.com/oroce)
1046
+ - Aurélio A. Heckert (http://softwarelivre.org/aurium)
1047
+ - Guy Ellis (http://www.guyellisrocks.com/)
931
1048
 
932
1049
  > Copyright © 2011-2015 Paul Vorbach <paul@vorba.ch>
933
1050
  >
@@ -952,8 +1069,12 @@ Repository: <git://github.com/pvorb/node-clone.git>
952
1069
 
953
1070
  ### collapse-white-space@v1.0.6
954
1071
 
1072
+ > Replace multiple white-space characters with a single space
1073
+
955
1074
  License: MIT
956
- By: Titus Wormer
1075
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
1076
+ Contributors:
1077
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
957
1078
 
958
1079
  > (The MIT License)
959
1080
  >
@@ -982,8 +1103,10 @@ By: Titus Wormer
982
1103
 
983
1104
  ### color-convert@v1.9.3
984
1105
 
1106
+ > Plain color conversion functions
1107
+
985
1108
  License: MIT
986
- By: Heather Arthur
1109
+ Author: Heather Arthur <fayearthur@gmail.com>
987
1110
 
988
1111
  > Copyright (c) 2011-2016 Heather Arthur <fayearthur@gmail.com>
989
1112
  >
@@ -1010,9 +1133,12 @@ By: Heather Arthur
1010
1133
 
1011
1134
  ### color-name@v1.1.3
1012
1135
 
1136
+ > A list of color names and its values
1137
+
1013
1138
  License: MIT
1014
- By: DY
1139
+ Homepage: <https://github.com/dfcreative/color-name>
1015
1140
  Repository: <git@github.com:dfcreative/color-name.git>
1141
+ Author: DY <dfcreative@gmail.com>
1016
1142
 
1017
1143
  > The MIT License (MIT)
1018
1144
  > Copyright (c) 2015 Dmitry Ivanov
@@ -1025,44 +1151,39 @@ Repository: <git@github.com:dfcreative/color-name.git>
1025
1151
 
1026
1152
  ----------------------------------------
1027
1153
 
1028
- ### commondir@v1.0.1
1154
+ ### common-path-prefix@v3.0.0
1029
1155
 
1030
- License: MIT
1031
- By: James Halliday
1032
- Repository: <http://github.com/substack/node-commondir.git>
1156
+ > Computes the longest prefix string that is common to each path, excluding the base component
1033
1157
 
1034
- > The MIT License
1035
- >
1036
- > Copyright (c) 2013 James Halliday (mail@substack.net)
1037
- >
1038
- > Permission is hereby granted, free of charge,
1039
- > to any person obtaining a copy of this software and
1040
- > associated documentation files (the "Software"), to
1041
- > deal in the Software without restriction, including
1042
- > without limitation the rights to use, copy, modify,
1043
- > merge, publish, distribute, sublicense, and/or sell
1044
- > copies of the Software, and to permit persons to whom
1045
- > the Software is furnished to do so,
1046
- > subject to the following conditions:
1158
+ License: ISC
1159
+ Homepage: <https://github.com/novemberborn/common-path-prefix#readme>
1160
+ Repository: <git+https://github.com/novemberborn/common-path-prefix.git>
1161
+ Author: Mark Wubben (https://novemberborn.net/)
1162
+
1163
+ > ISC License (ISC)
1164
+ > Copyright (c) 2016, Mark Wubben
1047
1165
  >
1048
- > The above copyright notice and this permission notice
1049
- > shall be included in all copies or substantial portions of the Software.
1166
+ > Permission to use, copy, modify, and/or distribute this software for any purpose
1167
+ > with or without fee is hereby granted, provided that the above copyright notice
1168
+ > and this permission notice appear in all copies.
1050
1169
  >
1051
- > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1052
- > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1053
- > OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1054
- > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
1055
- > ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1056
- > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1057
- > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1170
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
1171
+ > REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
1172
+ > FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
1173
+ > INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
1174
+ > OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
1175
+ > TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
1176
+ > THIS SOFTWARE.
1058
1177
 
1059
1178
  ----------------------------------------
1060
1179
 
1061
1180
  ### concat-map@v0.0.1
1062
1181
 
1182
+ > concatenative mapdashery
1183
+
1063
1184
  License: MIT
1064
- By: James Halliday
1065
1185
  Repository: <git://github.com/substack/node-concat-map.git>
1186
+ Author: James Halliday <mail@substack.net> (http://substack.net)
1066
1187
 
1067
1188
  > This software is released under the MIT license:
1068
1189
  >
@@ -1085,11 +1206,17 @@ Repository: <git://github.com/substack/node-concat-map.git>
1085
1206
 
1086
1207
  ----------------------------------------
1087
1208
 
1088
- ### cosmiconfig@v7.0.1
1209
+ ### cosmiconfig@v8.0.0
1210
+
1211
+ > Find and load configuration from a package.json property, rc file, or CommonJS module
1089
1212
 
1090
1213
  License: MIT
1091
- By: David Clark
1214
+ Homepage: <https://github.com/davidtheclark/cosmiconfig#readme>
1092
1215
  Repository: <git+https://github.com/davidtheclark/cosmiconfig.git>
1216
+ Author: David Clark <david.dave.clark@gmail.com>
1217
+ Contributors:
1218
+ - Bogdan Chadkin <trysound@yandex.ru>
1219
+ - Suhas Karanth <sudo.suhas@gmail.com>
1093
1220
 
1094
1221
  > The MIT License (MIT)
1095
1222
  >
@@ -1117,8 +1244,15 @@ Repository: <git+https://github.com/davidtheclark/cosmiconfig.git>
1117
1244
 
1118
1245
  ### dashify@v2.0.0
1119
1246
 
1247
+ > Convert a camelcase or space-separated string to a dash-separated string. ~12 sloc, fast, supports diacritics.
1248
+
1120
1249
  License: MIT
1121
- By: Jon Schlinkert
1250
+ Homepage: <https://github.com/jonschlinkert/dashify>
1251
+ Author: Jon Schlinkert (https://github.com/jonschlinkert)
1252
+ Contributors:
1253
+ - Jeffrey Priebe (https://github.com/jeffreypriebe)
1254
+ - Jon Schlinkert (http://twitter.com/jonschlinkert)
1255
+ - Ondrej Brinkel (https://www.anzui.de)
1122
1256
 
1123
1257
  > The MIT License (MIT)
1124
1258
  >
@@ -1146,9 +1280,11 @@ By: Jon Schlinkert
1146
1280
 
1147
1281
  ### defaults@v1.0.3
1148
1282
 
1283
+ > merge single level defaults over a config object
1284
+
1149
1285
  License: MIT
1150
- By: Elijah Insua
1151
1286
  Repository: <git://github.com/tmpvar/defaults.git>
1287
+ Author: Elijah Insua <tmpvar@gmail.com>
1152
1288
 
1153
1289
  > The MIT License (MIT)
1154
1290
  >
@@ -1176,6 +1312,8 @@ Repository: <git://github.com/tmpvar/defaults.git>
1176
1312
 
1177
1313
  ### diff@v5.1.0
1178
1314
 
1315
+ > A javascript text diff implementation.
1316
+
1179
1317
  License: BSD-3-Clause
1180
1318
  Repository: <git://github.com/kpdecker/jsdiff.git>
1181
1319
 
@@ -1215,9 +1353,15 @@ Repository: <git://github.com/kpdecker/jsdiff.git>
1215
1353
 
1216
1354
  ### editorconfig@v0.15.3
1217
1355
 
1356
+ > EditorConfig File Locator and Interpreter for Node.js
1357
+
1218
1358
  License: MIT
1219
- By: EditorConfig Team
1220
1359
  Repository: <git://github.com/editorconfig/editorconfig-core-js.git>
1360
+ Author: EditorConfig Team
1361
+ Contributors:
1362
+ - Hong Xu (topbug.net)
1363
+ - Jed Mao (https://github.com/jedmao/)
1364
+ - Trey Hunner (http://treyhunner.com)
1221
1365
 
1222
1366
  > Copyright © 2012 EditorConfig Team
1223
1367
  >
@@ -1241,19 +1385,25 @@ Repository: <git://github.com/editorconfig/editorconfig-core-js.git>
1241
1385
 
1242
1386
  ----------------------------------------
1243
1387
 
1244
- ### editorconfig-to-prettier@v0.2.0
1388
+ ### editorconfig-to-prettier@v1.0.0
1389
+
1390
+ > Converts an `editorconfig`-parsed object to a `prettier` configuration
1245
1391
 
1246
1392
  License: ISC
1247
- By: Joseph Frazier
1393
+ Homepage: <https://github.com/josephfrazier/editorconfig-to-prettier#readme>
1248
1394
  Repository: <git+https://github.com/josephfrazier/editorconfig-to-prettier.git>
1395
+ Author: Joseph Frazier <1212jtraceur@gmail.com>
1249
1396
 
1250
1397
  ----------------------------------------
1251
1398
 
1252
1399
  ### emoji-regex@v9.2.2
1253
1400
 
1401
+ > A regular expression to match all Emoji-only symbols as per the Unicode Standard.
1402
+
1254
1403
  License: MIT
1255
- By: Mathias Bynens
1404
+ Homepage: <https://mths.be/emoji-regex>
1256
1405
  Repository: <https://github.com/mathiasbynens/emoji-regex.git>
1406
+ Author: Mathias Bynens (https://mathiasbynens.be/)
1257
1407
 
1258
1408
  > Copyright Mathias Bynens <https://mathiasbynens.be/>
1259
1409
  >
@@ -1280,6 +1430,8 @@ Repository: <https://github.com/mathiasbynens/emoji-regex.git>
1280
1430
 
1281
1431
  ### error-ex@v1.3.2
1282
1432
 
1433
+ > Easy error subclassing and stack customization
1434
+
1283
1435
  License: MIT
1284
1436
 
1285
1437
  > The MIT License (MIT)
@@ -1308,8 +1460,10 @@ License: MIT
1308
1460
 
1309
1461
  ### escape-string-regexp@v1.0.5
1310
1462
 
1463
+ > Escape RegExp special characters
1464
+
1311
1465
  License: MIT
1312
- By: Sindre Sorhus
1466
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
1313
1467
 
1314
1468
  > The MIT License (MIT)
1315
1469
  >
@@ -1337,8 +1491,10 @@ By: Sindre Sorhus
1337
1491
 
1338
1492
  ### escape-string-regexp@v5.0.0
1339
1493
 
1494
+ > Escape RegExp special characters
1495
+
1340
1496
  License: MIT
1341
- By: Sindre Sorhus
1497
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1342
1498
 
1343
1499
  > MIT License
1344
1500
  >
@@ -1352,219 +1508,13 @@ By: Sindre Sorhus
1352
1508
 
1353
1509
  ----------------------------------------
1354
1510
 
1355
- ### eslint-visitor-keys@v3.3.0
1511
+ ### espree@v9.5.1
1356
1512
 
1357
- License: Apache-2.0
1358
- By: Toru Nagashima
1359
-
1360
- > Apache License
1361
- > Version 2.0, January 2004
1362
- > http://www.apache.org/licenses/
1363
- >
1364
- > TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1365
- >
1366
- > 1. Definitions.
1367
- >
1368
- > "License" shall mean the terms and conditions for use, reproduction,
1369
- > and distribution as defined by Sections 1 through 9 of this document.
1370
- >
1371
- > "Licensor" shall mean the copyright owner or entity authorized by
1372
- > the copyright owner that is granting the License.
1373
- >
1374
- > "Legal Entity" shall mean the union of the acting entity and all
1375
- > other entities that control, are controlled by, or are under common
1376
- > control with that entity. For the purposes of this definition,
1377
- > "control" means (i) the power, direct or indirect, to cause the
1378
- > direction or management of such entity, whether by contract or
1379
- > otherwise, or (ii) ownership of fifty percent (50%) or more of the
1380
- > outstanding shares, or (iii) beneficial ownership of such entity.
1381
- >
1382
- > "You" (or "Your") shall mean an individual or Legal Entity
1383
- > exercising permissions granted by this License.
1384
- >
1385
- > "Source" form shall mean the preferred form for making modifications,
1386
- > including but not limited to software source code, documentation
1387
- > source, and configuration files.
1388
- >
1389
- > "Object" form shall mean any form resulting from mechanical
1390
- > transformation or translation of a Source form, including but
1391
- > not limited to compiled object code, generated documentation,
1392
- > and conversions to other media types.
1393
- >
1394
- > "Work" shall mean the work of authorship, whether in Source or
1395
- > Object form, made available under the License, as indicated by a
1396
- > copyright notice that is included in or attached to the work
1397
- > (an example is provided in the Appendix below).
1398
- >
1399
- > "Derivative Works" shall mean any work, whether in Source or Object
1400
- > form, that is based on (or derived from) the Work and for which the
1401
- > editorial revisions, annotations, elaborations, or other modifications
1402
- > represent, as a whole, an original work of authorship. For the purposes
1403
- > of this License, Derivative Works shall not include works that remain
1404
- > separable from, or merely link (or bind by name) to the interfaces of,
1405
- > the Work and Derivative Works thereof.
1406
- >
1407
- > "Contribution" shall mean any work of authorship, including
1408
- > the original version of the Work and any modifications or additions
1409
- > to that Work or Derivative Works thereof, that is intentionally
1410
- > submitted to Licensor for inclusion in the Work by the copyright owner
1411
- > or by an individual or Legal Entity authorized to submit on behalf of
1412
- > the copyright owner. For the purposes of this definition, "submitted"
1413
- > means any form of electronic, verbal, or written communication sent
1414
- > to the Licensor or its representatives, including but not limited to
1415
- > communication on electronic mailing lists, source code control systems,
1416
- > and issue tracking systems that are managed by, or on behalf of, the
1417
- > Licensor for the purpose of discussing and improving the Work, but
1418
- > excluding communication that is conspicuously marked or otherwise
1419
- > designated in writing by the copyright owner as "Not a Contribution."
1420
- >
1421
- > "Contributor" shall mean Licensor and any individual or Legal Entity
1422
- > on behalf of whom a Contribution has been received by Licensor and
1423
- > subsequently incorporated within the Work.
1424
- >
1425
- > 2. Grant of Copyright License. Subject to the terms and conditions of
1426
- > this License, each Contributor hereby grants to You a perpetual,
1427
- > worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1428
- > copyright license to reproduce, prepare Derivative Works of,
1429
- > publicly display, publicly perform, sublicense, and distribute the
1430
- > Work and such Derivative Works in Source or Object form.
1431
- >
1432
- > 3. Grant of Patent License. Subject to the terms and conditions of
1433
- > this License, each Contributor hereby grants to You a perpetual,
1434
- > worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1435
- > (except as stated in this section) patent license to make, have made,
1436
- > use, offer to sell, sell, import, and otherwise transfer the Work,
1437
- > where such license applies only to those patent claims licensable
1438
- > by such Contributor that are necessarily infringed by their
1439
- > Contribution(s) alone or by combination of their Contribution(s)
1440
- > with the Work to which such Contribution(s) was submitted. If You
1441
- > institute patent litigation against any entity (including a
1442
- > cross-claim or counterclaim in a lawsuit) alleging that the Work
1443
- > or a Contribution incorporated within the Work constitutes direct
1444
- > or contributory patent infringement, then any patent licenses
1445
- > granted to You under this License for that Work shall terminate
1446
- > as of the date such litigation is filed.
1447
- >
1448
- > 4. Redistribution. You may reproduce and distribute copies of the
1449
- > Work or Derivative Works thereof in any medium, with or without
1450
- > modifications, and in Source or Object form, provided that You
1451
- > meet the following conditions:
1452
- >
1453
- > (a) You must give any other recipients of the Work or
1454
- > Derivative Works a copy of this License; and
1455
- >
1456
- > (b) You must cause any modified files to carry prominent notices
1457
- > stating that You changed the files; and
1458
- >
1459
- > (c) You must retain, in the Source form of any Derivative Works
1460
- > that You distribute, all copyright, patent, trademark, and
1461
- > attribution notices from the Source form of the Work,
1462
- > excluding those notices that do not pertain to any part of
1463
- > the Derivative Works; and
1464
- >
1465
- > (d) If the Work includes a "NOTICE" text file as part of its
1466
- > distribution, then any Derivative Works that You distribute must
1467
- > include a readable copy of the attribution notices contained
1468
- > within such NOTICE file, excluding those notices that do not
1469
- > pertain to any part of the Derivative Works, in at least one
1470
- > of the following places: within a NOTICE text file distributed
1471
- > as part of the Derivative Works; within the Source form or
1472
- > documentation, if provided along with the Derivative Works; or,
1473
- > within a display generated by the Derivative Works, if and
1474
- > wherever such third-party notices normally appear. The contents
1475
- > of the NOTICE file are for informational purposes only and
1476
- > do not modify the License. You may add Your own attribution
1477
- > notices within Derivative Works that You distribute, alongside
1478
- > or as an addendum to the NOTICE text from the Work, provided
1479
- > that such additional attribution notices cannot be construed
1480
- > as modifying the License.
1481
- >
1482
- > You may add Your own copyright statement to Your modifications and
1483
- > may provide additional or different license terms and conditions
1484
- > for use, reproduction, or distribution of Your modifications, or
1485
- > for any such Derivative Works as a whole, provided Your use,
1486
- > reproduction, and distribution of the Work otherwise complies with
1487
- > the conditions stated in this License.
1488
- >
1489
- > 5. Submission of Contributions. Unless You explicitly state otherwise,
1490
- > any Contribution intentionally submitted for inclusion in the Work
1491
- > by You to the Licensor shall be under the terms and conditions of
1492
- > this License, without any additional terms or conditions.
1493
- > Notwithstanding the above, nothing herein shall supersede or modify
1494
- > the terms of any separate license agreement you may have executed
1495
- > with Licensor regarding such Contributions.
1496
- >
1497
- > 6. Trademarks. This License does not grant permission to use the trade
1498
- > names, trademarks, service marks, or product names of the Licensor,
1499
- > except as required for reasonable and customary use in describing the
1500
- > origin of the Work and reproducing the content of the NOTICE file.
1501
- >
1502
- > 7. Disclaimer of Warranty. Unless required by applicable law or
1503
- > agreed to in writing, Licensor provides the Work (and each
1504
- > Contributor provides its Contributions) on an "AS IS" BASIS,
1505
- > WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1506
- > implied, including, without limitation, any warranties or conditions
1507
- > of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1508
- > PARTICULAR PURPOSE. You are solely responsible for determining the
1509
- > appropriateness of using or redistributing the Work and assume any
1510
- > risks associated with Your exercise of permissions under this License.
1511
- >
1512
- > 8. Limitation of Liability. In no event and under no legal theory,
1513
- > whether in tort (including negligence), contract, or otherwise,
1514
- > unless required by applicable law (such as deliberate and grossly
1515
- > negligent acts) or agreed to in writing, shall any Contributor be
1516
- > liable to You for damages, including any direct, indirect, special,
1517
- > incidental, or consequential damages of any character arising as a
1518
- > result of this License or out of the use or inability to use the
1519
- > Work (including but not limited to damages for loss of goodwill,
1520
- > work stoppage, computer failure or malfunction, or any and all
1521
- > other commercial damages or losses), even if such Contributor
1522
- > has been advised of the possibility of such damages.
1523
- >
1524
- > 9. Accepting Warranty or Additional Liability. While redistributing
1525
- > the Work or Derivative Works thereof, You may choose to offer,
1526
- > and charge a fee for, acceptance of support, warranty, indemnity,
1527
- > or other liability obligations and/or rights consistent with this
1528
- > License. However, in accepting such obligations, You may act only
1529
- > on Your own behalf and on Your sole responsibility, not on behalf
1530
- > of any other Contributor, and only if You agree to indemnify,
1531
- > defend, and hold each Contributor harmless for any liability
1532
- > incurred by, or claims asserted against, such Contributor by reason
1533
- > of your accepting any such warranty or additional liability.
1534
- >
1535
- > END OF TERMS AND CONDITIONS
1536
- >
1537
- > APPENDIX: How to apply the Apache License to your work.
1538
- >
1539
- > To apply the Apache License to your work, attach the following
1540
- > boilerplate notice, with the fields enclosed by brackets "{}"
1541
- > replaced with your own identifying information. (Don't include
1542
- > the brackets!) The text should be enclosed in the appropriate
1543
- > comment syntax for the file format. We also recommend that a
1544
- > file or class name and description of purpose be included on the
1545
- > same "printed page" as the copyright notice for easier
1546
- > identification within third-party archives.
1547
- >
1548
- > Copyright contributors
1549
- >
1550
- > Licensed under the Apache License, Version 2.0 (the "License");
1551
- > you may not use this file except in compliance with the License.
1552
- > You may obtain a copy of the License at
1553
- >
1554
- > http://www.apache.org/licenses/LICENSE-2.0
1555
- >
1556
- > Unless required by applicable law or agreed to in writing, software
1557
- > distributed under the License is distributed on an "AS IS" BASIS,
1558
- > WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1559
- > See the License for the specific language governing permissions and
1560
- > limitations under the License.
1561
-
1562
- ----------------------------------------
1563
-
1564
- ### espree@v9.4.0
1513
+ > An Esprima-compatible JavaScript parser built on Acorn
1565
1514
 
1566
1515
  License: BSD-2-Clause
1567
- By: Nicholas C. Zakas
1516
+ Homepage: <https://github.com/eslint/espree>
1517
+ Author: Nicholas C. Zakas <nicholas+npm@nczconsulting.com>
1568
1518
 
1569
1519
  > BSD 2-Clause License
1570
1520
  >
@@ -1594,38 +1544,15 @@ By: Nicholas C. Zakas
1594
1544
 
1595
1545
  ----------------------------------------
1596
1546
 
1597
- ### esutils@v2.0.3
1598
-
1599
- License: BSD-2-Clause
1600
- Repository: <http://github.com/estools/esutils.git>
1601
-
1602
- > Redistribution and use in source and binary forms, with or without
1603
- > modification, are permitted provided that the following conditions are met:
1604
- >
1605
- > * Redistributions of source code must retain the above copyright
1606
- > notice, this list of conditions and the following disclaimer.
1607
- > * Redistributions in binary form must reproduce the above copyright
1608
- > notice, this list of conditions and the following disclaimer in the
1609
- > documentation and/or other materials provided with the distribution.
1610
- >
1611
- > THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1612
- > AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1613
- > IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1614
- > ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
1615
- > DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1616
- > (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1617
- > LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
1618
- > ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1619
- > (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
1620
- > THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1621
-
1622
- ----------------------------------------
1623
-
1624
1547
  ### extend@v3.0.2
1625
1548
 
1549
+ > Port of jQuery.extend for node.js and the browser
1550
+
1626
1551
  License: MIT
1627
- By: Stefan Thomas
1628
1552
  Repository: <https://github.com/justmoon/node-extend.git>
1553
+ Author: Stefan Thomas <justmoon@members.fsf.org> (http://www.justmoon.net)
1554
+ Contributors:
1555
+ - Jordan Harband (https://github.com/ljharb)
1629
1556
 
1630
1557
  > The MIT License (MIT)
1631
1558
  >
@@ -1654,8 +1581,10 @@ Repository: <https://github.com/justmoon/node-extend.git>
1654
1581
 
1655
1582
  ### fast-glob@v3.2.12
1656
1583
 
1584
+ > It's a very fast and efficient glob library for Node.js
1585
+
1657
1586
  License: MIT
1658
- By: Denis Malinochkin
1587
+ Author: Denis Malinochkin (https://mrmlnc.com)
1659
1588
 
1660
1589
  > The MIT License (MIT)
1661
1590
  >
@@ -1683,9 +1612,12 @@ By: Denis Malinochkin
1683
1612
 
1684
1613
  ### fast-json-stable-stringify@v2.1.0
1685
1614
 
1615
+ > deterministic `JSON.stringify()` - a faster version of substack's json-stable-strigify without jsonify
1616
+
1686
1617
  License: MIT
1687
- By: James Halliday
1618
+ Homepage: <https://github.com/epoberezkin/fast-json-stable-stringify>
1688
1619
  Repository: <git://github.com/epoberezkin/fast-json-stable-stringify.git>
1620
+ Author: James Halliday <mail@substack.net> (http://substack.net)
1689
1621
 
1690
1622
  > This software is released under the MIT license:
1691
1623
  >
@@ -1713,9 +1645,12 @@ Repository: <git://github.com/epoberezkin/fast-json-stable-stringify.git>
1713
1645
 
1714
1646
  ### fastq@v1.13.0
1715
1647
 
1648
+ > Fast, in memory work queue
1649
+
1716
1650
  License: ISC
1717
- By: Matteo Collina
1651
+ Homepage: <https://github.com/mcollina/fastq#readme>
1718
1652
  Repository: <git+https://github.com/mcollina/fastq.git>
1653
+ Author: Matteo Collina <hello@matteocollina.com>
1719
1654
 
1720
1655
  > Copyright (c) 2015-2020, Matteo Collina <matteo.collina@gmail.com>
1721
1656
  >
@@ -1735,8 +1670,10 @@ Repository: <git+https://github.com/mcollina/fastq.git>
1735
1670
 
1736
1671
  ### file-entry-cache@v6.0.1
1737
1672
 
1673
+ > Super simple cache for file metadata, useful for process that work o a given series of files and that only need to repeat the job on the changed ones since the previous run of the process
1674
+
1738
1675
  License: MIT
1739
- By: Roy Riojas
1676
+ Author: Roy Riojas (http://royriojas.com)
1740
1677
 
1741
1678
  > The MIT License (MIT)
1742
1679
  >
@@ -1764,8 +1701,17 @@ By: Roy Riojas
1764
1701
 
1765
1702
  ### fill-range@v7.0.1
1766
1703
 
1704
+ > Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`
1705
+
1767
1706
  License: MIT
1768
- By: Jon Schlinkert
1707
+ Homepage: <https://github.com/jonschlinkert/fill-range>
1708
+ Author: Jon Schlinkert (https://github.com/jonschlinkert)
1709
+ Contributors:
1710
+ - Edo Rivai (edo.rivai.nl)
1711
+ - Jon Schlinkert (http://twitter.com/jonschlinkert)
1712
+ - Paul Miller (paulmillr.com)
1713
+ - Rouven Weßling (www.rouvenwessling.de)
1714
+ - null (https://github.com/wtgtybhertgeghgtwtg)
1769
1715
 
1770
1716
  > The MIT License (MIT)
1771
1717
  >
@@ -1791,13 +1737,17 @@ By: Jon Schlinkert
1791
1737
 
1792
1738
  ----------------------------------------
1793
1739
 
1794
- ### find-cache-dir@v3.3.2
1740
+ ### find-cache-dir@v4.0.0
1741
+
1742
+ > Finds the common standard cache directory
1795
1743
 
1796
1744
  License: MIT
1745
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1797
1746
 
1798
1747
  > MIT License
1799
1748
  >
1800
1749
  > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1750
+ > Copyright (c) James Talmage <james@talmage.io> (https://github.com/jamestalmage)
1801
1751
  >
1802
1752
  > 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:
1803
1753
  >
@@ -1809,9 +1759,12 @@ License: MIT
1809
1759
 
1810
1760
  ### find-parent-dir@v0.3.1
1811
1761
 
1762
+ > Finds the first parent directory that contains a given file or directory.
1763
+
1812
1764
  License: MIT
1813
- By: Thorsten Lorenz
1765
+ Homepage: <https://github.com/thlorenz/find-parent-dir>
1814
1766
  Repository: <git://github.com/thlorenz/find-parent-dir.git>
1767
+ Author: Thorsten Lorenz <thlorenz@gmx.de> (http://thlorenz.com)
1815
1768
 
1816
1769
  > Copyright 2013 Thorsten Lorenz.
1817
1770
  > All rights reserved.
@@ -1839,14 +1792,16 @@ Repository: <git://github.com/thlorenz/find-parent-dir.git>
1839
1792
 
1840
1793
  ----------------------------------------
1841
1794
 
1842
- ### find-up@v4.1.0
1795
+ ### find-up@v6.3.0
1796
+
1797
+ > Find a file or directory by walking up parent directories
1843
1798
 
1844
1799
  License: MIT
1845
- By: Sindre Sorhus
1800
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1846
1801
 
1847
1802
  > MIT License
1848
1803
  >
1849
- > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
1804
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1850
1805
  >
1851
1806
  > 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:
1852
1807
  >
@@ -1858,8 +1813,10 @@ By: Sindre Sorhus
1858
1813
 
1859
1814
  ### flat-cache@v3.0.4
1860
1815
 
1816
+ > A stupidly simple key/value storage using files to persist some data
1817
+
1861
1818
  License: MIT
1862
- By: Roy Riojas
1819
+ Author: Roy Riojas (http://royriojas.com)
1863
1820
 
1864
1821
  > The MIT License (MIT)
1865
1822
  >
@@ -1887,9 +1844,12 @@ By: Roy Riojas
1887
1844
 
1888
1845
  ### flatted@v3.2.7
1889
1846
 
1847
+ > A super light and fast circular JSON parser.
1848
+
1890
1849
  License: ISC
1891
- By: Andrea Giammarchi
1850
+ Homepage: <https://github.com/WebReflection/flatted#readme>
1892
1851
  Repository: <git+https://github.com/WebReflection/flatted.git>
1852
+ Author: Andrea Giammarchi
1893
1853
 
1894
1854
  > ISC License
1895
1855
  >
@@ -1911,9 +1871,14 @@ Repository: <git+https://github.com/WebReflection/flatted.git>
1911
1871
 
1912
1872
  ### flatten@v1.0.3
1913
1873
 
1874
+ > Flatten arbitrarily nested arrays into a non-nested list of non-array items. Maintained for legacy compatibility.
1875
+
1914
1876
  License: MIT
1915
- By: Joshua Holbrook
1877
+ Homepage: <https://github.com/mk-pmb/flatten-js/#readme>
1916
1878
  Repository: <git+https://github.com/mk-pmb/flatten-js.git>
1879
+ Author: Joshua Holbrook <josh.holbrook@gmail.com> (http://jesusabdullah.net)
1880
+ Contributors:
1881
+ - M.K. (https://github.com/mk-pmb)
1917
1882
 
1918
1883
  > The MIT License (MIT)
1919
1884
  >
@@ -1939,19 +1904,24 @@ Repository: <git+https://github.com/mk-pmb/flatten-js.git>
1939
1904
 
1940
1905
  ----------------------------------------
1941
1906
 
1942
- ### flow-parser@v0.188.1
1907
+ ### flow-parser@v0.204.0
1908
+
1909
+ > JavaScript parser written in OCaml. Produces ESTree AST
1943
1910
 
1944
1911
  License: MIT
1945
- By: Flow Team
1912
+ Homepage: <https://flow.org>
1946
1913
  Repository: <https://github.com/facebook/flow.git>
1914
+ Author: Flow Team <flow@fb.com>
1947
1915
 
1948
1916
  ----------------------------------------
1949
1917
 
1950
1918
  ### fs.realpath@v1.0.0
1951
1919
 
1920
+ > Use node's fs.realpath, but fall back to the JS implementation if the native one fails
1921
+
1952
1922
  License: ISC
1953
- By: Isaac Z. Schlueter
1954
1923
  Repository: <git+https://github.com/isaacs/fs.realpath.git>
1924
+ Author: Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)
1955
1925
 
1956
1926
  > The ISC License
1957
1927
  >
@@ -2001,8 +1971,10 @@ Repository: <git+https://github.com/isaacs/fs.realpath.git>
2001
1971
 
2002
1972
  ### get-stdin@v9.0.0
2003
1973
 
1974
+ > Get stdin as a string or buffer
1975
+
2004
1976
  License: MIT
2005
- By: Sindre Sorhus
1977
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2006
1978
 
2007
1979
  > MIT License
2008
1980
  >
@@ -2018,9 +1990,11 @@ By: Sindre Sorhus
2018
1990
 
2019
1991
  ### glob@v7.2.3
2020
1992
 
1993
+ > a little globber
1994
+
2021
1995
  License: ISC
2022
- By: Isaac Z. Schlueter
2023
1996
  Repository: <git://github.com/isaacs/node-glob.git>
1997
+ Author: Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)
2024
1998
 
2025
1999
  > The ISC License
2026
2000
  >
@@ -2048,8 +2022,13 @@ Repository: <git://github.com/isaacs/node-glob.git>
2048
2022
 
2049
2023
  ### glob-parent@v5.1.2
2050
2024
 
2025
+ > Extract the non-magic parent path from a glob string.
2026
+
2051
2027
  License: ISC
2052
- By: Gulp Team
2028
+ Author: Gulp Team <team@gulpjs.com> (https://gulpjs.com/)
2029
+ Contributors:
2030
+ - Elan Shanker (https://github.com/es128)
2031
+ - Blaine Bublitz <blaine.bublitz@gmail.com>
2053
2032
 
2054
2033
  > The ISC License
2055
2034
  >
@@ -2071,7 +2050,10 @@ By: Gulp Team
2071
2050
 
2072
2051
  ### graphql@v16.6.0
2073
2052
 
2053
+ > A Query Language and Runtime which can target any service.
2054
+
2074
2055
  License: MIT
2056
+ Homepage: <https://github.com/graphql/graphql-js>
2075
2057
  Repository: <https://github.com/graphql/graphql-js.git>
2076
2058
 
2077
2059
  > MIT License
@@ -2100,8 +2082,10 @@ Repository: <https://github.com/graphql/graphql-js.git>
2100
2082
 
2101
2083
  ### has-flag@v3.0.0
2102
2084
 
2085
+ > Check if argv has a specific flag
2086
+
2103
2087
  License: MIT
2104
- By: Sindre Sorhus
2088
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2105
2089
 
2106
2090
  > MIT License
2107
2091
  >
@@ -2115,101 +2099,13 @@ By: Sindre Sorhus
2115
2099
 
2116
2100
  ----------------------------------------
2117
2101
 
2118
- ### html-element-attributes@v3.1.0
2119
-
2120
- License: MIT
2121
- By: Titus Wormer
2122
-
2123
- > (The MIT License)
2124
- >
2125
- > Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
2126
- >
2127
- > Permission is hereby granted, free of charge, to any person obtaining
2128
- > a copy of this software and associated documentation files (the
2129
- > 'Software'), to deal in the Software without restriction, including
2130
- > without limitation the rights to use, copy, modify, merge, publish,
2131
- > distribute, sublicense, and/or sell copies of the Software, and to
2132
- > permit persons to whom the Software is furnished to do so, subject to
2133
- > the following conditions:
2134
- >
2135
- > The above copyright notice and this permission notice shall be
2136
- > included in all copies or substantial portions of the Software.
2137
- >
2138
- > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2139
- > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2140
- > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2141
- > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2142
- > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2143
- > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2144
- > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2145
-
2146
- ----------------------------------------
2102
+ ### ignore@v5.2.4
2147
2103
 
2148
- ### html-tag-names@v2.0.1
2104
+ > Ignore is a manager and filter for .gitignore rules, the one used by eslint, gitbook and many others.
2149
2105
 
2150
2106
  License: MIT
2151
- By: Titus Wormer
2152
-
2153
- > (The MIT License)
2154
- >
2155
- > Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
2156
- >
2157
- > Permission is hereby granted, free of charge, to any person obtaining
2158
- > a copy of this software and associated documentation files (the
2159
- > 'Software'), to deal in the Software without restriction, including
2160
- > without limitation the rights to use, copy, modify, merge, publish,
2161
- > distribute, sublicense, and/or sell copies of the Software, and to
2162
- > permit persons to whom the Software is furnished to do so, subject to
2163
- > the following conditions:
2164
- >
2165
- > The above copyright notice and this permission notice shall be
2166
- > included in all copies or substantial portions of the Software.
2167
- >
2168
- > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2169
- > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2170
- > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2171
- > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2172
- > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2173
- > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2174
- > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2175
-
2176
- ----------------------------------------
2177
-
2178
- ### html-void-elements@v2.0.1
2179
-
2180
- License: MIT
2181
- By: Titus Wormer
2182
-
2183
- > (The MIT License)
2184
- >
2185
- > Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
2186
- >
2187
- > Permission is hereby granted, free of charge, to any person obtaining
2188
- > a copy of this software and associated documentation files (the
2189
- > 'Software'), to deal in the Software without restriction, including
2190
- > without limitation the rights to use, copy, modify, merge, publish,
2191
- > distribute, sublicense, and/or sell copies of the Software, and to
2192
- > permit persons to whom the Software is furnished to do so, subject to
2193
- > the following conditions:
2194
- >
2195
- > The above copyright notice and this permission notice shall be
2196
- > included in all copies or substantial portions of the Software.
2197
- >
2198
- > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2199
- > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2200
- > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2201
- > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2202
- > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2203
- > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2204
- > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2205
-
2206
- ----------------------------------------
2207
-
2208
- ### ignore@v5.2.0
2209
-
2210
- License: MIT
2211
- By: kael
2212
2107
  Repository: <git@github.com:kaelzhang/node-ignore.git>
2108
+ Author: kael
2213
2109
 
2214
2110
  > Copyright (c) 2013 Kael Zhang <i@kael.me>, contributors
2215
2111
  > http://kael.me/
@@ -2237,8 +2133,10 @@ Repository: <git@github.com:kaelzhang/node-ignore.git>
2237
2133
 
2238
2134
  ### import-fresh@v3.3.0
2239
2135
 
2136
+ > Import a module while bypassing the cache
2137
+
2240
2138
  License: MIT
2241
- By: Sindre Sorhus
2139
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2242
2140
 
2243
2141
  > MIT License
2244
2142
  >
@@ -2252,10 +2150,14 @@ By: Sindre Sorhus
2252
2150
 
2253
2151
  ----------------------------------------
2254
2152
 
2255
- ### import-meta-resolve@v2.1.0
2153
+ ### import-meta-resolve@v2.2.2
2154
+
2155
+ > Resolve things like Node.js — ponyfill for `import.meta.resolve`
2256
2156
 
2257
2157
  License: MIT
2258
- By: Titus Wormer
2158
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
2159
+ Contributors:
2160
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
2259
2161
 
2260
2162
  > (The MIT License)
2261
2163
  >
@@ -2336,9 +2238,12 @@ By: Titus Wormer
2336
2238
 
2337
2239
  ### indexes-of@v1.0.1
2338
2240
 
2241
+ > line String/Array#indexOf but return all the indexes in an array
2242
+
2339
2243
  License: MIT
2340
- By: Dominic Tarr
2244
+ Homepage: <https://github.com/dominictarr/indexes-of>
2341
2245
  Repository: <git://github.com/dominictarr/indexes-of.git>
2246
+ Author: Dominic Tarr <dominic.tarr@gmail.com> (dominictarr.com)
2342
2247
 
2343
2248
  > Copyright (c) 2013 Dominic Tarr
2344
2249
  >
@@ -2367,9 +2272,12 @@ Repository: <git://github.com/dominictarr/indexes-of.git>
2367
2272
 
2368
2273
  ### inflight@v1.0.6
2369
2274
 
2275
+ > Add callbacks to requests in flight to avoid async duplication
2276
+
2370
2277
  License: ISC
2371
- By: Isaac Z. Schlueter
2278
+ Homepage: <https://github.com/isaacs/inflight>
2372
2279
  Repository: <https://github.com/npm/inflight.git>
2280
+ Author: Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)
2373
2281
 
2374
2282
  > The ISC License
2375
2283
  >
@@ -2391,6 +2299,8 @@ Repository: <https://github.com/npm/inflight.git>
2391
2299
 
2392
2300
  ### inherits@v2.0.4
2393
2301
 
2302
+ > Browser-friendly inheritance fully compatible with standard node.js inherits()
2303
+
2394
2304
  License: ISC
2395
2305
 
2396
2306
  > The ISC License
@@ -2413,8 +2323,12 @@ License: ISC
2413
2323
 
2414
2324
  ### is-alphabetical@v1.0.4
2415
2325
 
2326
+ > Check if a character is alphabetical
2327
+
2416
2328
  License: MIT
2417
- By: Titus Wormer
2329
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
2330
+ Contributors:
2331
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
2418
2332
 
2419
2333
  > (The MIT License)
2420
2334
  >
@@ -2443,8 +2357,12 @@ By: Titus Wormer
2443
2357
 
2444
2358
  ### is-alphanumerical@v1.0.4
2445
2359
 
2360
+ > Check if a character is alphanumerical
2361
+
2446
2362
  License: MIT
2447
- By: Titus Wormer
2363
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
2364
+ Contributors:
2365
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
2448
2366
 
2449
2367
  > (The MIT License)
2450
2368
  >
@@ -2473,9 +2391,11 @@ By: Titus Wormer
2473
2391
 
2474
2392
  ### is-arrayish@v0.2.1
2475
2393
 
2394
+ > Determines if an object can be used as an array
2395
+
2476
2396
  License: MIT
2477
- By: Qix
2478
2397
  Repository: <https://github.com/qix-/node-is-arrayish.git>
2398
+ Author: Qix (http://github.com/qix-)
2479
2399
 
2480
2400
  > The MIT License (MIT)
2481
2401
  >
@@ -2503,9 +2423,11 @@ Repository: <https://github.com/qix-/node-is-arrayish.git>
2503
2423
 
2504
2424
  ### is-buffer@v2.0.5
2505
2425
 
2426
+ > Determine if an object is a Buffer
2427
+
2506
2428
  License: MIT
2507
- By: Feross Aboukhadijeh
2508
2429
  Repository: <git://github.com/feross/is-buffer.git>
2430
+ Author: Feross Aboukhadijeh <feross@feross.org> (https://feross.org)
2509
2431
 
2510
2432
  > The MIT License (MIT)
2511
2433
  >
@@ -2533,8 +2455,12 @@ Repository: <git://github.com/feross/is-buffer.git>
2533
2455
 
2534
2456
  ### is-decimal@v1.0.4
2535
2457
 
2458
+ > Check if a character is decimal
2459
+
2536
2460
  License: MIT
2537
- By: Titus Wormer
2461
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
2462
+ Contributors:
2463
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
2538
2464
 
2539
2465
  > (The MIT License)
2540
2466
  >
@@ -2563,8 +2489,11 @@ By: Titus Wormer
2563
2489
 
2564
2490
  ### is-extglob@v2.1.1
2565
2491
 
2492
+ > Returns true if a string has an extglob.
2493
+
2566
2494
  License: MIT
2567
- By: Jon Schlinkert
2495
+ Homepage: <https://github.com/jonschlinkert/is-extglob>
2496
+ Author: Jon Schlinkert (https://github.com/jonschlinkert)
2568
2497
 
2569
2498
  > The MIT License (MIT)
2570
2499
  >
@@ -2592,8 +2521,10 @@ By: Jon Schlinkert
2592
2521
 
2593
2522
  ### is-fullwidth-code-point@v4.0.0
2594
2523
 
2524
+ > Check if the character represented by a given Unicode code point is fullwidth
2525
+
2595
2526
  License: MIT
2596
- By: Sindre Sorhus
2527
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2597
2528
 
2598
2529
  > MIT License
2599
2530
  >
@@ -2609,8 +2540,15 @@ By: Sindre Sorhus
2609
2540
 
2610
2541
  ### is-glob@v4.0.3
2611
2542
 
2543
+ > Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.
2544
+
2612
2545
  License: MIT
2613
- By: Jon Schlinkert
2546
+ Homepage: <https://github.com/micromatch/is-glob>
2547
+ Author: Jon Schlinkert (https://github.com/jonschlinkert)
2548
+ Contributors:
2549
+ - Brian Woodward (https://twitter.com/doowb)
2550
+ - Daniel Perez (https://tuvistavie.com)
2551
+ - Jon Schlinkert (http://twitter.com/jonschlinkert)
2614
2552
 
2615
2553
  > The MIT License (MIT)
2616
2554
  >
@@ -2638,8 +2576,12 @@ By: Jon Schlinkert
2638
2576
 
2639
2577
  ### is-hexadecimal@v1.0.4
2640
2578
 
2579
+ > Check if a character is hexadecimal
2580
+
2641
2581
  License: MIT
2642
- By: Titus Wormer
2582
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
2583
+ Contributors:
2584
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
2643
2585
 
2644
2586
  > (The MIT License)
2645
2587
  >
@@ -2668,8 +2610,15 @@ By: Titus Wormer
2668
2610
 
2669
2611
  ### is-number@v7.0.0
2670
2612
 
2613
+ > Returns true if a number or string value is a finite number. Useful for regex matches, parsing, user input, etc.
2614
+
2671
2615
  License: MIT
2672
- By: Jon Schlinkert
2616
+ Homepage: <https://github.com/jonschlinkert/is-number>
2617
+ Author: Jon Schlinkert (https://github.com/jonschlinkert)
2618
+ Contributors:
2619
+ - Jon Schlinkert (http://twitter.com/jonschlinkert)
2620
+ - Olsten Larck (https://i.am.charlike.online)
2621
+ - Rouven Weßling (www.rouvenwessling.de)
2673
2622
 
2674
2623
  > The MIT License (MIT)
2675
2624
  >
@@ -2697,8 +2646,10 @@ By: Jon Schlinkert
2697
2646
 
2698
2647
  ### is-plain-obj@v2.1.0
2699
2648
 
2649
+ > Check if a value is a plain object
2650
+
2700
2651
  License: MIT
2701
- By: Sindre Sorhus
2652
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2702
2653
 
2703
2654
  > MIT License
2704
2655
  >
@@ -2714,8 +2665,12 @@ By: Sindre Sorhus
2714
2665
 
2715
2666
  ### is-whitespace-character@v1.0.4
2716
2667
 
2668
+ > Check if a character is a whitespace character
2669
+
2717
2670
  License: MIT
2718
- By: Titus Wormer
2671
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
2672
+ Contributors:
2673
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
2719
2674
 
2720
2675
  > (The MIT License)
2721
2676
  >
@@ -2744,8 +2699,12 @@ By: Titus Wormer
2744
2699
 
2745
2700
  ### is-word-character@v1.0.4
2746
2701
 
2702
+ > Check if a character is a word character
2703
+
2747
2704
  License: MIT
2748
- By: Titus Wormer
2705
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
2706
+ Contributors:
2707
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
2749
2708
 
2750
2709
  > (The MIT License)
2751
2710
  >
@@ -2772,14 +2731,45 @@ By: Titus Wormer
2772
2731
 
2773
2732
  ----------------------------------------
2774
2733
 
2775
- ### jest-docblock@v29.0.0
2734
+ ### jest-docblock@v29.4.3
2735
+
2736
+ License: MIT
2737
+ Repository: <https://github.com/facebook/jest.git>
2738
+
2739
+ > MIT License
2740
+ >
2741
+ > Copyright (c) Meta Platforms, Inc. and affiliates.
2742
+ >
2743
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2744
+ > of this software and associated documentation files (the "Software"), to deal
2745
+ > in the Software without restriction, including without limitation the rights
2746
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2747
+ > copies of the Software, and to permit persons to whom the Software is
2748
+ > furnished to do so, subject to the following conditions:
2749
+ >
2750
+ > The above copyright notice and this permission notice shall be included in all
2751
+ > copies or substantial portions of the Software.
2752
+ >
2753
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2754
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2755
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2756
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2757
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2758
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2759
+ > SOFTWARE.
2760
+
2761
+ ----------------------------------------
2762
+
2763
+ ### js-tokens@v4.0.0
2764
+
2765
+ > A regex that tokenizes JavaScript.
2776
2766
 
2777
2767
  License: MIT
2778
- Repository: <https://github.com/facebook/jest.git>
2768
+ Author: Simon Lydell
2779
2769
 
2780
- > MIT License
2770
+ > The MIT License (MIT)
2781
2771
  >
2782
- > Copyright (c) Facebook, Inc. and its affiliates.
2772
+ > Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell
2783
2773
  >
2784
2774
  > Permission is hereby granted, free of charge, to any person obtaining a copy
2785
2775
  > of this software and associated documentation files (the "Software"), to deal
@@ -2788,27 +2778,33 @@ Repository: <https://github.com/facebook/jest.git>
2788
2778
  > copies of the Software, and to permit persons to whom the Software is
2789
2779
  > furnished to do so, subject to the following conditions:
2790
2780
  >
2791
- > The above copyright notice and this permission notice shall be included in all
2792
- > copies or substantial portions of the Software.
2781
+ > The above copyright notice and this permission notice shall be included in
2782
+ > all copies or substantial portions of the Software.
2793
2783
  >
2794
2784
  > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2795
2785
  > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2796
2786
  > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2797
2787
  > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2798
2788
  > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2799
- > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2800
- > SOFTWARE.
2789
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2790
+ > THE SOFTWARE.
2801
2791
 
2802
2792
  ----------------------------------------
2803
2793
 
2804
- ### js-tokens@v4.0.0
2794
+ ### js-yaml@v4.1.0
2795
+
2796
+ > YAML 1.2 parser and serializer
2805
2797
 
2806
2798
  License: MIT
2807
- By: Simon Lydell
2799
+ Author: Vladimir Zapparov <dervus.grim@gmail.com>
2800
+ Contributors:
2801
+ - Aleksey V Zapparov <ixti@member.fsf.org> (http://www.ixti.net/)
2802
+ - Vitaly Puzrin <vitaly@rcdesign.ru> (https://github.com/puzrin)
2803
+ - Martin Grenfell <martin.grenfell@gmail.com> (http://got-ravings.blogspot.com)
2808
2804
 
2809
- > The MIT License (MIT)
2805
+ > (The MIT License)
2810
2806
  >
2811
- > Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell
2807
+ > Copyright (C) 2011-2015 by Vitaly Puzrin
2812
2808
  >
2813
2809
  > Permission is hereby granted, free of charge, to any person obtaining a copy
2814
2810
  > of this software and associated documentation files (the "Software"), to deal
@@ -2832,8 +2828,10 @@ By: Simon Lydell
2832
2828
 
2833
2829
  ### json-parse-even-better-errors@v2.3.1
2834
2830
 
2831
+ > JSON.parse with context information on error
2832
+
2835
2833
  License: MIT
2836
- By: Kat Marchán
2834
+ Author: Kat Marchán <kzm@zkat.tech>
2837
2835
 
2838
2836
  > Copyright 2017 Kat Marchán
2839
2837
  > Copyright npm, Inc.
@@ -2863,11 +2861,18 @@ By: Kat Marchán
2863
2861
 
2864
2862
  ----------------------------------------
2865
2863
 
2866
- ### json5@v2.2.1
2864
+ ### json5@v2.2.3
2865
+
2866
+ > JSON for Humans
2867
2867
 
2868
2868
  License: MIT
2869
- By: Aseem Kishore
2869
+ Homepage: <http://json5.org/>
2870
2870
  Repository: <git+https://github.com/json5/json5.git>
2871
+ Author: Aseem Kishore <aseem.kishore@gmail.com>
2872
+ Contributors:
2873
+ - Max Nanasy <max.nanasy@gmail.com>
2874
+ - Andrew Eisenberg <andrew@eisenberg.as>
2875
+ - Jordan Tucker <jordanbtucker@gmail.com>
2871
2876
 
2872
2877
  > MIT License
2873
2878
  >
@@ -2897,8 +2902,10 @@ Repository: <git+https://github.com/json5/json5.git>
2897
2902
 
2898
2903
  ### leven@v2.1.0
2899
2904
 
2905
+ > Measure the difference between two strings using the fastest JS implementation of the Levenshtein distance algorithm
2906
+
2900
2907
  License: MIT
2901
- By: Sindre Sorhus
2908
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2902
2909
 
2903
2910
  > The MIT License (MIT)
2904
2911
  >
@@ -2926,8 +2933,10 @@ By: Sindre Sorhus
2926
2933
 
2927
2934
  ### leven@v4.0.0
2928
2935
 
2936
+ > Measure the difference between two strings using the Levenshtein distance algorithm
2937
+
2929
2938
  License: MIT
2930
- By: Sindre Sorhus
2939
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2931
2940
 
2932
2941
  > MIT License
2933
2942
  >
@@ -2943,9 +2952,12 @@ By: Sindre Sorhus
2943
2952
 
2944
2953
  ### lines-and-columns@v1.2.4
2945
2954
 
2955
+ > Maps lines and columns to character offsets and back.
2956
+
2946
2957
  License: MIT
2947
- By: Brian Donovan
2958
+ Homepage: <https://github.com/eventualbuddha/lines-and-columns#readme>
2948
2959
  Repository: <https://github.com/eventualbuddha/lines-and-columns.git>
2960
+ Author: Brian Donovan <brian@donovans.cc>
2949
2961
 
2950
2962
  > The MIT License (MIT)
2951
2963
  >
@@ -2973,9 +2985,12 @@ Repository: <https://github.com/eventualbuddha/lines-and-columns.git>
2973
2985
 
2974
2986
  ### lines-and-columns@v2.0.3
2975
2987
 
2988
+ > Maps lines and columns to character offsets and back.
2989
+
2976
2990
  License: MIT
2977
- By: Brian Donovan
2991
+ Homepage: <https://github.com/eventualbuddha/lines-and-columns#readme>
2978
2992
  Repository: <https://github.com/eventualbuddha/lines-and-columns.git>
2993
+ Author: Brian Donovan <brian@donovans.cc>
2979
2994
 
2980
2995
  > The MIT License (MIT)
2981
2996
  >
@@ -3001,14 +3016,16 @@ Repository: <https://github.com/eventualbuddha/lines-and-columns.git>
3001
3016
 
3002
3017
  ----------------------------------------
3003
3018
 
3004
- ### locate-path@v5.0.0
3019
+ ### locate-path@v7.1.1
3020
+
3021
+ > Get the first path that exists on disk of multiple paths
3005
3022
 
3006
3023
  License: MIT
3007
- By: Sindre Sorhus
3024
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
3008
3025
 
3009
3026
  > MIT License
3010
3027
  >
3011
- > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
3028
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
3012
3029
  >
3013
3030
  > 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:
3014
3031
  >
@@ -3020,31 +3037,10 @@ By: Sindre Sorhus
3020
3037
 
3021
3038
  ### lru-cache@v4.1.5
3022
3039
 
3023
- License: ISC
3024
- By: Isaac Z. Schlueter
3025
-
3026
- > The ISC License
3027
- >
3028
- > Copyright (c) Isaac Z. Schlueter and Contributors
3029
- >
3030
- > Permission to use, copy, modify, and/or distribute this software for any
3031
- > purpose with or without fee is hereby granted, provided that the above
3032
- > copyright notice and this permission notice appear in all copies.
3033
- >
3034
- > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3035
- > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3036
- > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3037
- > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3038
- > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3039
- > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
3040
- > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3041
-
3042
- ----------------------------------------
3043
-
3044
- ### lru-cache@v6.0.0
3040
+ > A cache object that deletes the least-recently-used items.
3045
3041
 
3046
3042
  License: ISC
3047
- By: Isaac Z. Schlueter
3043
+ Author: Isaac Z. Schlueter <i@izs.me>
3048
3044
 
3049
3045
  > The ISC License
3050
3046
  >
@@ -3064,27 +3060,12 @@ By: Isaac Z. Schlueter
3064
3060
 
3065
3061
  ----------------------------------------
3066
3062
 
3067
- ### make-dir@v3.1.0
3068
-
3069
- License: MIT
3070
- By: Sindre Sorhus
3071
-
3072
- > MIT License
3073
- >
3074
- > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
3075
- >
3076
- > 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:
3077
- >
3078
- > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
3079
- >
3080
- > 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.
3081
-
3082
- ----------------------------------------
3083
-
3084
3063
  ### map-age-cleaner@v0.1.3
3085
3064
 
3065
+ > Automatically cleanup expired items in a Map
3066
+
3086
3067
  License: MIT
3087
- By: Sam Verschueren
3068
+ Author: Sam Verschueren <sam.verschueren@gmail.com> (github.com/SamVerschueren)
3088
3069
 
3089
3070
  > MIT License
3090
3071
  >
@@ -3100,8 +3081,12 @@ By: Sam Verschueren
3100
3081
 
3101
3082
  ### markdown-escapes@v1.0.4
3102
3083
 
3084
+ > List of escapable characters in markdown
3085
+
3103
3086
  License: MIT
3104
- By: Titus Wormer
3087
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3088
+ Contributors:
3089
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3105
3090
 
3106
3091
  > (The MIT License)
3107
3092
  >
@@ -3130,8 +3115,10 @@ By: Titus Wormer
3130
3115
 
3131
3116
  ### mem@v9.0.2
3132
3117
 
3118
+ > Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input
3119
+
3133
3120
  License: MIT
3134
- By: Sindre Sorhus
3121
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
3135
3122
 
3136
3123
  > MIT License
3137
3124
  >
@@ -3147,7 +3134,10 @@ By: Sindre Sorhus
3147
3134
 
3148
3135
  ### merge2@v1.4.1
3149
3136
 
3137
+ > Merge multiple streams into one stream in sequence or parallel.
3138
+
3150
3139
  License: MIT
3140
+ Homepage: <https://github.com/teambition/merge2>
3151
3141
  Repository: <git@github.com:teambition/merge2.git>
3152
3142
 
3153
3143
  > The MIT License (MIT)
@@ -3174,11 +3164,16 @@ Repository: <git@github.com:teambition/merge2.git>
3174
3164
 
3175
3165
  ----------------------------------------
3176
3166
 
3177
- ### meriyah@v4.3.2
3167
+ ### meriyah@v4.3.5
3168
+
3169
+ > A 100% compliant, self-hosted javascript parser with high focus on both performance and stability
3178
3170
 
3179
3171
  License: ISC
3180
- By: Kenny F.
3172
+ Homepage: <https://github.com/meriyah/meriyah>
3181
3173
  Repository: <https://github.com/meriyah/meriyah>
3174
+ Author: Kenny F. (https://github.com/KFlash)
3175
+ Contributors:
3176
+ - Chunpeng Huo (https://github.com/3cp)
3182
3177
 
3183
3178
  > ISC License
3184
3179
  >
@@ -3192,8 +3187,27 @@ Repository: <https://github.com/meriyah/meriyah>
3192
3187
 
3193
3188
  ### micromatch@v4.0.5
3194
3189
 
3195
- License: MIT
3196
- By: Jon Schlinkert
3190
+ > Glob matching for javascript/node.js. A replacement and faster alternative to minimatch and multimatch.
3191
+
3192
+ License: MIT
3193
+ Homepage: <https://github.com/micromatch/micromatch>
3194
+ Author: Jon Schlinkert (https://github.com/jonschlinkert)
3195
+ Contributors:
3196
+ - null (https://github.com/DianeLooney)
3197
+ - Amila Welihinda (amilajack.com)
3198
+ - Bogdan Chadkin (https://github.com/TrySound)
3199
+ - Brian Woodward (https://twitter.com/doowb)
3200
+ - Devon Govett (http://badassjs.com)
3201
+ - Elan Shanker (https://github.com/es128)
3202
+ - Fabrício Matté (https://ultcombo.js.org)
3203
+ - Jon Schlinkert (http://twitter.com/jonschlinkert)
3204
+ - Martin Kolárik (https://kolarik.sk)
3205
+ - Olsten Larck (https://i.am.charlike.online)
3206
+ - Paul Miller (paulmillr.com)
3207
+ - Tom Byrer (https://github.com/tomByrer)
3208
+ - Tyler Akins (http://rumkin.com)
3209
+ - Peter Bright <drpizza@quiscalusmexicanus.org> (https://github.com/drpizza)
3210
+ - Kuba Juszczyk (https://github.com/ku8ar)
3197
3211
 
3198
3212
  > The MIT License (MIT)
3199
3213
  >
@@ -3221,8 +3235,10 @@ By: Jon Schlinkert
3221
3235
 
3222
3236
  ### mimic-fn@v4.0.0
3223
3237
 
3238
+ > Make a function mimic another one
3239
+
3224
3240
  License: MIT
3225
- By: Sindre Sorhus
3241
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
3226
3242
 
3227
3243
  > MIT License
3228
3244
  >
@@ -3238,9 +3254,11 @@ By: Sindre Sorhus
3238
3254
 
3239
3255
  ### minimatch@v3.1.2
3240
3256
 
3257
+ > a glob matcher in javascript
3258
+
3241
3259
  License: ISC
3242
- By: Isaac Z. Schlueter
3243
3260
  Repository: <git://github.com/isaacs/minimatch.git>
3261
+ Author: Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)
3244
3262
 
3245
3263
  > The ISC License
3246
3264
  >
@@ -3260,11 +3278,14 @@ Repository: <git://github.com/isaacs/minimatch.git>
3260
3278
 
3261
3279
  ----------------------------------------
3262
3280
 
3263
- ### minimist@v1.2.6
3281
+ ### minimist@v1.2.8
3282
+
3283
+ > parse argument options
3264
3284
 
3265
3285
  License: MIT
3266
- By: James Halliday
3267
- Repository: <git://github.com/substack/minimist.git>
3286
+ Homepage: <https://github.com/minimistjs/minimist>
3287
+ Repository: <git://github.com/minimistjs/minimist.git>
3288
+ Author: James Halliday <mail@substack.net> (http://substack.net)
3268
3289
 
3269
3290
  > This software is released under the MIT license:
3270
3291
  >
@@ -3289,9 +3310,11 @@ Repository: <git://github.com/substack/minimist.git>
3289
3310
 
3290
3311
  ### n-readlines@v1.0.1
3291
3312
 
3313
+ > Read file line by line without buffering the whole file in memory.
3314
+
3292
3315
  License: MIT
3293
- By: Yoan Arnaudov
3294
3316
  Repository: <http://github.com/nacholibre/node-readlines.git>
3317
+ Author: Yoan Arnaudov <jonidev@gmail.com>
3295
3318
 
3296
3319
  > The MIT License (MIT)
3297
3320
  >
@@ -3316,10 +3339,12 @@ Repository: <http://github.com/nacholibre/node-readlines.git>
3316
3339
 
3317
3340
  ----------------------------------------
3318
3341
 
3319
- ### nanoid@v3.3.4
3342
+ ### nanoid@v3.3.6
3343
+
3344
+ > A tiny (116 bytes), secure URL-friendly unique string ID generator
3320
3345
 
3321
3346
  License: MIT
3322
- By: Andrey Sitnik
3347
+ Author: Andrey Sitnik <andrey@sitnik.ru>
3323
3348
 
3324
3349
  > The MIT License (MIT)
3325
3350
  >
@@ -3346,9 +3371,11 @@ By: Andrey Sitnik
3346
3371
 
3347
3372
  ### once@v1.4.0
3348
3373
 
3374
+ > Run a function exactly one time
3375
+
3349
3376
  License: ISC
3350
- By: Isaac Z. Schlueter
3351
3377
  Repository: <git://github.com/isaacs/once>
3378
+ Author: Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)
3352
3379
 
3353
3380
  > The ISC License
3354
3381
  >
@@ -3368,40 +3395,12 @@ Repository: <git://github.com/isaacs/once>
3368
3395
 
3369
3396
  ----------------------------------------
3370
3397
 
3371
- ### outdent@v0.8.0
3372
-
3373
- License: MIT
3374
- By: Andrew Bradley
3375
- Repository: <git+https://github.com/cspotcode/outdent.git>
3376
-
3377
- > The MIT License (MIT)
3378
- >
3379
- > Copyright (c) 2016 Andrew Bradley
3380
- >
3381
- > Permission is hereby granted, free of charge, to any person obtaining a copy
3382
- > of this software and associated documentation files (the "Software"), to deal
3383
- > in the Software without restriction, including without limitation the rights
3384
- > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3385
- > copies of the Software, and to permit persons to whom the Software is
3386
- > furnished to do so, subject to the following conditions:
3387
- >
3388
- > The above copyright notice and this permission notice shall be included in all
3389
- > copies or substantial portions of the Software.
3390
- >
3391
- > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3392
- > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3393
- > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3394
- > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3395
- > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3396
- > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3397
- > SOFTWARE.
3398
-
3399
- ----------------------------------------
3400
-
3401
3398
  ### p-defer@v1.0.0
3402
3399
 
3400
+ > Create a deferred promise
3401
+
3403
3402
  License: MIT
3404
- By: Sindre Sorhus
3403
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
3405
3404
 
3406
3405
  > The MIT License (MIT)
3407
3406
  >
@@ -3427,31 +3426,16 @@ By: Sindre Sorhus
3427
3426
 
3428
3427
  ----------------------------------------
3429
3428
 
3430
- ### p-limit@v2.3.0
3431
-
3432
- License: MIT
3433
- By: Sindre Sorhus
3434
-
3435
- > MIT License
3436
- >
3437
- > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
3438
- >
3439
- > 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:
3440
- >
3441
- > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
3442
- >
3443
- > 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.
3444
-
3445
- ----------------------------------------
3429
+ ### p-limit@v4.0.0
3446
3430
 
3447
- ### p-locate@v4.1.0
3431
+ > Run multiple promise-returning & async functions with limited concurrency
3448
3432
 
3449
3433
  License: MIT
3450
- By: Sindre Sorhus
3434
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
3451
3435
 
3452
3436
  > MIT License
3453
3437
  >
3454
- > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
3438
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
3455
3439
  >
3456
3440
  > 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:
3457
3441
  >
@@ -3461,14 +3445,16 @@ By: Sindre Sorhus
3461
3445
 
3462
3446
  ----------------------------------------
3463
3447
 
3464
- ### p-try@v2.2.0
3448
+ ### p-locate@v6.0.0
3449
+
3450
+ > Get the first fulfilled promise that satisfies the provided testing function
3465
3451
 
3466
3452
  License: MIT
3467
- By: Sindre Sorhus
3453
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
3468
3454
 
3469
3455
  > MIT License
3470
3456
  >
3471
- > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
3457
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
3472
3458
  >
3473
3459
  > 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:
3474
3460
  >
@@ -3480,8 +3466,12 @@ By: Sindre Sorhus
3480
3466
 
3481
3467
  ### parse-entities@v2.0.0
3482
3468
 
3469
+ > Parse HTML character references: fast, spec-compliant, positional information
3470
+
3483
3471
  License: MIT
3484
- By: Titus Wormer
3472
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3473
+ Contributors:
3474
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3485
3475
 
3486
3476
  > (The MIT License)
3487
3477
  >
@@ -3510,8 +3500,10 @@ By: Titus Wormer
3510
3500
 
3511
3501
  ### parse-json@v5.2.0
3512
3502
 
3503
+ > Parse JSON with more helpful errors
3504
+
3513
3505
  License: MIT
3514
- By: Sindre Sorhus
3506
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
3515
3507
 
3516
3508
  > MIT License
3517
3509
  >
@@ -3525,14 +3517,16 @@ By: Sindre Sorhus
3525
3517
 
3526
3518
  ----------------------------------------
3527
3519
 
3528
- ### path-exists@v4.0.0
3520
+ ### path-exists@v5.0.0
3521
+
3522
+ > Check if a path exists
3529
3523
 
3530
3524
  License: MIT
3531
- By: Sindre Sorhus
3525
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
3532
3526
 
3533
3527
  > MIT License
3534
3528
  >
3535
- > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
3529
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
3536
3530
  >
3537
3531
  > 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:
3538
3532
  >
@@ -3544,8 +3538,10 @@ By: Sindre Sorhus
3544
3538
 
3545
3539
  ### path-is-absolute@v1.0.1
3546
3540
 
3541
+ > Node.js 0.12 path.isAbsolute() ponyfill
3542
+
3547
3543
  License: MIT
3548
- By: Sindre Sorhus
3544
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
3549
3545
 
3550
3546
  > The MIT License (MIT)
3551
3547
  >
@@ -3573,8 +3569,10 @@ By: Sindre Sorhus
3573
3569
 
3574
3570
  ### path-type@v4.0.0
3575
3571
 
3572
+ > Check if a path is a file, directory, or symlink
3573
+
3576
3574
  License: MIT
3577
- By: Sindre Sorhus
3575
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
3578
3576
 
3579
3577
  > MIT License
3580
3578
  >
@@ -3590,8 +3588,10 @@ By: Sindre Sorhus
3590
3588
 
3591
3589
  ### picocolors@v1.0.0
3592
3590
 
3591
+ > The tiniest and the fastest library for terminal output formatting with ANSI colors
3592
+
3593
3593
  License: ISC
3594
- By: Alexey Raspopov
3594
+ Author: Alexey Raspopov
3595
3595
 
3596
3596
  > ISC License
3597
3597
  >
@@ -3613,8 +3613,11 @@ By: Alexey Raspopov
3613
3613
 
3614
3614
  ### picomatch@v2.3.1
3615
3615
 
3616
+ > Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.
3617
+
3616
3618
  License: MIT
3617
- By: Jon Schlinkert
3619
+ Homepage: <https://github.com/micromatch/picomatch>
3620
+ Author: Jon Schlinkert (https://github.com/jonschlinkert)
3618
3621
 
3619
3622
  > The MIT License (MIT)
3620
3623
  >
@@ -3640,14 +3643,16 @@ By: Jon Schlinkert
3640
3643
 
3641
3644
  ----------------------------------------
3642
3645
 
3643
- ### pkg-dir@v4.2.0
3646
+ ### pkg-dir@v7.0.0
3647
+
3648
+ > Find the root directory of a Node.js project or npm package
3644
3649
 
3645
3650
  License: MIT
3646
- By: Sindre Sorhus
3651
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
3647
3652
 
3648
3653
  > MIT License
3649
3654
  >
3650
- > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
3655
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
3651
3656
  >
3652
3657
  > 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:
3653
3658
  >
@@ -3659,9 +3664,12 @@ By: Sindre Sorhus
3659
3664
 
3660
3665
  ### please-upgrade-node@v3.2.0
3661
3666
 
3667
+ > Displays a beginner-friendly message telling your user to upgrade their version of Node
3668
+
3662
3669
  License: MIT
3663
- By: typicode
3670
+ Homepage: <https://github.com/typicode/please-upgrade-node#readme>
3664
3671
  Repository: <git+https://github.com/typicode/please-upgrade-node.git>
3672
+ Author: typicode
3665
3673
 
3666
3674
  > MIT License
3667
3675
  >
@@ -3687,10 +3695,13 @@ Repository: <git+https://github.com/typicode/please-upgrade-node.git>
3687
3695
 
3688
3696
  ----------------------------------------
3689
3697
 
3690
- ### postcss@v8.4.17
3698
+ ### postcss@v8.4.23
3699
+
3700
+ > Tool for transforming styles with JS plugins
3691
3701
 
3692
3702
  License: MIT
3693
- By: Andrey Sitnik
3703
+ Homepage: <https://postcss.org/>
3704
+ Author: Andrey Sitnik <andrey@sitnik.ru>
3694
3705
 
3695
3706
  > The MIT License (MIT)
3696
3707
  >
@@ -3717,8 +3728,11 @@ By: Andrey Sitnik
3717
3728
 
3718
3729
  ### postcss-less@v6.0.0
3719
3730
 
3731
+ > LESS parser for PostCSS
3732
+
3720
3733
  License: MIT
3721
- By: Denys Kniazevych
3734
+ Homepage: <https://github.com/shellscape/postcss-less>
3735
+ Author: Denys Kniazevych <webschik@gmail.com>
3722
3736
 
3723
3737
  > The MIT License (MIT)
3724
3738
  >
@@ -3749,16 +3763,21 @@ By: Denys Kniazevych
3749
3763
 
3750
3764
  ### postcss-media-query-parser@v0.2.3
3751
3765
 
3766
+ > A tool for parsing media query lists.
3767
+
3752
3768
  License: MIT
3753
- By: dryoma
3769
+ Homepage: <https://github.com/dryoma/postcss-media-query-parser>
3754
3770
  Repository: <git+https://github.com/dryoma/postcss-media-query-parser.git>
3771
+ Author: dryoma
3755
3772
 
3756
3773
  ----------------------------------------
3757
3774
 
3758
- ### postcss-scss@v4.0.5
3775
+ ### postcss-scss@v4.0.6
3776
+
3777
+ > SCSS parser for PostCSS
3759
3778
 
3760
3779
  License: MIT
3761
- By: Andrey Sitnik
3780
+ Author: Andrey Sitnik <andrey@sitnik.ru>
3762
3781
 
3763
3782
  > The MIT License (MIT)
3764
3783
  >
@@ -3786,7 +3805,8 @@ By: Andrey Sitnik
3786
3805
  ### postcss-selector-parser@v2.2.3
3787
3806
 
3788
3807
  License: MIT
3789
- By: Ben Briggs
3808
+ Homepage: <https://github.com/postcss/postcss-selector-parser>
3809
+ Author: Ben Briggs <beneb.info@gmail.com> (http://beneb.info)
3790
3810
 
3791
3811
  > Copyright (c) Ben Briggs <beneb.info@gmail.com> (http://beneb.info)
3792
3812
  >
@@ -3815,8 +3835,10 @@ By: Ben Briggs
3815
3835
 
3816
3836
  ### postcss-values-parser@v2.0.1
3817
3837
 
3838
+ > A CSS property value parser for use with PostCSS
3839
+
3818
3840
  License: MIT
3819
- By: Andrew Powell (shellscape)
3841
+ Author: Andrew Powell (shellscape) <andrew@shellscape.org> (http://shellscape.org)
3820
3842
 
3821
3843
  > Copyright (c) Andrew Powell <andrew@shellscape.org>
3822
3844
  >
@@ -3845,9 +3867,12 @@ By: Andrew Powell (shellscape)
3845
3867
 
3846
3868
  ### pseudomap@v1.0.2
3847
3869
 
3870
+ > A thing that is a lot like ES6 `Map`, but without iterators, for use in environments where `for..of` syntax and `Map` are not available.
3871
+
3848
3872
  License: ISC
3849
- By: Isaac Z. Schlueter
3873
+ Homepage: <https://github.com/isaacs/pseudomap#readme>
3850
3874
  Repository: <git+https://github.com/isaacs/pseudomap.git>
3875
+ Author: Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)
3851
3876
 
3852
3877
  > The ISC License
3853
3878
  >
@@ -3869,9 +3894,12 @@ Repository: <git+https://github.com/isaacs/pseudomap.git>
3869
3894
 
3870
3895
  ### queue-microtask@v1.2.3
3871
3896
 
3897
+ > fast, tiny `queueMicrotask` shim for modern engines
3898
+
3872
3899
  License: MIT
3873
- By: Feross Aboukhadijeh
3900
+ Homepage: <https://github.com/feross/queue-microtask>
3874
3901
  Repository: <git://github.com/feross/queue-microtask.git>
3902
+ Author: Feross Aboukhadijeh <feross@feross.org> (https://feross.org)
3875
3903
 
3876
3904
  > The MIT License (MIT)
3877
3905
  >
@@ -3898,8 +3926,12 @@ Repository: <git://github.com/feross/queue-microtask.git>
3898
3926
 
3899
3927
  ### remark-footnotes@v2.0.0
3900
3928
 
3929
+ > remark plugin to add support for pandoc footnotes
3930
+
3901
3931
  License: MIT
3902
- By: Titus Wormer
3932
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3933
+ Contributors:
3934
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3903
3935
 
3904
3936
  > (The MIT License)
3905
3937
  >
@@ -3928,22 +3960,45 @@ By: Titus Wormer
3928
3960
 
3929
3961
  ### remark-math@v3.0.1
3930
3962
 
3963
+ > remark plugin to parse and stringify math
3964
+
3931
3965
  License: MIT
3932
- By: Junyoung Choi
3966
+ Author: Junyoung Choi <fluke8259@gmail.com> (https://rokt33r.github.io)
3967
+ Contributors:
3968
+ - Junyoung Choi <fluke8259@gmail.com> (https://rokt33r.github.io)
3969
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3933
3970
 
3934
3971
  ----------------------------------------
3935
3972
 
3936
3973
  ### remark-parse@v8.0.3
3937
3974
 
3975
+ > remark plugin to parse Markdown
3976
+
3938
3977
  License: MIT
3939
- By: Titus Wormer
3978
+ Homepage: <https://remark.js.org>
3979
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3980
+ Contributors:
3981
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3982
+ - Eugene Sharygin <eush77@gmail.com>
3983
+ - Junyoung Choi <fluke8259@gmail.com>
3984
+ - Elijah Hamovitz <elijahhamovitz@gmail.com>
3985
+ - Ika <ikatyang@gmail.com>
3940
3986
 
3941
3987
  ----------------------------------------
3942
3988
 
3943
3989
  ### repeat-string@v1.6.1
3944
3990
 
3991
+ > Repeat the given string n times. Fastest implementation for repeating a string.
3992
+
3945
3993
  License: MIT
3946
- By: Jon Schlinkert
3994
+ Homepage: <https://github.com/jonschlinkert/repeat-string>
3995
+ Author: Jon Schlinkert (http://github.com/jonschlinkert)
3996
+ Contributors:
3997
+ - Brian Woodward <brian.woodward@gmail.com> (https://github.com/doowb)
3998
+ - Jon Schlinkert <jon.schlinkert@sellside.com> (http://twitter.com/jonschlinkert)
3999
+ - Linus Unnebäck <linus@folkdatorn.se> (http://linus.unnebäck.se)
4000
+ - Thijs Busser <tbusser@gmail.com> (http://tbusser.net)
4001
+ - Titus <tituswormer@gmail.com> (wooorm.com)
3947
4002
 
3948
4003
  > The MIT License (MIT)
3949
4004
  >
@@ -3971,8 +4026,10 @@ By: Jon Schlinkert
3971
4026
 
3972
4027
  ### resolve-from@v4.0.0
3973
4028
 
4029
+ > Resolve the path of a module like `require.resolve()` but from a given path
4030
+
3974
4031
  License: MIT
3975
- By: Sindre Sorhus
4032
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
3976
4033
 
3977
4034
  > MIT License
3978
4035
  >
@@ -3988,9 +4045,12 @@ By: Sindre Sorhus
3988
4045
 
3989
4046
  ### reusify@v1.0.4
3990
4047
 
4048
+ > Reuse objects and functions with style
4049
+
3991
4050
  License: MIT
3992
- By: Matteo Collina
4051
+ Homepage: <https://github.com/mcollina/reusify#readme>
3993
4052
  Repository: <git+https://github.com/mcollina/reusify.git>
4053
+ Author: Matteo Collina <hello@matteocollina.com>
3994
4054
 
3995
4055
  > The MIT License (MIT)
3996
4056
  >
@@ -4018,8 +4078,10 @@ Repository: <git+https://github.com/mcollina/reusify.git>
4018
4078
 
4019
4079
  ### rimraf@v3.0.2
4020
4080
 
4081
+ > A deep deletion module for node (like `rm -rf`)
4082
+
4021
4083
  License: ISC
4022
- By: Isaac Z. Schlueter
4084
+ Author: Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)
4023
4085
 
4024
4086
  > The ISC License
4025
4087
  >
@@ -4039,28 +4101,14 @@ By: Isaac Z. Schlueter
4039
4101
 
4040
4102
  ----------------------------------------
4041
4103
 
4042
- ### rollup-plugin-node-polyfills@v0.2.1
4043
-
4044
- License: MIT
4045
- Repository: <git@github.com:ionic-team/rollup-plugin-node-polyfills.git>
4046
-
4047
- > The MIT License (MIT)
4048
- >
4049
- > Copyright (c) 2019 these people
4050
- >
4051
- > 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:
4052
- >
4053
- > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
4054
- >
4055
- > 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.
4056
-
4057
- ----------------------------------------
4058
-
4059
4104
  ### run-parallel@v1.2.0
4060
4105
 
4106
+ > Run an array of functions in parallel
4107
+
4061
4108
  License: MIT
4062
- By: Feross Aboukhadijeh
4109
+ Homepage: <https://github.com/feross/run-parallel>
4063
4110
  Repository: <git://github.com/feross/run-parallel.git>
4111
+ Author: Feross Aboukhadijeh <feross@feross.org> (https://feross.org)
4064
4112
 
4065
4113
  > The MIT License (MIT)
4066
4114
  >
@@ -4087,8 +4135,10 @@ Repository: <git://github.com/feross/run-parallel.git>
4087
4135
 
4088
4136
  ### sdbm@v2.0.0
4089
4137
 
4138
+ > SDBM non-cryptographic hash function
4139
+
4090
4140
  License: MIT
4091
- By: Sindre Sorhus
4141
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
4092
4142
 
4093
4143
  > MIT License
4094
4144
  >
@@ -4102,33 +4152,13 @@ By: Sindre Sorhus
4102
4152
 
4103
4153
  ----------------------------------------
4104
4154
 
4105
- ### semver@v6.3.0
4106
-
4107
- License: ISC
4108
-
4109
- > The ISC License
4110
- >
4111
- > Copyright (c) Isaac Z. Schlueter and Contributors
4112
- >
4113
- > Permission to use, copy, modify, and/or distribute this software for any
4114
- > purpose with or without fee is hereby granted, provided that the above
4115
- > copyright notice and this permission notice appear in all copies.
4116
- >
4117
- > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
4118
- > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
4119
- > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
4120
- > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
4121
- > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
4122
- > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
4123
- > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
4124
-
4125
- ----------------------------------------
4155
+ ### semver@v7.3.8
4126
4156
 
4127
- ### semver@v7.3.7
4157
+ > The semantic version parser used by npm.
4128
4158
 
4129
4159
  License: ISC
4130
- By: GitHub Inc.
4131
4160
  Repository: <https://github.com/npm/node-semver.git>
4161
+ Author: GitHub Inc.
4132
4162
 
4133
4163
  > The ISC License
4134
4164
  >
@@ -4150,9 +4180,12 @@ Repository: <https://github.com/npm/node-semver.git>
4150
4180
 
4151
4181
  ### semver-compare@v1.0.0
4152
4182
 
4183
+ > compare two semver version strings, returning -1, 0, or 1
4184
+
4153
4185
  License: MIT
4154
- By: James Halliday
4186
+ Homepage: <https://github.com/substack/semver-compare>
4155
4187
  Repository: <git://github.com/substack/semver-compare.git>
4188
+ Author: James Halliday <mail@substack.net> (http://substack.net)
4156
4189
 
4157
4190
  > This software is released under the MIT license:
4158
4191
  >
@@ -4177,9 +4210,11 @@ Repository: <git://github.com/substack/semver-compare.git>
4177
4210
 
4178
4211
  ### sigmund@v1.0.1
4179
4212
 
4213
+ > Quick and dirty signatures for Objects.
4214
+
4180
4215
  License: ISC
4181
- By: Isaac Z. Schlueter
4182
4216
  Repository: <git://github.com/isaacs/sigmund>
4217
+ Author: Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)
4183
4218
 
4184
4219
  > The ISC License
4185
4220
  >
@@ -4201,6 +4236,8 @@ Repository: <git://github.com/isaacs/sigmund>
4201
4236
 
4202
4237
  ### simple-html-tokenizer@v0.5.11
4203
4238
 
4239
+ > Simple HTML Tokenizer is a lightweight JavaScript library that can be used to tokenize the kind of HTML normally found in templates.
4240
+
4204
4241
  License: MIT
4205
4242
  Repository: <https://github.com/tildeio/simple-html-tokenizer.git>
4206
4243
 
@@ -4228,8 +4265,12 @@ Repository: <https://github.com/tildeio/simple-html-tokenizer.git>
4228
4265
 
4229
4266
  ### state-toggle@v1.0.3
4230
4267
 
4268
+ > Enter/exit a state
4269
+
4231
4270
  License: MIT
4232
- By: Titus Wormer
4271
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4272
+ Contributors:
4273
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4233
4274
 
4234
4275
  > (The MIT License)
4235
4276
  >
@@ -4258,8 +4299,10 @@ By: Titus Wormer
4258
4299
 
4259
4300
  ### string-width@v5.0.1
4260
4301
 
4302
+ > Get the visual width of a string - the number of columns required to display it
4303
+
4261
4304
  License: MIT
4262
- By: Sindre Sorhus
4305
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
4263
4306
 
4264
4307
  > MIT License
4265
4308
  >
@@ -4275,8 +4318,10 @@ By: Sindre Sorhus
4275
4318
 
4276
4319
  ### strip-ansi@v7.0.1
4277
4320
 
4321
+ > Strip ANSI escape codes from a string
4322
+
4278
4323
  License: MIT
4279
- By: Sindre Sorhus
4324
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
4280
4325
 
4281
4326
  > MIT License
4282
4327
  >
@@ -4292,8 +4337,10 @@ By: Sindre Sorhus
4292
4337
 
4293
4338
  ### supports-color@v5.5.0
4294
4339
 
4340
+ > Detect whether a terminal supports color
4341
+
4295
4342
  License: MIT
4296
- By: Sindre Sorhus
4343
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
4297
4344
 
4298
4345
  > MIT License
4299
4346
  >
@@ -4309,8 +4356,10 @@ By: Sindre Sorhus
4309
4356
 
4310
4357
  ### to-fast-properties@v4.0.0
4311
4358
 
4359
+ > Force V8 to use fast properties for an object
4360
+
4312
4361
  License: MIT
4313
- By: Sindre Sorhus
4362
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https:/sindresorhus.com)
4314
4363
 
4315
4364
  > MIT License
4316
4365
  >
@@ -4329,8 +4378,14 @@ By: Sindre Sorhus
4329
4378
 
4330
4379
  ### to-regex-range@v5.0.1
4331
4380
 
4381
+ > Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.
4382
+
4332
4383
  License: MIT
4333
- By: Jon Schlinkert
4384
+ Homepage: <https://github.com/micromatch/to-regex-range>
4385
+ Author: Jon Schlinkert (https://github.com/jonschlinkert)
4386
+ Contributors:
4387
+ - Jon Schlinkert (http://twitter.com/jonschlinkert)
4388
+ - Rouven Weßling (www.rouvenwessling.de)
4334
4389
 
4335
4390
  > The MIT License (MIT)
4336
4391
  >
@@ -4358,16 +4413,22 @@ By: Jon Schlinkert
4358
4413
 
4359
4414
  ### trim@v1.0.1
4360
4415
 
4416
+ > Trim string whitespace
4417
+
4361
4418
  License: MIT
4362
- By: TJ Holowaychuk
4363
4419
  Repository: <https://github.com/Trott/trim.git>
4420
+ Author: TJ Holowaychuk <tj@vision-media.ca>
4364
4421
 
4365
4422
  ----------------------------------------
4366
4423
 
4367
4424
  ### trim-trailing-lines@v1.1.4
4368
4425
 
4426
+ > Remove final line feeds from a string
4427
+
4369
4428
  License: MIT
4370
- By: Titus Wormer
4429
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4430
+ Contributors:
4431
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4371
4432
 
4372
4433
  > (The MIT License)
4373
4434
  >
@@ -4396,8 +4457,12 @@ By: Titus Wormer
4396
4457
 
4397
4458
  ### trough@v1.0.5
4398
4459
 
4460
+ > Middleware: a channel used to convey a liquid
4461
+
4399
4462
  License: MIT
4400
- By: Titus Wormer
4463
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4464
+ Contributors:
4465
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4401
4466
 
4402
4467
  > (The MIT License)
4403
4468
  >
@@ -4425,9 +4490,12 @@ By: Titus Wormer
4425
4490
 
4426
4491
  ### tslib@v1.14.1
4427
4492
 
4493
+ > Runtime library for TypeScript helper functions
4494
+
4428
4495
  License: 0BSD
4429
- By: Microsoft Corp.
4496
+ Homepage: <https://www.typescriptlang.org/>
4430
4497
  Repository: <https://github.com/Microsoft/tslib.git>
4498
+ Author: Microsoft Corp.
4431
4499
 
4432
4500
  > Copyright (c) Microsoft Corporation.
4433
4501
  >
@@ -4446,9 +4514,11 @@ Repository: <https://github.com/Microsoft/tslib.git>
4446
4514
 
4447
4515
  ### tsutils@v3.21.0
4448
4516
 
4517
+ > utilities for working with typescript's AST
4518
+
4449
4519
  License: MIT
4450
- By: Klaus Meinhardt
4451
4520
  Repository: <https://github.com/ajafff/tsutils>
4521
+ Author: Klaus Meinhardt
4452
4522
 
4453
4523
  > The MIT License (MIT)
4454
4524
  >
@@ -4474,11 +4544,14 @@ Repository: <https://github.com/ajafff/tsutils>
4474
4544
 
4475
4545
  ----------------------------------------
4476
4546
 
4477
- ### typescript@v4.8.4
4547
+ ### typescript@v5.0.4
4548
+
4549
+ > TypeScript is a language for application scale JavaScript development
4478
4550
 
4479
4551
  License: Apache-2.0
4480
- By: Microsoft Corp.
4552
+ Homepage: <https://www.typescriptlang.org/>
4481
4553
  Repository: <https://github.com/Microsoft/TypeScript.git>
4554
+ Author: Microsoft Corp.
4482
4555
 
4483
4556
  > Apache License
4484
4557
  >
@@ -4540,8 +4613,12 @@ Repository: <https://github.com/Microsoft/TypeScript.git>
4540
4613
 
4541
4614
  ### unherit@v1.1.3
4542
4615
 
4616
+ > Clone a constructor without affecting the super-class
4617
+
4543
4618
  License: MIT
4544
- By: Titus Wormer
4619
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4620
+ Contributors:
4621
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4545
4622
 
4546
4623
  > (The MIT License)
4547
4624
  >
@@ -4569,8 +4646,18 @@ By: Titus Wormer
4569
4646
 
4570
4647
  ### unified@v9.2.2
4571
4648
 
4649
+ > Interface for parsing, inspecting, transforming, and serializing content through syntax trees
4650
+
4572
4651
  License: MIT
4573
- By: Titus Wormer
4652
+ Homepage: <https://unifiedjs.com>
4653
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4654
+ Contributors:
4655
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4656
+ - Junyoung Choi <fluke8259@gmail.com>
4657
+ - Hernan Rajchert <hrajchert@gmail.com>
4658
+ - Christian Murphy <christian.murphy.42@gmail.com>
4659
+ - Vse Mozhet Byt <vsemozhetbyt@gmail.com>
4660
+ - Richard Littauer <richard.littauer@gmail.com>
4574
4661
 
4575
4662
  > (The MIT License)
4576
4663
  >
@@ -4598,9 +4685,11 @@ By: Titus Wormer
4598
4685
 
4599
4686
  ### uniq@v1.0.1
4600
4687
 
4688
+ > Removes duplicates from a sorted array in place
4689
+
4601
4690
  License: MIT
4602
- By: Mikola Lysenko
4603
4691
  Repository: <git://github.com/mikolalysenko/uniq.git>
4692
+ Author: Mikola Lysenko
4604
4693
 
4605
4694
  > The MIT License (MIT)
4606
4695
  >
@@ -4628,8 +4717,14 @@ Repository: <git://github.com/mikolalysenko/uniq.git>
4628
4717
 
4629
4718
  ### unist-util-is@v4.1.0
4630
4719
 
4720
+ > unist utility to check if a node passes a test
4721
+
4631
4722
  License: MIT
4632
- By: Titus Wormer
4723
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4724
+ Contributors:
4725
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4726
+ - Christian Murphy <christian.murphy.42@gmail.com>
4727
+ - Lucas Brandstaetter <lucas@brandstaetter.tech> (https://github.com/Roang-zero1)
4633
4728
 
4634
4729
  > (The MIT license)
4635
4730
  >
@@ -4658,8 +4753,12 @@ By: Titus Wormer
4658
4753
 
4659
4754
  ### unist-util-remove-position@v2.0.1
4660
4755
 
4756
+ > unist utility to remove positions from a tree
4757
+
4661
4758
  License: MIT
4662
- By: Titus Wormer
4759
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4760
+ Contributors:
4761
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4663
4762
 
4664
4763
  > (The MIT License)
4665
4764
  >
@@ -4688,8 +4787,12 @@ By: Titus Wormer
4688
4787
 
4689
4788
  ### unist-util-stringify-position@v2.0.3
4690
4789
 
4790
+ > unist utility to serialize a node, position, or point as a human readable location
4791
+
4691
4792
  License: MIT
4692
- By: Titus Wormer
4793
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4794
+ Contributors:
4795
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4693
4796
 
4694
4797
  > (The MIT License)
4695
4798
  >
@@ -4718,8 +4821,14 @@ By: Titus Wormer
4718
4821
 
4719
4822
  ### unist-util-visit@v2.0.3
4720
4823
 
4824
+ > unist utility to visit nodes
4825
+
4721
4826
  License: MIT
4722
- By: Titus Wormer
4827
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4828
+ Contributors:
4829
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4830
+ - Eugene Sharygin <eush77@gmail.com>
4831
+ - Richard Gibson <richard.gibson@gmail.com>
4723
4832
 
4724
4833
  > (The MIT License)
4725
4834
  >
@@ -4748,8 +4857,12 @@ By: Titus Wormer
4748
4857
 
4749
4858
  ### unist-util-visit-parents@v3.1.1
4750
4859
 
4860
+ > unist utility to recursively walk over nodes, with ancestral information
4861
+
4751
4862
  License: MIT
4752
- By: Titus Wormer
4863
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4864
+ Contributors:
4865
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4753
4866
 
4754
4867
  > (The MIT License)
4755
4868
  >
@@ -4778,8 +4891,17 @@ By: Titus Wormer
4778
4891
 
4779
4892
  ### vfile@v4.2.1
4780
4893
 
4894
+ > Virtual file format for text processing
4895
+
4781
4896
  License: MIT
4782
- By: Titus Wormer
4897
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4898
+ Contributors:
4899
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4900
+ - Brendan Abbott <brendan.abbott@temando.com>
4901
+ - Denys Dovhan <email@denysdovhan.com>
4902
+ - Kyle Mathews <mathews.kyle@gmail.com>
4903
+ - Shinnosuke Watanabe <snnskwtnb@gmail.com>
4904
+ - Sindre Sorhus <sindresorhus@gmail.com>
4783
4905
 
4784
4906
  > (The MIT License)
4785
4907
  >
@@ -4807,8 +4929,13 @@ By: Titus Wormer
4807
4929
 
4808
4930
  ### vfile-location@v3.2.0
4809
4931
 
4932
+ > vfile utility to convert between positional (line and column-based) and offset (range-based) locations
4933
+
4810
4934
  License: MIT
4811
- By: Titus Wormer
4935
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4936
+ Contributors:
4937
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4938
+ - Christian Murphy <christian.murphy.42@gmail.com>
4812
4939
 
4813
4940
  > (The MIT License)
4814
4941
  >
@@ -4837,8 +4964,12 @@ By: Titus Wormer
4837
4964
 
4838
4965
  ### vfile-message@v2.0.4
4839
4966
 
4967
+ > vfile utility to create a virtual message
4968
+
4840
4969
  License: MIT
4841
- By: Titus Wormer
4970
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4971
+ Contributors:
4972
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4842
4973
 
4843
4974
  > (The MIT License)
4844
4975
  >
@@ -4867,8 +4998,11 @@ By: Titus Wormer
4867
4998
 
4868
4999
  ### vnopts@v1.0.2
4869
5000
 
5001
+ > validate and normalize options
5002
+
4870
5003
  License: MIT
4871
- By: Ika
5004
+ Homepage: <https://github.com/ikatyang/vnopts#readme>
5005
+ Author: Ika <ikatyang@gmail.com> (https://github.com/ikatyang)
4872
5006
 
4873
5007
  > MIT License
4874
5008
  >
@@ -4896,9 +5030,14 @@ By: Ika
4896
5030
 
4897
5031
  ### wcwidth@v1.0.1
4898
5032
 
5033
+ > Port of C's wcwidth() and wcswidth()
5034
+
4899
5035
  License: MIT
4900
- By: Tim Oxley
5036
+ Homepage: <https://github.com/timoxley/wcwidth#readme>
4901
5037
  Repository: <git+https://github.com/timoxley/wcwidth.git>
5038
+ Author: Tim Oxley
5039
+ Contributors:
5040
+ - Woong Jun <woong.jun@gmail.com> (http://code.woong.org/)
4902
5041
 
4903
5042
  > wcwidth.js: JavaScript Portng of Markus Kuhn's wcwidth() Implementation
4904
5043
  > =======================================================================
@@ -4934,9 +5073,12 @@ Repository: <git+https://github.com/timoxley/wcwidth.git>
4934
5073
 
4935
5074
  ### wrappy@v1.0.2
4936
5075
 
5076
+ > Callback wrapping utility
5077
+
4937
5078
  License: ISC
4938
- By: Isaac Z. Schlueter
5079
+ Homepage: <https://github.com/npm/wrappy>
4939
5080
  Repository: <https://github.com/npm/wrappy>
5081
+ Author: Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)
4940
5082
 
4941
5083
  > The ISC License
4942
5084
  >
@@ -4958,8 +5100,14 @@ Repository: <https://github.com/npm/wrappy>
4958
5100
 
4959
5101
  ### xtend@v4.0.2
4960
5102
 
5103
+ > extend like a boss
5104
+
4961
5105
  License: MIT
4962
- By: Raynos
5106
+ Homepage: <https://github.com/Raynos/xtend>
5107
+ Author: Raynos <raynos2@gmail.com>
5108
+ Contributors:
5109
+ - Jake Verbaten
5110
+ - Matt Esch
4963
5111
 
4964
5112
  > The MIT License (MIT)
4965
5113
  > Copyright (c) 2012-2014 Raynos.
@@ -4986,33 +5134,11 @@ By: Raynos
4986
5134
 
4987
5135
  ### yallist@v2.1.2
4988
5136
 
4989
- License: ISC
4990
- By: Isaac Z. Schlueter
4991
- Repository: <git+https://github.com/isaacs/yallist.git>
4992
-
4993
- > The ISC License
4994
- >
4995
- > Copyright (c) Isaac Z. Schlueter and Contributors
4996
- >
4997
- > Permission to use, copy, modify, and/or distribute this software for any
4998
- > purpose with or without fee is hereby granted, provided that the above
4999
- > copyright notice and this permission notice appear in all copies.
5000
- >
5001
- > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
5002
- > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
5003
- > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
5004
- > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
5005
- > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
5006
- > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
5007
- > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
5008
-
5009
- ----------------------------------------
5010
-
5011
- ### yallist@v4.0.0
5137
+ > Yet Another Linked List
5012
5138
 
5013
5139
  License: ISC
5014
- By: Isaac Z. Schlueter
5015
5140
  Repository: <git+https://github.com/isaacs/yallist.git>
5141
+ Author: Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)
5016
5142
 
5017
5143
  > The ISC License
5018
5144
  >
@@ -5034,8 +5160,11 @@ Repository: <git+https://github.com/isaacs/yallist.git>
5034
5160
 
5035
5161
  ### yaml@v1.10.2
5036
5162
 
5163
+ > JavaScript parser and stringifier for YAML
5164
+
5037
5165
  License: ISC
5038
- By: Eemeli Aro
5166
+ Homepage: <https://eemeli.org/yaml/v1/>
5167
+ Author: Eemeli Aro <eemeli@gmail.com>
5039
5168
 
5040
5169
  > Copyright 2018 Eemeli Aro <eemeli@gmail.com>
5041
5170
  >
@@ -5053,10 +5182,13 @@ By: Eemeli Aro
5053
5182
 
5054
5183
  ----------------------------------------
5055
5184
 
5056
- ### yaml-unist-parser@v1.3.1
5185
+ ### yaml-unist-parser@v2.0.1
5186
+
5187
+ > A YAML parser that produces output compatible with unist
5057
5188
 
5058
5189
  License: MIT
5059
- By: Ika
5190
+ Homepage: <https://github.com/prettier/yaml-unist-parser#readme>
5191
+ Author: Ika <ikatyang@gmail.com> (https://github.com/ikatyang)
5060
5192
 
5061
5193
  > MIT License
5062
5194
  >
@@ -5079,3 +5211,22 @@ By: Ika
5079
5211
  > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
5080
5212
  > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
5081
5213
  > SOFTWARE.
5214
+
5215
+ ----------------------------------------
5216
+
5217
+ ### yocto-queue@v1.0.0
5218
+
5219
+ > Tiny queue data structure
5220
+
5221
+ License: MIT
5222
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
5223
+
5224
+ > MIT License
5225
+ >
5226
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
5227
+ >
5228
+ > 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:
5229
+ >
5230
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
5231
+ >
5232
+ > 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.