-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy path3rd-party-licenses.txt
1847 lines (1847 loc) · 230 KB
/
3rd-party-licenses.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"module name","licenses","copyright","repository"
"@aashutoshrathi/[email protected]","MIT","Copyright (c) 2014-2016, Jon Schlinkert","https://github.com/aashutoshrathi/word-wrap"
"@aduh95/[email protected]","MIT","Copyright (c) 2014-2018 Michael Daines","https://github.com/aduh95/viz.js"
"@ampproject/[email protected]","Apache-2.0","","https://github.com/ampproject/remapping"
"@angular-builders/[email protected]","MIT","Copyright (c) 2018 Evgeny Barabanov","https://github.com/just-jeb/angular-builders"
"@angular-devkit/[email protected]","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
"@angular-devkit/[email protected]","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
"@angular-devkit/[email protected]","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
"@angular-devkit/[email protected]","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
"@angular-devkit/[email protected]","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
"@angular-devkit/[email protected]","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
"@angular-devkit/[email protected]","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
"@angular-devkit/[email protected]","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
"@angular-devkit/[email protected]","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
"@angular-devkit/[email protected]","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
"@angular-eslint/[email protected]","MIT","Copyright (c) 2020 James Henry","https://github.com/angular-eslint/angular-eslint"
"@angular-eslint/[email protected]","MIT","Copyright (c) 2020 James Henry","https://github.com/angular-eslint/angular-eslint"
"@angular-eslint/[email protected]","MIT","Copyright (c) 2020 James Henry","https://github.com/angular-eslint/angular-eslint"
"@angular-eslint/[email protected]","MIT","Copyright (c) 2020 James Henry","https://github.com/angular-eslint/angular-eslint"
"@angular-eslint/[email protected]","MIT","Copyright (c) 2020 James Henry","https://github.com/angular-eslint/angular-eslint"
"@angular-eslint/[email protected]","MIT","Copyright (c) 2020 James Henry","https://github.com/angular-eslint/angular-eslint"
"@angular-eslint/[email protected]","MIT","Copyright (c) 2020 James Henry",""
"@angular/[email protected]","MIT","","https://github.com/angular/angular"
"@angular/[email protected]","MIT","Copyright (c) 2023 Google LLC.","https://github.com/angular/components"
"@angular/[email protected]","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
"@angular/[email protected]","MIT","","https://github.com/angular/angular"
"@angular/[email protected]","MIT","","https://github.com/angular/angular"
"@angular/[email protected]","MIT","","https://github.com/angular/angular"
"@angular/[email protected]","MIT","","https://github.com/angular/angular"
"@angular/[email protected]","MIT","","https://github.com/angular/angular"
"@angular/[email protected]","MIT","","https://github.com/angular/angular"
"@angular/[email protected]","MIT","","https://github.com/angular/angular"
"@angular/[email protected]","MIT","","https://github.com/angular/angular"
"@angular/[email protected]","MIT","","https://github.com/angular/angular"
"@angular/[email protected]","MIT","","https://github.com/angular/angular"
"@angular/[email protected]","MIT","","https://github.com/angular/angular"
"@angular/[email protected]","MIT","","https://github.com/angular/angular"
"@assemblyscript/[email protected]","Apache-2.0","","https://github.com/AssemblyScript/assemblyscript"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Nicolò Ribaudo and other contributors","https://github.com/babel/babel-polyfills"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Nicolò Ribaudo and other contributors","https://github.com/babel/babel-polyfills"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (C) 2012-2014 by various contributors (see AUTHORS)","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel-plugin-proposal-private-property-in-object"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-bigint"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-dynamic-import"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-export-namespace-from"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-json-strings"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-nullish-coalescing-operator"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-catch-binding"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-chaining"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2020 Babel","https://github.com/babel/preset-modules"
"@babel/[email protected]","MIT","Copyright (c) 2020 Babel","https://github.com/babel/preset-modules"
"@babel/[email protected]","MIT","Copyright 2014-2020 Benjamin Tan <https://ofcr.se/>","https://github.com/bnjmnt4n/regjsgen"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@babel/[email protected]","MIT","Copyright (c) 2014-present Sebastian McKenzie and other contributors","https://github.com/babel/babel"
"@bcherny/[email protected]","MIT","Copyright (c) 2015 James Messinger","https://github.com/APIDevTools/json-schema-ref-parser"
"@bcoe/[email protected]","MIT","Copyright © 2015-2017 Charles Samborski","https://github.com/demurgos/v8-coverage"
"@commitlint/[email protected]","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
"@commitlint/[email protected]","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
"@commitlint/[email protected]","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
"@commitlint/[email protected]","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
"@commitlint/[email protected]","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
"@commitlint/[email protected]","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
"@commitlint/[email protected]","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
"@commitlint/[email protected]","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
"@commitlint/[email protected]","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
"@commitlint/[email protected]","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
"@commitlint/[email protected]","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
"@commitlint/[email protected]","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
"@commitlint/[email protected]","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
"@commitlint/[email protected]","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
"@commitlint/[email protected]","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
"@commitlint/[email protected]","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
"@commitlint/[email protected]","MIT","Copyright (c) 2016 - present Mario Nebl","https://github.com/conventional-changelog/commitlint"
"@compodoc/[email protected]","MIT","Copyright (c) 2016 Vincent Ogloblinsky","https://github.com/compodoc/compodoc"
"@compodoc/[email protected]","MIT","Copyright (c) 2012 Tapio Vierros","https://github.com/compodoc/live-server"
"@compodoc/[email protected]","MIT","","https://github.com/compodoc/ngd"
"@compodoc/[email protected]","MIT","","https://github.com/compodoc/ngd"
"@cspell/[email protected]","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
"@cspell/[email protected]","MIT","Copyright (c) 2019 cspell","https://github.com/streetsidesoftware/cspell"
"@cspell/[email protected]","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
"@cspell/[email protected]","MIT","Copyright (c) 2023 Jason Dent","https://github.com/streetsidesoftware/cspell"
"@cspell/[email protected]","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
"@cspell/[email protected]","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2019 Daniel Schroeder <[email protected]>. Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2020 Shane Fontaine <[email protected]>. Copyright (c) 2023 Street Side Software","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2022 Street Side Software <[email protected]>","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Renaud Canarduck <[email protected]>. Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2022 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2018 Todoroki (Ryo Konishi) <[email protected]>. Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","Custom: https://github.com/streetsidesoftware/cspell","","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2022 Street Side Software <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2022 Street Side Software <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2022 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2023 Street Side Software <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2023 Street Side Software <[email protected]>","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2022 Street Side Software <[email protected]>","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2023 Street Side Software <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>, Matthew Toohey <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Alexander Andreev <[email protected]>. Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2022 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2022 Street Side Software <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2023 Street Side Software <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dict"
"@cspell/[email protected]","MIT","Copyright (c) 2017-2020 Jason Dent <[email protected]>","https://github.com/streetsidesoftware/cspell-dicts"
"@cspell/[email protected]","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
"@cspell/[email protected]","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
"@cspell/[email protected]","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
"@cspotcode/[email protected]","MIT","Copyright (c) 2014 Evan Wallace","https://github.com/cspotcode/node-source-map-support"
"@csstools/[email protected]","MIT","Copyright 2022 Romain Menke, Antonio Laguna <[email protected]>","https://github.com/csstools/postcss-plugins"
"@csstools/[email protected]","MIT","Copyright 2022 Romain Menke, Antonio Laguna <[email protected]>","https://github.com/csstools/postcss-plugins"
"@csstools/[email protected]","MIT","Copyright 2022 Romain Menke, Antonio Laguna <[email protected]>","https://github.com/csstools/postcss-plugins"
"@csstools/[email protected]","MIT-0","Copyright © CSSTools Contributors","https://github.com/csstools/postcss-plugins"
"@discoveryjs/[email protected]","MIT","Copyright (c) 2020 Roman Dvornov <[email protected]>","https://github.com/discoveryjs/json-ext"
"@es-joy/[email protected]","MIT","Copyright JS Foundation and other contributors, https://js.foundation. Copyright (c) 2021 Brett Zamir","https://github.com/es-joy/jsdoccomment"
"@esbuild/[email protected]","MIT","","https://github.com/evanw/esbuild"
"@eslint-community/[email protected]","MIT","Copyright (c) 2018 Toru Nagashima","https://github.com/eslint-community/eslint-utils"
"@eslint-community/[email protected]","MIT","Copyright (c) 2018 Toru Nagashima","https://github.com/eslint-community/regexpp"
"@eslint/[email protected]","MIT","Copyright OpenJS Foundation and other contributors, <www.openjsf.org>","https://github.com/eslint/eslintrc"
"@eslint/[email protected]","MIT","Copyright OpenJS Foundation and other contributors, <www.openjsf.org>","https://github.com/eslint/eslint"
"@foliojs-fork/[email protected]","MIT","","https://github.com/foliojs-fork/fontkit"
"@foliojs-fork/[email protected]","MIT","Copyright (c) 2014-present Devon Govett","https://github.com/foliojs-fork/linebreaker"
"@foliojs-fork/[email protected]","MIT","","https://github.com/foliojs-fork/pdfkit"
"@foliojs-fork/[email protected]","MIT","Copyright (c) 2015-present Devon Govett","https://github.com/foliojs-fork/restructure"
"@fortawesome/[email protected]","MIT","Copyright (c) 2018 Fonticons, Inc. and contributors","https://github.com/FortAwesome/angular-fontawesome"
"@fortawesome/[email protected]","MIT","Copyright (c) 2024 Fonticons, Inc. (https://fontawesome.com). with Reserved Font Name: "Font Awesome".*","https://github.com/FortAwesome/Font-Awesome"
"@fortawesome/[email protected]","MIT","Copyright (c) 2024 Fonticons, Inc. (https://fontawesome.com). with Reserved Font Name: "Font Awesome".*","https://github.com/FortAwesome/Font-Awesome"
"@fortawesome/[email protected]","(CC-BY-4.0 AND MIT)","Copyright (c) 2024 Fonticons, Inc. (https://fontawesome.com). with Reserved Font Name: "Font Awesome".*","https://github.com/FortAwesome/Font-Awesome"
"@gar/[email protected]","MIT","Copyright © 2020-2022 Michael Garvin","https://github.com/wraithgar/gar-promisify"
"@googlemaps/[email protected]","Apache-2.0","","https://github.com/googlemaps/js-api-loader"
"@humanwhocodes/[email protected]","Apache-2.0","","https://github.com/humanwhocodes/config-array"
"@humanwhocodes/[email protected]","Apache-2.0","","https://github.com/humanwhocodes/module-importer"
"@humanwhocodes/[email protected]","BSD-3-Clause","Copyright (c) 2019, Human Who Codes. All rights reserved.","https://github.com/humanwhocodes/object-schema"
"@hutson/[email protected]","Apache-2.0","","https://github.com/hyper-expanse/parse-repository-url"
"@isaacs/[email protected]","ISC","Copyright (c) 2015, Contributors","https://github.com/yargs/cliui"
"@istanbuljs/[email protected]","ISC","Copyright (c) 2019, Contributors","https://github.com/istanbuljs/load-nyc-config"
"@istanbuljs/[email protected]","MIT","Copyright (c) 2019 CFWare, LLC","https://github.com/istanbuljs/schema"
"@jest/[email protected]","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"@jest/[email protected]","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"@jest/[email protected]","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"@jest/[email protected]","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"@jest/[email protected]","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"@jest/[email protected]","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"@jest/[email protected]","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"@jest/[email protected]","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"@jest/[email protected]","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"@jest/[email protected]","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"@jest/[email protected]","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"@jest/[email protected]","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"@jest/[email protected]","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"@jest/[email protected]","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"@jridgewell/[email protected]","MIT","Copyright 2022 Justin Ridgewell <[email protected]>","https://github.com/jridgewell/gen-mapping"
"@jridgewell/[email protected]","MIT","Copyright 2019 Justin Ridgewell <[email protected]>","https://github.com/jridgewell/resolve-uri"
"@jridgewell/[email protected]","MIT","Copyright 2022 Justin Ridgewell <[email protected]>","https://github.com/jridgewell/set-array"
"@jridgewell/[email protected]","MIT","Copyright 2019 Justin Ridgewell <[email protected]>","https://github.com/jridgewell/source-map"
"@jridgewell/[email protected]","MIT","Copyright (c) 2015 Rich Harris","https://github.com/jridgewell/sourcemap-codec"
"@jridgewell/[email protected]","MIT","Copyright 2022 Justin Ridgewell <[email protected]>","https://github.com/jridgewell/trace-mapping"
"@jridgewell/[email protected]","MIT","Copyright 2022 Justin Ridgewell <[email protected]>","https://github.com/jridgewell/trace-mapping"
"@jsdevtools/[email protected]","MIT","Copyright (c) 2015 James Messinger","https://github.com/JS-DevTools/ono"
"@leichtgewicht/[email protected]","MIT","Copyright (c) 2021 Martin Heidegger","https://github.com/martinheidegger/ip-codec"
"@ng-bootstrap/[email protected]","MIT","Copyright (c) 2015-2018 Angular ng-bootstrap team","https://github.com/ng-bootstrap/ng-bootstrap"
"@ngrx/[email protected]","MIT","Copyright (c) 2017-2023 Brandon Roberts, Mike Ryan, Victor Savkin, Rob Wormald","https://github.com/ngrx/platform"
"@ngrx/[email protected]","MIT","Copyright (c) 2017-2023 Brandon Roberts, Mike Ryan, Victor Savkin, Rob Wormald","https://github.com/ngrx/platform"
"@ngrx/[email protected]","MIT","Copyright (c) 2017-2023 Brandon Roberts, Mike Ryan, Victor Savkin, Rob Wormald","https://github.com/ngrx/platform"
"@ngrx/[email protected]","MIT","Copyright (c) 2017-2023 Brandon Roberts, Mike Ryan, Victor Savkin, Rob Wormald","https://github.com/ngrx/platform"
"@ngrx/[email protected]","MIT","Copyright (c) 2017-2023 Brandon Roberts, Mike Ryan, Victor Savkin, Rob Wormald","https://github.com/ngrx/platform"
"@ngrx/[email protected]","MIT","Copyright (c) 2017-2023 Brandon Roberts, Mike Ryan, Victor Savkin, Rob Wormald","https://github.com/ngrx/platform"
"@ngtools/[email protected]","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
"@nguniversal/[email protected]","MIT","","https://github.com/angular/universal"
"@nguniversal/[email protected]","MIT","","https://github.com/angular/universal"
"@nguniversal/[email protected]","MIT","","https://github.com/angular/universal"
"@ngx-formly/[email protected]","MIT","","https://github.com/ngx-formly/ngx-formly"
"@ngx-translate/[email protected]","Custom: LICENSE","",""
"@nodelib/[email protected]","MIT","Copyright (c) Denis Malinochkin","https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.scandir"
"@nodelib/[email protected]","MIT","Copyright (c) Denis Malinochkin","https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.stat"
"@nodelib/[email protected]","MIT","Copyright (c) Denis Malinochkin","https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.walk"
"@npmcli/[email protected]","ISC","Copyright npm, Inc.","https://github.com/npm/fs"
"@npmcli/[email protected]","ISC","Copyright npm, Inc.","https://github.com/npm/fs"
"@npmcli/[email protected]","ISC","Copyright (c) npm, Inc.","https://github.com/npm/git"
"@npmcli/[email protected]","ISC","Copyright (c) npm, Inc.","https://github.com/npm/installed-package-contents"
"@npmcli/[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com). Copyright (c) npm, Inc.","https://github.com/npm/move-file"
"@npmcli/[email protected]","ISC","","https://github.com/npm/node-gyp"
"@npmcli/[email protected]","ISC","Copyright (c) npm, Inc.","https://github.com/npm/promise-spawn"
"@npmcli/[email protected]","ISC","Copyright (c) npm, Inc.","https://github.com/npm/run-script"
"@nrwl/[email protected]","MIT","Copyright (c) 2017-2023 Narwhal Technologies Inc.","https://github.com/nrwl/nx"
"@nrwl/[email protected]","MIT","Copyright (c) 2017-2023 Narwhal Technologies Inc.","https://github.com/nrwl/nx"
"@nx/[email protected]","MIT","Copyright (c) 2017-2023 Narwhal Technologies Inc.","https://github.com/nrwl/nx"
"@nx/[email protected]","MIT","Copyright (c) 2017-2023 Narwhal Technologies Inc.","https://github.com/nrwl/nx"
"@opentelemetry/[email protected]","Apache-2.0","","https://github.com/open-telemetry/opentelemetry-js"
"@parcel/[email protected]","MIT","Copyright (c) 2017-present Devon Govett","https://github.com/parcel-bundler/watcher"
"@phenomnomnominal/[email protected]","MIT","Copyright (c) 2018 Craig Spence","https://github.com/phenomnomnominal/tsquery"
"@phenomnomnominal/[email protected]","MIT","Copyright (c) 2023 Craig Spence","https://github.com/phenomnomnominal/tsquery"
"@pkgjs/[email protected]","MIT","","https://github.com/pkgjs/parseargs"
"@pm2/[email protected]","AGPL-3.0","",""
"@pm2/[email protected]","Apache*","","https://github.com/keymetrics/pm2-io-apm"
"@pm2/[email protected]","Apache*","","https://github.com/keymetrics/km.js"
"@pm2/[email protected]","MIT","",""
"@rx-angular/[email protected]","MIT","","https://github.com/rx-angular/rx-angular"
"@schematics/[email protected]","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
"@schematics/[email protected]","MIT","Copyright (c) 2017 Google, Inc.","https://github.com/angular/angular-cli"
"@sentry-internal/[email protected]","MIT","Copyright (c) 2023 Sentry (https://sentry.io) and individual contributors. All rights reserved.","https://github.com/getsentry/sentry-javascript"
"@sentry-internal/[email protected]","MIT","Copyright (c) 2020 Sentry (https://sentry.io) and individual contributors. All rights reserved.","https://github.com/getsentry/sentry-javascript"
"@sentry/[email protected]","MIT","Copyright (c) 2019 Sentry (https://sentry.io) and individual contributors. All rights reserved.","https://github.com/getsentry/sentry-javascript"
"@sentry/[email protected]","MIT","Copyright (c) 2019 Sentry (https://sentry.io) and individual contributors. All rights reserved.","https://github.com/getsentry/sentry-javascript"
"@sentry/[email protected]","MIT","Copyright (c) 2022 Sentry (https://sentry.io) and individual contributors. All rights reserved.","https://github.com/getsentry/sentry-javascript"
"@sentry/[email protected]","MIT","Copyright (c) 2019 Sentry (https://sentry.io) and individual contributors. All rights reserved.","https://github.com/getsentry/sentry-javascript"
"@sentry/[email protected]","MIT","Copyright (c) 2019 Sentry (https://sentry.io) and individual contributors. All rights reserved.","https://github.com/getsentry/sentry-javascript"
"@sigstore/[email protected]","Apache-2.0","","https://github.com/sigstore/sigstore-js"
"@sigstore/[email protected]","Apache-2.0","","https://github.com/sigstore/protobuf-specs"
"@sigstore/[email protected]","Apache-2.0","","https://github.com/sigstore/sigstore-js"
"@sigstore/[email protected]","Apache-2.0","","https://github.com/sigstore/sigstore-js"
"@sinclair/[email protected]","MIT","Copyright (c) 2017-2023 Haydn Paterson (sinclair) <[email protected]>","https://github.com/sinclairzx81/typebox"
"@sinonjs/[email protected]","BSD-3-Clause","Copyright (c) 2018, Sinon.JS. All rights reserved.","https://github.com/sinonjs/commons"
"@sinonjs/[email protected]","BSD-3-Clause","Copyright (c) 2010-2014, Christian Johansen, [email protected]. All rights reserved.","https://github.com/sinonjs/fake-timers"
"@socket.io/[email protected]","MIT","Copyright (c) 2014 Component contributors <[email protected]>","https://github.com/socketio/emitter"
"@thednp/[email protected]","MIT","Copyright (c) 2021 thednp","https://github.com/thednp/event-listener"
"@thednp/[email protected]","MIT","Copyright (c) 2015 thednp","https://github.com/thednp/shorty"
"@tootallnate/[email protected]","MIT","","https://github.com/TooTallNate/once"
"@tootallnate/[email protected]","MIT","Copyright (c) 2020 Nathan Rajlich","https://github.com/TooTallNate/once"
"@tootallnate/[email protected]","MIT","","https://github.com/justjake/quickjs-emscripten"
"@ts-morph/[email protected]","MIT","Copyright (c) 2017-2023 David Sherret","https://github.com/dsherret/ts-morph"
"@ts-morph/[email protected]","MIT","Copyright (c) 2017-2023 David Sherret","https://github.com/dsherret/ts-morph"
"@ts-morph/[email protected]","MIT","Copyright (c) 2017-2023 David Sherret","https://github.com/dsherret/ts-morph"
"@tsconfig/[email protected]","MIT","Copyright (c) Microsoft Corporation.","https://github.com/tsconfig/bases"
"@tsconfig/[email protected]","MIT","Copyright (c) Microsoft Corporation.","https://github.com/tsconfig/bases"
"@tsconfig/[email protected]","MIT","Copyright (c) Microsoft Corporation.","https://github.com/tsconfig/bases"
"@tsconfig/[email protected]","MIT","Copyright (c) Microsoft Corporation.","https://github.com/tsconfig/bases"
"@tufjs/[email protected]","MIT","Copyright (c) 2022 GitHub and the TUF Contributors","https://github.com/theupdateframework/tuf-js"
"@tufjs/[email protected]","MIT","Copyright (c) 2022 GitHub and the TUF Contributors","https://github.com/theupdateframework/tuf-js"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@types/[email protected]","MIT","","https://github.com/DefinitelyTyped/DefinitelyTyped"
"@typescript-eslint/[email protected]","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
"@typescript-eslint/[email protected]","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
"@typescript-eslint/[email protected]","BSD-2-Clause","","https://github.com/typescript-eslint/typescript-eslint"
"@typescript-eslint/[email protected]","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
"@typescript-eslint/[email protected]","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
"@typescript-eslint/[email protected]","MIT","Copyright (c) 2021 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
"@typescript-eslint/[email protected]","MIT","Copyright (c) 2021 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
"@typescript-eslint/[email protected]","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
"@typescript-eslint/[email protected]","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
"@typescript-eslint/[email protected]","BSD-2-Clause","","https://github.com/typescript-eslint/typescript-eslint"
"@typescript-eslint/[email protected]","BSD-2-Clause","","https://github.com/typescript-eslint/typescript-eslint"
"@typescript-eslint/[email protected]","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
"@typescript-eslint/[email protected]","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
"@typescript-eslint/[email protected]","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
"@typescript-eslint/[email protected]","MIT","Copyright (c) 2019 typescript-eslint and other contributors","https://github.com/typescript-eslint/typescript-eslint"
"@ungap/[email protected]","ISC","Copyright (c) 2021, Andrea Giammarchi, @WebReflection","https://github.com/ungap/structured-clone"
"@vitejs/[email protected]","MIT","Copyright (c) 2019-present, Yuxi (Evan) You and contributors","https://github.com/vitejs/vite-plugin-basic-ssl"
"@webassemblyjs/[email protected]","MIT","","https://github.com/xtuc/webassemblyjs"
"@webassemblyjs/[email protected]","MIT","Copyright (c) 2017 Mauro Bringolf","https://github.com/xtuc/webassemblyjs"
"@webassemblyjs/[email protected]","MIT","","https://github.com/xtuc/webassemblyjs"
"@webassemblyjs/[email protected]","MIT","","https://github.com/xtuc/webassemblyjs"
"@webassemblyjs/[email protected]","MIT","","https://github.com/xtuc/webassemblyjs"
"@webassemblyjs/[email protected]","MIT","","https://github.com/xtuc/webassemblyjs"
"@webassemblyjs/[email protected]","MIT","","https://github.com/xtuc/webassemblyjs"
"@webassemblyjs/[email protected]","MIT","","https://github.com/xtuc/webassemblyjs"
"@webassemblyjs/[email protected]","Apache-2.0","Copyright 2012 The Obvious Corporation.. http://obvious.com/","https://github.com/xtuc/webassemblyjs"
"@webassemblyjs/[email protected]","MIT","","https://github.com/xtuc/webassemblyjs"
"@webassemblyjs/[email protected]","MIT","","https://github.com/xtuc/webassemblyjs"
"@webassemblyjs/[email protected]","MIT","","https://github.com/xtuc/webassemblyjs"
"@webassemblyjs/[email protected]","MIT","","https://github.com/xtuc/webassemblyjs"
"@webassemblyjs/[email protected]","MIT","","https://github.com/xtuc/webassemblyjs"
"@webassemblyjs/[email protected]","MIT","","https://github.com/xtuc/webassemblyjs"
"@wessberg/[email protected]","MIT","Copyright © 2020 [Frederik Wessberg](mailto:[email protected]) ([@FredWessberg](https://twitter.com/FredWessberg)) ([Website](https://github.com/wessberg))","https://github.com/wessberg/ts-evaluator"
"@xtuc/[email protected]","BSD-3-Clause","Copyright (c) 2008, Fair Oaks Labs, Inc.. All rights reserved.","https://github.com/feross/ieee754"
"@xtuc/[email protected]","Apache-2.0","","https://github.com/dcodeIO/long.js"
"@yarnpkg/[email protected]","BSD-2-Clause","","https://github.com/yarnpkg/yarn/blob/master/packages/lockfile"
"@yarnpkg/[email protected]","BSD-2-Clause","","https://github.com/yarnpkg/berry"
"@zkochan/[email protected]","MIT","Copyright (C) 2011-2015 by Vitaly Puzrin","https://github.com/nodeca/js-yaml"
"[email protected]","(MIT OR Apache-2.0)","Copyright (c) 2011 Dominic Tarr","https://github.com/dominictarr/JSONStream"
"[email protected]","BSD-3-Clause","Copyright © 2019 W3C and Jeff Carpenter \<[email protected]\>","https://github.com/jsdom/abab"
"[email protected]","ISC","Copyright (c) Isaac Z. Schlueter and Contributors*","https://github.com/isaacs/abbrev-js"
"[email protected]","MIT","Copyright (c) 2014 Jonathan Ong <[email protected]>. Copyright (c) 2015 Douglas Christopher Wilson <[email protected]>","https://github.com/jshttp/accepts"
"[email protected]","MIT","Copyright (c) 2014 Forbes Lindesay","https://github.com/ForbesLindesay/acorn-globals"
"[email protected]","MIT","Copyright (c) 2014 Forbes Lindesay","https://github.com/ForbesLindesay/acorn-globals"
"[email protected]","MIT","","https://github.com/xtuc/acorn-import-assertions"
"[email protected]","MIT","Copyright (C) 2012-2017 by Ingvar Stepanyan","https://github.com/acornjs/acorn-jsx"
"[email protected]","MIT","Copyright (C) 2012-2018 by various contributors (see AUTHORS)","https://github.com/acornjs/acorn"
"[email protected]","MIT","Copyright (C) 2012-2020 by various contributors (see AUTHORS)","https://github.com/acornjs/acorn"
"[email protected]","MIT","Copyright (C) 2012-2018 by various contributors (see AUTHORS)","https://github.com/acornjs/acorn"
"[email protected]","MIT","Copyright (C) 2012-2022 by various contributors (see AUTHORS)","https://github.com/acornjs/acorn"
"[email protected]","MIT","","https://github.com/wilsonjackson/add-stream"
"[email protected]","MIT","Copyright (c) 2019 Ben Holloway","https://github.com/bholloway/adjust-sourcemap-loader"
"[email protected]","MIT","Copyright (c) 2013 Nathan Rajlich <[email protected]>","https://github.com/TooTallNate/node-agent-base"
"[email protected]","MIT","Copyright (c) 2013 Nathan Rajlich <[email protected]>","https://github.com/TooTallNate/proxy-agents"
"[email protected]","MIT","Copyright(c) node-modules and other contributors.. Copyright(c) 2012 - 2015 fengmk2 <[email protected]>","https://github.com/node-modules/agentkeepalive"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/aggregate-error"
"[email protected]","MIT","Copyright (c) 2020 Evgeny Poberezkin","https://github.com/ajv-validator/ajv-formats"
"[email protected]","MIT","Copyright (c) 2016 Evgeny Poberezkin","https://github.com/epoberezkin/ajv-keywords"
"[email protected]","MIT","Copyright (c) 2016 Evgeny Poberezkin","https://github.com/epoberezkin/ajv-keywords"
"[email protected]","MIT","Copyright (c) 2015-2017 Evgeny Poberezkin","https://github.com/ajv-validator/ajv"
"[email protected]","MIT","Copyright (c) 2015-2021 Evgeny Poberezkin","https://github.com/ajv-validator/ajv"
"[email protected]","MIT","Copyright (c) 2015-2021 Evgeny Poberezkin","https://github.com/ajv-validator/ajv"
"[email protected]","MIT","","https://github.com/visionmedia/node-amp-message"
"[email protected]","MIT","","https://github.com/visionmedia/node-amp"
"[email protected]","MIT","Copyright (c) 2017 Manfred Steyer","https://github.com/manfredsteyer/angular-oauth2-oidc"
"[email protected]","MIT","Copyright (c) 2021 angulartics","https://github.com/angulartics/angulartics2"
"[email protected]","MIT","Copyright (c) 2015-present, Brian Woodward.","https://github.com/doowb/ansi-colors"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/ansi-escapes"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/ansi-escapes"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/ansi-escapes"
"[email protected]","Apache-2.0","","https://github.com/mahdyar/ansi-html-community"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/chalk/ansi-regex"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/chalk/ansi-regex"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/chalk/ansi-regex"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/chalk/ansi-regex"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/chalk/ansi-styles"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/chalk/ansi-styles"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/chalk/ansi-styles"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/chalk/ansi-styles"
"[email protected]","MIT","Copyright (C) 2014-2016 Kevin Beaty","https://github.com/kevinbeaty/any-promise"
"[email protected]","ISC","Copyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com)","https://github.com/micromatch/anymatch"
"[email protected]","MIT","Copyright (c) Gevorg Harutyunyan","https://github.com/gevorg/apache-crypt"
"[email protected]","MIT","Copyright (c) Gevorg Harutyunyan","https://github.com/gevorg/apache-md5"
"[email protected]","ISC","Copyright (c) 2015, Rebecca Turner <[email protected]>","https://github.com/iarna/aproba"
"[email protected]","MIT","","https://github.com/JoshuaKGoldberg/are-docs-informative"
"[email protected]","ISC","Copyright npm, Inc.","https://github.com/npm/are-we-there-yet"
"[email protected]","MIT","Copyright (c) 2017-2019 Zeit, Inc.","https://github.com/zeit/arg"
"[email protected]","MIT","Copyright (C) 2012 by Vitaly Puzrin","https://github.com/nodeca/argparse"
"[email protected]","Python-2.0","Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,. The Netherlands. All rights reserved.","https://github.com/nodeca/argparse"
"[email protected]","Apache-2.0","Copyright 2020 A11yance","https://github.com/A11yance/aria-query"
"[email protected]","MIT","Copyright (c) 2023 Inspect JS","https://github.com/inspect-js/array-buffer-byte-length"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/array-differ"
"[email protected]","MIT","Copyright (c) 2014 Blake Embrey ([email protected])","https://github.com/blakeembrey/array-flatten"
"[email protected]","MIT","","https://github.com/stevemao/array-ify"
"[email protected]","MIT","Copyright (c) 2015 Marco Ziccardi","https://github.com/kaelzhang/node-array-timsort"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/array-union"
"[email protected]","MIT","Copyright (c) 2023 ECMAScript Shims","https://github.com/es-shims/ArrayBuffer.prototype.slice"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/arrify"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/arrify"
"[email protected]","MIT","Copyright (c) 2013 Ben Newman <[email protected]>","https://github.com/benjamn/ast-types"
"[email protected]","MIT","Copyright (c) Kevin Mårtensson <[email protected]> (github.com/kevva)","https://github.com/kevva/astral-regex"
"[email protected]","MIT","","https://github.com/jb55/async-each-series"
"[email protected]","MIT","Copyright (c) 2010-2018 Caolan McMahon","https://github.com/caolan/async"
"[email protected]","MIT","Copyright (c) 2010-2018 Caolan McMahon","https://github.com/caolan/async"
"[email protected]","MIT","Copyright (c) 2016 Alex Indigo","https://github.com/alexindigo/asynckit"
"[email protected]","MIT","Copyright 2013 Andrey Sitnik <[email protected]>","https://github.com/postcss/autoprefixer"
"[email protected]","MIT","Copyright (c) 2020 Inspect JS","https://github.com/inspect-js/available-typed-arrays"
"[email protected]","MIT","Copyright (c) 2014-present Matt Zabriskie","https://github.com/axios/axios"
"[email protected]","MIT","","https://github.com/axios/axios"
"[email protected]","Apache-2.0","Copyright 2020 A11yance","https://github.com/A11yance/axobject-query"
"[email protected]","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"[email protected]","MIT","Copyright (c) 2014-2019 Luís Couto <[email protected]>","https://github.com/babel/babel-loader"
"[email protected]","BSD-3-Clause","Copyright (c) 2016, Istanbul Code Coverage. All rights reserved.","https://github.com/istanbuljs/babel-plugin-istanbul"
"[email protected]","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"[email protected]","MIT","Copyright (c) 2014-present Nicolò Ribaudo and other contributors","https://github.com/babel/babel-polyfills"
"[email protected]","MIT","Copyright (c) 2014-present Nicolò Ribaudo and other contributors","https://github.com/babel/babel-polyfills"
"[email protected]","MIT","Copyright (c) 2014-present Nicolò Ribaudo and other contributors","https://github.com/babel/babel-polyfills"
"[email protected]","MIT","Copyright (c) 2014-present Nicolò Ribaudo and other contributors","https://github.com/babel/babel-polyfills"
"[email protected]","MIT","Copyright (c) 2014-present Nicolò Ribaudo and other contributors","https://github.com/babel/babel-polyfills"
"[email protected]","MIT","Copyright (c) 2020 Nicolò Ribaudo and other contributors","https://github.com/nicolo-ribaudo/babel-preset-current-node-syntax"
"[email protected]","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"[email protected]","MIT","Copyright (c) 2013 Julian Gruber <[email protected]>","https://github.com/juliangruber/balanced-match"
"[email protected]","MIT","Copyright (c) 2013 Julian Gruber <[email protected]>","https://github.com/juliangruber/balanced-match"
"[email protected]","MIT","Copyright (c) 2014 Jameson Little","https://github.com/beatgammit/base64-js"
"[email protected]","MIT","Copyright (c) 2014 Jameson Little","https://github.com/beatgammit/base64-js"
"[email protected]","MIT","Copyright (c) 2012-2016 Kristian Faeldt <[email protected]>","https://github.com/faeldt/base64id"
"[email protected]","MIT","Copyright (c) 2013 TJ Holowaychuk. Copyright (c) 2014 Jonathan Ong <[email protected]>. Copyright (c) 2015-2016 Douglas Christopher Wilson <[email protected]>","https://github.com/jshttp/basic-auth"
"[email protected]","MIT","Copyright (c) 2019 Patrick Juchli","https://github.com/patrickjuchli/basic-ftp"
"[email protected]","MIT","Copyright (c) 2013 TJ Holowaychuk <[email protected]>","https://github.com/visionmedia/batch"
"[email protected]","MIT","","https://github.com/dcodeIO/bcrypt.js"
"[email protected]","Apache-2.0","","https://github.com/mikeal/bent"
"[email protected]","MIT","","https://github.com/jeemok/better-npm-audit"
"[email protected]","MIT","Copyright (c) 2018 Michael Mclaughlin","https://github.com/MikeMcl/big.js"
"[email protected]","MIT","Copyright (c) 2019 Sindre Sorhus <[email protected]> (https://sindresorhus.com), Paul Miller (https://paulmillr.com)","https://github.com/sindresorhus/binary-extensions"
"[email protected]","MIT","Copyright (C) 2011 by Vadim Graboys","https://github.com/vadimg/js_bintrees"
"[email protected]","MIT","Copyright (c) 2013-2019 bl contributors. ----------------------------------","https://github.com/rvagg/bl"
"[email protected]","MIT","Copyright (c) 2013-2015, Christopher Jeffrey and contributors. https://github.com/chjj/","https://github.com/chjj/blessed"
"[email protected]","MIT","Copyright (c) 2014 Tim Caswell","https://github.com/creationix/bodec"
"[email protected]","MIT","Copyright (c) 2014 Jonathan Ong <[email protected]>. Copyright (c) 2014-2015 Douglas Christopher Wilson <[email protected]>","https://github.com/expressjs/body-parser"
"[email protected]","MIT","Copyright (https://github.com/onlxltd/bonjour-service) (c) 2021 ON LX Limited","https://github.com/onlxltd/bonjour-service"
"[email protected]","ISC","","https://github.com/fb55/boolbase"
"[email protected]","MIT","Copyright (c) 2015 thednp","https://github.com/thednp/bootstrap.native"
"[email protected]","MIT","Copyright (c) 2011-2022 Twitter, Inc.. Copyright (c) 2011-2022 The Bootstrap Authors","https://github.com/twbs/bootstrap"
"[email protected]","MIT","Copyright (c) 2013 Julian Gruber <[email protected]>","https://github.com/juliangruber/brace-expansion"
"[email protected]","MIT","Copyright (c) 2013 Julian Gruber <[email protected]>","https://github.com/juliangruber/brace-expansion"
"[email protected]","MIT","Copyright (c) 2014-present, Jon Schlinkert.","https://github.com/micromatch/braces"
"[email protected]","MIT","","https://github.com/devongovett/brotli.js"
"[email protected]","BSD-2-Clause","Copyright 2014 kumavis","https://github.com/kumavis/browser-process-hrtime"
"[email protected]","ISC","","https://github.com/shakyshane/browser-sync-client"
"[email protected]","Apache-2.0","","https://github.com/BrowserSync/UI"
"[email protected]","Apache-2.0","","https://github.com/BrowserSync/browser-sync"
"[email protected]","MIT","Copyright 2014 Andrey Sitnik <[email protected]> and other contributors","https://github.com/browserslist/browserslist"
"[email protected]","MIT","Copyright (c) 2018 Huafu Gandon","https://github.com/huafu/bs-logger"
"[email protected]","ISC","","https://github.com/BrowserSync/recipes"
"[email protected]","Apache-2.0","","https://github.com/facebook/watchman"
"[email protected]","MIT","Copyright (c) 2016, 2018 Linus Unnebäck","https://github.com/LinusU/buffer-from"
"[email protected]","MIT","Copyright (c) Feross Aboukhadijeh, and other contributors.","https://github.com/feross/buffer"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/builtin-modules"
"[email protected]","MIT","Copyright (c) 2015 Julian Gruber <[email protected]>","https://github.com/juliangruber/builtins"
"[email protected]","MIT","Copyright (c) 2012-2014 TJ Holowaychuk <[email protected]>. Copyright (c) 2015 Jed Watson <[email protected]>","https://github.com/visionmedia/bytes.js"
"[email protected]","MIT","Copyright (c) 2012-2014 TJ Holowaychuk <[email protected]>. Copyright (c) 2015 Jed Watson <[email protected]>","https://github.com/visionmedia/bytes.js"
"[email protected]","(Apache-2.0 AND MIT)","","https://github.com/mikeal/bytesish"
"[email protected]","ISC","Copyright (c) npm, Inc.","https://github.com/npm/cacache"
"[email protected]","ISC","Copyright (c) npm, Inc.","https://github.com/npm/cacache"
"[email protected]","MIT","Copyright (c) 2020 Jordan Harband","https://github.com/ljharb/call-bind"
"[email protected]","MIT","Copyright (c) 2015 Eric McCarthy","https://github.com/limulus/call-me-maybe"
"[email protected]","MIT*","",""
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/callsites"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/camelcase-keys"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/camelcase"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/camelcase"
"[email protected]","CC-BY-4.0","","https://github.com/browserslist/caniuse-lite"
"[email protected]","Apache-2.0","","https://github.com/mikeal/caseless"
"[email protected]","MIT","Copyright (c) Josh Junon. Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/chalk/chalk-template"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/chalk/chalk"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/chalk/chalk"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/chalk/chalk"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/chalk/chalk"
"[email protected]","MIT","Copyright (c) 2019 Richie Bendall","https://github.com/Richienb/char-regex"
"[email protected]","MIT","Copyright (C) 2018 Dmitry Shirokov","https://github.com/runk/node-chardet"
"[email protected]","MIT*","","https://github.com/substack/node-charm"
"[email protected]","BSD-2-Clause","Copyright (c) Felix Böhm. All rights reserved.","https://github.com/cheeriojs/cheerio-select"
"[email protected]","MIT","Copyright (c) 2022 The Cheerio contributors","https://github.com/cheeriojs/cheerio"
"[email protected]","MIT","Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker","https://github.com/paulmillr/chokidar"
"[email protected]","ISC","Copyright (c) Isaac Z. Schlueter and Contributors","https://github.com/isaacs/chownr"
"[email protected]","MIT","Copyright (c) 2015 Joyent Inc. All rights reserved.","https://github.com/samccone/chrome-trace-event"
"[email protected]","MIT","Copyright (c) 2016 Thomas Watson Steen","https://github.com/watson/ci-info"
"[email protected]","MIT","Copyright (c) 2016 Thomas Watson Steen","https://github.com/watson/ci-info"
"[email protected]","MIT","Copyright (C) 2018-2020 Guy Bedford","https://github.com/nodejs/cjs-module-lexer"
"[email protected]","MIT","Copyright (c) Sam Verschueren <[email protected]> (github.com/SamVerschueren)","https://github.com/SamVerschueren/clean-regexp"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/clean-stack"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/clear-module"
"[email protected]","ISC","Copyright (c) 2012-2022, Mariusz Nowak, @medikoo, medikoo.com","https://github.com/medikoo/cli-color"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/cli-cursor"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/cli-cursor"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/cli-cursor"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/cli-spinners"
"[email protected]","MIT*","Copyright (c) 2011-2017 Automattic. Copyright (c) 2017 Keymetrics","https://github.com/Keymetrics/cli-table"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/cli-truncate"
"[email protected]","ISC","Copyright (c) 2015, Ilya Radchenko <[email protected]>","https://github.com/knownasilya/cli-width"
"[email protected]","ISC","Copyright (c) 2015, Ilya Radchenko <[email protected]>","https://github.com/knownasilya/cli-width"
"[email protected]","ISC","Copyright (c) 2015, Contributors","https://github.com/yargs/cliui"
"[email protected]","ISC","Copyright (c) 2015, Contributors","https://github.com/yargs/cliui"
"[email protected]","MIT","Copyright (c) 2014-2018, Jon Schlinkert.","https://github.com/jonschlinkert/clone-deep"
"[email protected]","MIT","Copyright © 2011-2015 Paul Vorbach <[email protected]>","https://github.com/pvorb/node-clone"
"[email protected]","MIT","Copyright (c) 2014 TJ Holowaychuk <[email protected]>","https://github.com/tj/co"
"[email protected]","MIT","Copyright (c) 2015-2022 David Sherret","https://github.com/dsherret/code-block-writer"
"[email protected]","MIT","Copyright (c) 2019 Simen Bekkhus","https://github.com/SimenB/collect-v8-coverage"
"[email protected]","MIT","Copyright (c) 2011-2016 Heather Arthur <[email protected]>","https://github.com/Qix-/color-convert"
"[email protected]","MIT","Copyright (c) 2011-2016 Heather Arthur <[email protected]>","https://github.com/Qix-/color-convert"
"[email protected]","MIT","","https://github.com/dfcreative/color-name"
"[email protected]","MIT","","https://github.com/colorjs/color-name"
"[email protected]","ISC","Copyright (c) Isaac Z. Schlueter and Contributors","https://github.com/isaacs/color-support"
"[email protected]","MIT","Copyright (c) 2020 Vlad Shilov [email protected]","https://github.com/omgovich/colord"
"[email protected]","MIT","Copyright © Jorge Bucaran <<https://jorgebucaran.com>>","https://github.com/jorgebucaran/colorette"
"[email protected]","MIT","","https://github.com/Marak/colors.js"
"[email protected]","MIT","Copyright (c) 2011 Debuggable Limited <[email protected]>","https://github.com/felixge/node-combined-stream"
"[email protected]","MIT","Copyright (c) 2011 TJ Holowaychuk <[email protected]>","https://github.com/tj/commander.js"
"[email protected]","MIT","Copyright (c) 2011 TJ Holowaychuk <[email protected]>","https://github.com/tj/commander.js"
"[email protected]","MIT","Copyright (c) 2011 TJ Holowaychuk <[email protected]>","https://github.com/tj/commander.js"
"[email protected]","MIT","Copyright (c) 2011 TJ Holowaychuk <[email protected]>","https://github.com/tj/commander.js"
"[email protected]","MIT","Copyright (c) 2011 TJ Holowaychuk <[email protected]>","https://github.com/tj/commander.js"
"[email protected]","MIT","Copyright (c) 2011 TJ Holowaychuk <[email protected]>","https://github.com/tj/commander.js"
"[email protected]","MIT","Copyright (c) 2013 kaelzhang <>, contributors. http://kael.me/","https://github.com/kaelzhang/node-comment-json"
"[email protected]","MIT","Copyright (c) 2014 Sergii Iavorskyi","https://github.com/yavorskiy/comment-parser"
"[email protected]","ISC","","https://github.com/novemberborn/common-path-prefix"
"[email protected]","MIT","Copyright © Declan de Wet","https://github.com/zspecza/common-tags"
"[email protected]","MIT","Copyright (c) 2015 Steve Mao","https://github.com/stevemao/compare-func"
"[email protected]","MIT","Copyright (c) 2013 Jonathan Ong <[email protected]>. Copyright (c) 2014 Jeremiah Senkpiel <[email protected]>. Copyright (c) 2015 Douglas Christopher Wilson <[email protected]>","https://github.com/jshttp/compressible"
"[email protected]","MIT","Copyright (c) 2014 Jonathan Ong <[email protected]>. Copyright (c) 2014-2015 Douglas Christopher Wilson <[email protected]>","https://github.com/expressjs/compression"
"[email protected]","MIT","","https://github.com/substack/node-concat-map"
"[email protected]","MIT","Copyright (c) 2012 Ben Ripkens http://bripkens.de","https://github.com/bripkens/connect-history-api-fallback"
"[email protected]","MIT","Copyright (c) 2022 Ben Blackmore and contributors","https://github.com/bripkens/connect-history-api-fallback"
"[email protected]","MIT","Copyright (c) 2010 Sencha Inc.. Copyright (c) 2011 LearnBoost. Copyright (c) 2011-2014 TJ Holowaychuk. Copyright (c) 2015 Douglas Christopher Wilson","https://github.com/senchalabs/connect"
"[email protected]","MIT","Copyright (c) 2010 Sencha Inc.. Copyright (c) 2011 LearnBoost. Copyright (c) 2011-2014 TJ Holowaychuk. Copyright (c) 2015 Douglas Christopher Wilson","https://github.com/senchalabs/connect"
"[email protected]","ISC","Copyright (c) 2014, Rebecca Turner <[email protected]>","https://github.com/iarna/console-control-strings"
"[email protected]","MIT","Copyright (c) 2014-2017 Douglas Christopher Wilson","https://github.com/jshttp/content-disposition"
"[email protected]","MIT","Copyright (c) 2015 Douglas Christopher Wilson","https://github.com/jshttp/content-type"
"[email protected]","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
"[email protected]","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
"[email protected]","MIT","Copyright (c) 2015 Steve Mao <[email protected]> (https://github.com/stevemao)","https://github.com/conventional-changelog/conventional-changelog"
"[email protected]","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
"[email protected]","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
"[email protected]","MIT","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
"[email protected]","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
"[email protected]","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
"[email protected]","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
"[email protected]","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
"[email protected]","ISC","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
"[email protected]","MIT","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
"[email protected]","MIT","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
"[email protected]","MIT","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
"[email protected]","MIT","Copyright (c) 2015 Steve Mao <[email protected]> (https://github.com/stevemao)","https://github.com/conventional-changelog/conventional-changelog"
"[email protected]","MIT","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
"[email protected]","MIT","Copyright 2013 Thorsten Lorenz. . All rights reserved.","https://github.com/thlorenz/convert-source-map"
"[email protected]","MIT","Copyright 2013 Thorsten Lorenz. . All rights reserved.","https://github.com/thlorenz/convert-source-map"
"[email protected]","MIT","Copyright (c) 2012 LearnBoost <[email protected]>","https://github.com/visionmedia/node-cookie-signature"
"[email protected]","MIT","Copyright (c) 2012-2014 Roman Shtylman <[email protected]>. Copyright (c) 2015 Douglas Christopher Wilson <[email protected]>","https://github.com/jshttp/cookie"
"[email protected]","MIT","Copyright (c) 2012-2014 Roman Shtylman <[email protected]>. Copyright (c) 2015 Douglas Christopher Wilson <[email protected]>","https://github.com/jshttp/cookie"
"[email protected]","MIT","Copyright (c) 2018 Luca Ban - Mesqueeb","https://github.com/mesqueeb/copy-anything"
"[email protected]","MIT","Copyright JS Foundation and other contributors","https://github.com/webpack-contrib/copy-webpack-plugin"
"[email protected]","MIT","Copyright (c) 2014-2024 Denis Pushkarev","https://github.com/zloirock/core-js"
"[email protected]","MIT","Copyright Node.js contributors. All rights reserved.","https://github.com/isaacs/core-util-is"
"[email protected]","MIT","Copyright (c) 2013 Troy Goode <[email protected]>","https://github.com/expressjs/cors"
"[email protected]","MIT","Copyright (c) 2021 Alex Miller <[email protected]>","https://github.com/Codex-/cosmiconfig-typescript-loader"
"[email protected]","MIT","Copyright (c) 2015 David Clark","https://github.com/cosmiconfig/cosmiconfig"
"[email protected]","MIT","Copyright (c) 2015 David Clark","https://github.com/cosmiconfig/cosmiconfig"
"[email protected]","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"[email protected]","MIT","Copyright (c) 2020","https://github.com/nuxt-contrib/create-require"
"[email protected]","Apache-2.0","","https://github.com/GoogleChromeLabs/critters"
"[email protected]","MIT","Copyright (c) 2015-2021 Hexagon <github.com/Hexagon>","https://github.com/hexagon/croner"
"[email protected]","MIT","Copyright (c) 2018 Made With MOXY Lda <[email protected]>","https://github.com/moxystudio/node-cross-spawn"
"[email protected]","MIT","Copyright (c) 2018 Made With MOXY Lda <[email protected]>","https://github.com/moxystudio/node-cross-spawn"
"[email protected]","MIT","Copyright (c) 2009-2013 Jeff Mott . Copyright (c) 2013-2016 Evan Vosberg","https://github.com/brix/crypto-js"
"[email protected]","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
"[email protected]","MIT","Copyright (c) 2022 Jason Dent","https://github.com/streetsidesoftware/cspell"
"[email protected]","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
"[email protected]","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
"[email protected]","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
"[email protected]","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
"[email protected]","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
"[email protected]","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
"[email protected]","MIT","Copyright (c) 2017 Jason Dent","https://github.com/streetsidesoftware/cspell"
"[email protected]","MIT","Copyright (c) Ivan Nikolić <http://ivannikolic.com>","https://github.com/niksy/css-functions-list"
"[email protected]","MIT","Copyright JS Foundation and other contributors","https://github.com/webpack-contrib/css-loader"
"[email protected]","BSD-2-Clause","Copyright (c) Felix Böhm. All rights reserved.","https://github.com/fb55/css-select"
"[email protected]","MIT","Copyright (C) 2016-2022 by Roman Dvornov","https://github.com/csstree/csstree"
"[email protected]","BSD-2-Clause","Copyright (c) Felix Böhm. All rights reserved.","https://github.com/fb55/css-what"
"[email protected]","MIT","Copyright Mathias Bynens <https://mathiasbynens.be/>","https://github.com/mathiasbynens/cssesc"
"[email protected]","MIT","Copyright (c) Nikita Vasilyev","https://github.com/NV/CSSOM"
"[email protected]","MIT","Copyright (c) Nikita Vasilyev","https://github.com/NV/CSSOM"
"[email protected]","MIT","Copyright (c) Nikita Vasilyev","https://github.com/NV/CSSOM"
"[email protected]","MIT","Copyright (c) Chad Walker","https://github.com/jsdom/cssstyle"
"[email protected]","MIT","Copyright (c) Chad Walker","https://github.com/jsdom/cssstyle"
"[email protected]","MIT","Copyright (c) 2014 Tim Caswell","https://github.com/creationix/culvert"
"[email protected]","MIT","Copyright (c) 2016 Leonardo Correa","https://github.com/leoforfree/cz-customizable"
"[email protected]","ISC","Copyright (c) 2013-2019, Mariusz Nowak, @medikoo, medikoo.com","https://github.com/medikoo/d"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/dargs"
"[email protected]","MIT","Copyright (c) 2014 Nathan Rajlich <[email protected]>","https://github.com/TooTallNate/proxy-agents"
"[email protected]","MIT","Copyright © 2017–2020 Domenic Denicola <[email protected]>","https://github.com/jsdom/data-urls"
"[email protected]","MIT","Copyright © Domenic Denicola <[email protected]>","https://github.com/jsdom/data-urls"
"[email protected]","MIT","Copyright © Domenic Denicola <[email protected]>","https://github.com/jsdom/data-urls"
"[email protected]","MIT","Copyright (c) 2023 Jordan Harband","https://github.com/ljharb/data-view-buffer"
"[email protected]","MIT","Copyright (c) 2024 Jordan Harband","https://github.com/ljharb/data-view-byte-length"
"[email protected]","MIT","Copyright (c) 2024 Jordan Harband","https://github.com/ljharb/data-view-byte-offset"
"[email protected]","MIT","Copyright (c) 2021 Sasha Koss and Lesha Koss https://kossnocorp.mit-license.org","https://github.com/date-fns/date-fns"
"[email protected]","MIT","Copyright (c) 2018-present, iamkun","https://github.com/iamkun/dayjs"
"[email protected]","MIT","Copyright (c) 2018-present, iamkun","https://github.com/iamkun/dayjs"
"[email protected]","MIT","Copyright (c) 2014 TJ Holowaychuk <[email protected]>","https://github.com/visionmedia/debug"
"[email protected]","MIT","Copyright (c) 2014 TJ Holowaychuk <[email protected]>","https://github.com/visionmedia/debug"
"[email protected]","MIT","Copyright (c) 2014 TJ Holowaychuk <[email protected]>","https://github.com/visionmedia/debug"
"[email protected]","MIT","Copyright (c) 2014-2017 TJ Holowaychuk <[email protected]>. Copyright (c) 2018-2021 Josh Junon","https://github.com/debug-js/debug"
"[email protected]","MIT","","https://github.com/dwyl/decache"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com), Dmirty Sobolev <[email protected]>","https://github.com/sindresorhus/decamelize-keys"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/decamelize"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/decamelize"
"[email protected]","MIT","Copyright (c) 2022 Michael Mclaughlin","https://github.com/MikeMcl/decimal.js"
"[email protected]","MIT","Copyright (c) 2015 Desmond Brand ([email protected])","https://github.com/dmnd/dedent"
"[email protected]","MIT","Copyright (c) 2012, 2013, 2014 James Halliday <[email protected]>, 2009 Thomas Robinson <280north.com>","https://github.com/inspect-js/node-deep-equal"
"[email protected]","MIT","Copyright (c) 2012, 2013 Thorsten Lorenz <[email protected]>. Copyright (c) 2012 James Halliday <[email protected]>. Copyright (c) 2009 Thomas Robinson <280north.com>","https://github.com/thlorenz/deep-is"
"[email protected]","MIT","Copyright (c) 2012 James Halliday, Josh Duff, and other contributors","https://github.com/TehShrike/deepmerge"
"[email protected]","BSD-2-Clause","Copyright (c) silverwind. All rights reserved.","https://github.com/silverwind/default-gateway"
"[email protected]","MIT","Copyright (c) 2022 Sindre Sorhus. Copyright (c) 2015 Elijah Insua","https://github.com/sindresorhus/node-defaults"
"[email protected]","MIT","Copyright (c) 2023 Jordan Harband","https://github.com/ljharb/define-data-property"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/define-lazy-prop"
"[email protected]","MIT","Copyright (C) 2015 Jordan Harband","https://github.com/ljharb/define-properties"
"[email protected]","MIT","Copyright (c) 2013 Nathan Rajlich <[email protected]>","https://github.com/TooTallNate/proxy-agents"
"[email protected]","MIT","Copyright (c) 2011 Debuggable Limited <[email protected]>","https://github.com/felixge/node-delayed-stream"
"[email protected]","MIT","Copyright (c) 2015 TJ Holowaychuk <[email protected]>","https://github.com/visionmedia/node-delegates"
"[email protected]","MIT","Copyright (c) 2014-2017 Douglas Christopher Wilson","https://github.com/dougwilson/nodejs-depd"
"[email protected]","MIT","Copyright (c) 2014-2018 Douglas Christopher Wilson","https://github.com/dougwilson/nodejs-depd"
"[email protected]","MIT","Copyright (c) Luke Edwards <[email protected]> (lukeed.com)","https://github.com/lukeed/dequal"
"[email protected]","MIT","Copyright (c) 2014 Jonathan Ong [email protected]","https://github.com/stream-utils/destroy"
"[email protected]","MIT","Copyright (c) 2014 Jonathan Ong [email protected]. Copyright (c) 2015-2022 Douglas Christopher Wilson [email protected]","https://github.com/stream-utils/destroy"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/detect-indent"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/detect-newline"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/detect-newline"
"[email protected]","MIT","Copyright (c) 2017 Ilya Kantor","https://github.com/iliakan/detect-node"
"[email protected]","MIT","Copyright (c) 2013 Shane Osbourne","https://github.com/shakyshane/dev-ip"
"[email protected]","MIT","","https://github.com/devongovett/dfa"
"[email protected]","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"[email protected]","BSD-3-Clause","Copyright (c) 2009-2015, Kevin Decker <[email protected]>","https://github.com/kpdecker/jsdiff"
"[email protected]","MIT","Copyright (c) Kevin Mårtensson <[email protected]> (github.com/kevva)","https://github.com/kevva/dir-glob"
"[email protected]","MIT","Copyright (c) 2016 Mathias Buus","https://github.com/mafintosh/dns-packet"
"[email protected]","Apache-2.0","","https://github.com/eslint/doctrine"
"[email protected]","MIT","Copyright (c) 2014 The cheeriojs contributors","https://github.com/cheeriojs/dom-serializer"
"[email protected]","MIT","Copyright (c) 2017 Vladimir Kharlampidi","https://github.com/nolimits4web/dom7"
"[email protected]","BSD-2-Clause","Copyright (c) Felix Böhm. All rights reserved.","https://github.com/fb55/domelementtype"
"[email protected]","MIT","Copyright © 2017 Domenic Denicola","https://github.com/jsdom/domexception"
"[email protected]","MIT","Copyright © Domenic Denicola","https://github.com/jsdom/domexception"
"[email protected]","BSD-2-Clause","Copyright (c) Felix Böhm. All rights reserved.","https://github.com/fb55/domhandler"
"[email protected]","BSD-2-Clause","Copyright (c) Felix Böhm. All rights reserved.","https://github.com/fb55/domutils"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/dot-prop"
"[email protected]","MIT","","https://github.com/olado/doT"
"[email protected]","BSD-2-Clause","Copyright (c) 2015, Scott Motte. All rights reserved.","https://github.com/motdotla/dotenv"
"[email protected]","MIT","Copyright (c) 2012 Raynos.","https://github.com/Raynos/duplexer"
"[email protected]","MIT","","https://github.com/komagata/eastasianwidth"
"[email protected]","Apache-2.0","","https://github.com/shakyshane/easy-extender"
"[email protected]","Apache 2.0","","https://github.com/shakyshane/easy-logger"
"[email protected]","MIT","Copyright 2013 James Halliday ([email protected])","https://github.com/substack/node-editor"
"[email protected]","MIT","Copyright (c) 2014 Jonathan Ong [email protected]","https://github.com/jonathanong/ee-first"
"[email protected]","Apache-2.0","","https://github.com/mde/ejs"
"[email protected]","ISC","Copyright 2018 Kilian Valkhof","https://github.com/kilian/electron-to-chromium"
"[email protected]","UNKNOWN","","https://github.com/sindresorhus/component-emitter"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/emittery"
"[email protected]","MIT","Copyright Mathias Bynens <https://mathiasbynens.be/>","https://github.com/mathiasbynens/emoji-regex"
"[email protected]","MIT","Copyright Mathias Bynens <https://mathiasbynens.be/>","https://github.com/mathiasbynens/emoji-regex"
"[email protected]","MIT","Copyright Mathias Bynens <https://mathiasbynens.be/>","https://github.com/mathiasbynens/emoji-regex"
"[email protected]","MIT","Copyright © 2015 Kiko Beats","https://github.com/kikobeats/emojis-list"
"[email protected]","MIT","Copyright (c) 2016 Douglas Christopher Wilson","https://github.com/pillarjs/encodeurl"
"[email protected]","MIT","Copyright (c) 2012-2014 Andris Reinman","https://github.com/andris9/encoding"
"[email protected]","MIT","Copyright (c) 2014 Mathias Buus","https://github.com/mafintosh/end-of-stream"
"[email protected]","MIT","Copyright (c) 2014-2015 Automattic <[email protected]>","https://github.com/socketio/engine.io-client"
"[email protected]","MIT","Copyright (c) 2016 Guillermo Rauch (@rauchg)","https://github.com/socketio/engine.io-parser"
"[email protected]","MIT","Copyright (c) 2014 Guillermo Rauch <[email protected]>","https://github.com/socketio/engine.io"
"[email protected]","MIT","Copyright JS Foundation and other contributors","https://github.com/webpack/enhanced-resolve"
"[email protected]","MIT","Copyright (c) 2016-present, Jon Schlinkert.","https://github.com/enquirer/enquirer"
"[email protected]","BSD-2-Clause","Copyright (c) Felix Böhm. All rights reserved.","https://github.com/fb55/entities"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/env-paths"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/env-paths"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/environment"
"[email protected]","MIT","","https://github.com/IndigoUnited/js-err-code"
"[email protected]","MIT","","https://github.com/rvagg/node-errno"
"[email protected]","MIT","Copyright (c) 2015 JD Ballard","https://github.com/qix-/node-error-ex"
"[email protected]","MIT","Copyright (C) 2015 Jordan Harband","https://github.com/ljharb/es-abstract"
"[email protected]","MIT","Copyright (c) 2024 Jordan Harband","https://github.com/ljharb/es-define-property"
"[email protected]","MIT","Copyright (c) 2024 Jordan Harband","https://github.com/ljharb/es-errors"
"[email protected]","MIT","Copyright (C) 2018-2022 Guy Bedford","https://github.com/guybedford/es-module-lexer"
"[email protected]","MIT","Copyright (c) 2024 Jordan Harband","https://github.com/ljharb/es-object-atoms"
"[email protected]","MIT","Copyright (c) 2022 ECMAScript Shims","https://github.com/es-shims/es-set-tostringtag"
"[email protected]","MIT","Copyright (c) 2015 Jordan Harband","https://github.com/ljharb/es-to-primitive"
"[email protected]","ISC","Copyright (c) 2011-2024, Mariusz Nowak, @medikoo, medikoo.com","https://github.com/medikoo/es5-ext"
"[email protected]","MIT","Copyright (C) 2013-2017 Mariusz Nowak (www.medikoo.com)","https://github.com/medikoo/es6-iterator"
"[email protected]","MIT","Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and contributors","https://github.com/stefanpenner/es6-promise"
"[email protected]","MIT","Copyright (c) 2019 Paul Miller (https://paulmillr.com)","https://github.com/paulmillr/es6-shim"
"[email protected]","ISC","Copyright (c) 2013-2019, Mariusz Nowak, @medikoo, medikoo.com","https://github.com/medikoo/es6-symbol"
"[email protected]","ISC","Copyright (c) 2013-2018, Mariusz Nowak, @medikoo, medikoo.com","https://github.com/medikoo/es6-weak-map"
"[email protected]","MIT","Copyright (c) 2020 Evan Wallace","https://github.com/evanw/esbuild"
"[email protected]","MIT","Copyright (c) 2020 Evan Wallace","https://github.com/evanw/esbuild"
"[email protected]","MIT","Copyright (c) Luke Edwards <[email protected]> (lukeed.com)","https://github.com/lukeed/escalade"
"[email protected]","MIT","Copyright (c) 2012-2013 TJ Holowaychuk. Copyright (c) 2015 Andreas Lubbe. Copyright (c) 2015 Tiancheng "Timothy" Gu","https://github.com/component/escape-html"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/escape-string-regexp"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/escape-string-regexp"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/escape-string-regexp"
"[email protected]","BSD-2-Clause","Copyright (C) 2012 Yusuke Suzuki (twitter: @Constellation) and other contributors.","https://github.com/estools/escodegen"
"[email protected]","MIT","Copyright (c) 2017, 2018, 2019, 2020, 2021, 2022, 2023 Simon Lydell and contributors","https://github.com/prettier/eslint-config-prettier"
"[email protected]","MIT","Copyright (c) 2019 Nicholas Jamieson","https://github.com/cartant/eslint-etc"
"[email protected]","ISC","Copyright (c) 2021 Rémi Thomas","https://github.com/remithomas/eslint-plugin-ban"
"[email protected]","MIT","Copyright (c) 2019-2021 Nicholas Jamieson and contributors","https://github.com/cartant/eslint-plugin-etc"
"[email protected]","UNKNOWN","",""
"[email protected]","MIT","Copyright (c) 2018 Jonathan Kim","https://github.com/jest-community/eslint-plugin-jest"
"[email protected]","BSD-3-Clause","Copyright (c) 2018, Gajus Kuizinas (http://gajus.com/). All rights reserved.","https://github.com/gajus/eslint-plugin-jsdoc"
"[email protected]","MIT","Copyright © 2017 Andres Suarez and Teddy Katz","https://github.com/prettier/eslint-plugin-prettier"
"[email protected]","MIT","Copyright (c) 2019 Nicholas Jamieson","https://github.com/cartant/eslint-plugin-rxjs-angular"
"[email protected]","MIT","Copyright (c) 2019 Nicholas Jamieson and contributors","https://github.com/cartant/eslint-plugin-rxjs"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/eslint-plugin-unicorn"
"[email protected]","MIT","Copyright (c) 2022 Mikkel Holmer Pedersen","https://github.com/sweepline/eslint-plugin-unused-imports"
"[email protected]","MIT","Copyright © 2017 Teddy Katz","https://github.com/not-an-aardvark/eslint-rule-composer"
"[email protected]","BSD-2-Clause","Copyright JS Foundation and other contributors, https://js.foundation. Copyright (C) 2012-2013 Yusuke Suzuki (twitter: @Constellation) and other contributors.","https://github.com/eslint/eslint-scope"
"[email protected]","BSD-2-Clause","Copyright JS Foundation and other contributors, https://js.foundation. Copyright (C) 2012-2013 Yusuke Suzuki (twitter: @Constellation) and other contributors.","https://github.com/eslint/eslint-scope"
"[email protected]","Apache-2.0","","https://github.com/eslint/eslint-visitor-keys"
"[email protected]","MIT","Copyright OpenJS Foundation and other contributors, <www.openjsf.org>","https://github.com/eslint/eslint"
"[email protected]","ISC","Copyright (c) 2013-2024, Mariusz Nowak, @medikoo, medikoo.com","https://github.com/medikoo/esniff"
"[email protected]","BSD-2-Clause","Copyright (c) Open JS Foundation. All rights reserved.","https://github.com/eslint/espree"
"[email protected]","BSD-2-Clause","Copyright JS Foundation and other contributors, https://js.foundation/","https://github.com/jquery/esprima"
"[email protected]","BSD-3-Clause","Copyright (c) 2013, Joel Feenstra. All rights reserved.","https://github.com/estools/esquery"
"[email protected]","BSD-2-Clause","Copyright (C) 2014 [Yusuke Suzuki](https://github.com/Constellation). (twitter: [@Constellation](https://twitter.com/Constellation)) and other contributors.","https://github.com/estools/esrecurse"
"[email protected]","BSD-2-Clause","","https://github.com/estools/estraverse"
"[email protected]","BSD-2-Clause","","https://github.com/estools/estraverse"
"[email protected]","BSD-2-Clause","","https://github.com/estools/esutils"
"[email protected]","MIT","Copyright (c) 2014-2016 Douglas Christopher Wilson","https://github.com/jshttp/etag"
"[email protected]","MIT","Copyright (C) 2012-2015 Mariusz Nowak (www.medikoo.com)","https://github.com/medikoo/event-emitter"
"[email protected]","MIT","Copyright (c) 2011 Dominic Tarr","https://github.com/dominictarr/event-stream"
"[email protected]","MIT","Copyright (c) 2020 Anna Henningsen","https://github.com/addaleax/eventemitter-asyncresource"
"[email protected]","MIT","Copyright (c) 2011 hij1nx <http://www.twitter.com/hij1nx>","https://github.com/hij1nx/EventEmitter2"
"[email protected]","MIT","Copyright (c) 2016 Paolo Fragomeni <http://www.github.com/0x00a> and Contributors","https://github.com/hij1nx/EventEmitter2"
"[email protected]","MIT","Copyright (c) 2016 Paolo Fragomeni <http://www.github.com/0x00a> and Contributors","https://github.com/hij1nx/EventEmitter2"
"[email protected]","MIT","Copyright (c) 2014 Arnout Kazemier","https://github.com/primus/eventemitter3"
"[email protected]","MIT","Copyright (c) 2014 Arnout Kazemier","https://github.com/primus/eventemitter3"
"[email protected]","MIT","Copyright Joyent, Inc. and other Node contributors.","https://github.com/Gozala/events"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/execa"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/execa"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/execa"
"[email protected]","MIT","Copyright (c) 2013 "Cowboy" Ben Alman","https://github.com/cowboy/node-exit"
"[email protected]","MIT","Copyright (c) Meta Platforms, Inc. and affiliates.","https://github.com/jestjs/jest"
"[email protected]","Apache-2.0","","https://github.com/coveo/exponential-backoff"
"[email protected]","MIT","Copyright (c) 2013 villadora <[email protected]>, contributors. http://kael.me/","https://github.com/villadora/express-http-proxy"
"[email protected]","MIT","","https://github.com/modosc/express-robots-txt"
"[email protected]","MIT","Copyright (c) 2009-2014 TJ Holowaychuk <[email protected]>. Copyright (c) 2013-2014 Roman Shtylman <[email protected]>. Copyright (c) 2014-2015 Douglas Christopher Wilson <[email protected]>","https://github.com/expressjs/express"
"[email protected]","ISC","Copyright (c) 2011-2022, Mariusz Nowak, @medikoo, medikoo.com","https://github.com/medikoo/es5-ext.git#ext"
"[email protected]","MIT","Copyright (c) 2016 Kevin Gravier","https://github.com/mrkmg/node-external-editor"
"[email protected]","MIT","Copyright (c) 2014-present Matt Zabriskie","https://github.com/keymetrics/extrareqp2"
"[email protected]","MIT","Copyright (c) 2014, 2015, 2018, 2021 Blaine Bublitz <[email protected]> and Eric Schoffstall <[email protected]>","https://github.com/gulpjs/fancy-log"
"[email protected]","MIT","Copyright (c) 2017 Evgeny Poberezkin","https://github.com/epoberezkin/fast-deep-equal"
"[email protected]","Apache-2.0","","https://github.com/jhchen/fast-diff"
"[email protected]","MIT","Copyright (c) 2017 Tony Quetano","https://github.com/planttheidea/fast-equals"
"[email protected]","MIT","Copyright (c) Denis Malinochkin","https://github.com/mrmlnc/fast-glob"
"[email protected]","MIT","Copyright (c) Denis Malinochkin","https://github.com/mrmlnc/fast-glob"
"[email protected]","MIT","Copyright (c) Denis Malinochkin","https://github.com/mrmlnc/fast-glob"
"[email protected]","MIT","Copyright (c) Denis Malinochkin","https://github.com/mrmlnc/fast-glob"
"[email protected]","MIT","Copyright (c) 2013, 2014, 2020 Joachim Wester","https://github.com/Starcounter-Jack/JSON-Patch"
"[email protected]","MIT","Copyright (c) 2017 Evgeny Poberezkin. Copyright (c) 2013 James Halliday","https://github.com/epoberezkin/fast-json-stable-stringify"
"[email protected]","MIT","Copyright (c) 2013 [Ramesh Nair](http://www.hiddentao.com/)","https://github.com/hiddentao/fast-levenshtein"
"[email protected]","MIT","Copyright (c) 2020 Kasper Unn Weihe","https://github.com/ka-weihe/fastest-levenshtein"
"[email protected]","ISC","Copyright (c) 2015-2020, Matteo Collina <[email protected]>","https://github.com/mcollina/fastq"
"[email protected]","Apache-2.0","Copyright 2010-2021 James Coglan","https://github.com/faye/faye-websocket-node"
"[email protected]","Apache-2.0","","https://github.com/facebook/watchman"
"[email protected]","MIT","","https://github.com/soyuka/fclone"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/figures"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/figures"
"[email protected]","MIT","Copyright (c) 2015 Roy Riojas","https://github.com/royriojas/file-entry-cache"
"[email protected]","MIT","Copyright (c) Roy Riojas & Jared Wray","https://github.com/jaredwray/file-entry-cache"
"[email protected]","MIT","Copyright (c) Roy Riojas & Jared Wray","https://github.com/jaredwray/file-entry-cache"
"[email protected]","MIT","","https://github.com/vyushin/file-replace-loader"
"[email protected]","Apache-2.0","","https://github.com/mde/filelist"
"[email protected]","MIT","Copyright (c) 2014-present, Jon Schlinkert.","https://github.com/jonschlinkert/fill-range"
"[email protected]","MIT","Copyright (c) 2014-2017 Douglas Christopher Wilson <[email protected]>","https://github.com/pillarjs/finalhandler"
"[email protected]","MIT","Copyright (c) 2014-2017 Douglas Christopher Wilson <[email protected]>","https://github.com/pillarjs/finalhandler"
"[email protected]","MIT","Copyright (c) 2014-2022 Douglas Christopher Wilson <[email protected]>","https://github.com/pillarjs/finalhandler"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com). Copyright (c) James Talmage <[email protected]> (https://github.com/jamestalmage)","https://github.com/sindresorhus/find-cache-dir"
"[email protected]","MIT","","https://github.com/shannonmoeller/find-config"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/find-up-simple"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/find-up"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/find-up"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/find-up"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/find-up"
"[email protected]","MIT","Copyright (c) Roy Riojas and Jared Wray","https://github.com/jaredwray/flat-cache"
"[email protected]","MIT","Copyright (c) Roy Riojas and Jared Wray","https://github.com/jaredwray/flat-cache"
"[email protected]","BSD-3-Clause","Copyright (c) 2014, Hugh Kennedy. All rights reserved.","https://github.com/hughsk/flat"
"[email protected]","ISC","Copyright (c) 2018-2020, Andrea Giammarchi, @WebReflection","https://github.com/WebReflection/flatted"
"[email protected]","MIT","Copyright 2014–present Olivier Lalonde <[email protected]>, James Talmage <[email protected]>, Ruben Verborgh","https://github.com/follow-redirects/follow-redirects"
"[email protected]","MIT","Copyright (c) 2012 Raynos.","https://github.com/Raynos/for-each"
"[email protected]","ISC","Copyright (c) 2015-2023 Isaac Z. Schlueter and Contributors","https://github.com/tapjs/foreground-child"
"[email protected]","MIT","Copyright (c) 2012 Felix Geisendörfer ([email protected]) and contributors","https://github.com/form-data/form-data"
"[email protected]","MIT","Copyright (c) 2012 Felix Geisendörfer ([email protected]) and contributors","https://github.com/form-data/form-data"
"[email protected]","MIT","Copyright (c) 2014-2017 Douglas Christopher Wilson","https://github.com/jshttp/forwarded"
"[email protected]","MIT","Copyright (c) 2023 Robert Eisele","https://github.com/rawify/Fraction.js"
"[email protected]","MIT","Copyright (c) 2012 TJ Holowaychuk <[email protected]>. Copyright (c) 2016-2017 Douglas Christopher Wilson <[email protected]>","https://github.com/jshttp/fresh"
"[email protected]","MIT","Copyright (c) 2011 Dominic Tarr","https://github.com/dominictarr/from"
"[email protected]","MIT","Copyright (c) 2018 Mathias Buus","https://github.com/mafintosh/fs-constants"
"[email protected]","MIT","Copyright (c) 2011-2017 JP Richardson","https://github.com/jprichardson/node-fs-extra"
"[email protected]","MIT","Copyright (c) 2011-2017 JP Richardson","https://github.com/jprichardson/node-fs-extra"
"[email protected]","MIT","Copyright (c) 2011-2017 JP Richardson","https://github.com/jprichardson/node-fs-extra"
"[email protected]","ISC","Copyright (c) Isaac Z. Schlueter and Contributors","https://github.com/npm/fs-minipass"
"[email protected]","ISC","Copyright (c) Isaac Z. Schlueter and Contributors","https://github.com/npm/fs-minipass"
"[email protected]","Unlicense","","https://github.com/streamich/fs-monkey"
"[email protected]","ISC","Copyright (c) Isaac Z. Schlueter and Contributors","https://github.com/isaacs/fs.realpath"
"[email protected]","MIT","Copyright (c) 2013 Raynos.","https://github.com/Raynos/function-bind"
"[email protected]","MIT","Copyright (c) 2016 Jordan Harband","https://github.com/es-shims/Function.prototype.name"
"[email protected]","MIT","Copyright (c) 2019 Jordan Harband","https://github.com/inspect-js/functions-have-names"
"[email protected]","ISC","Copyright npm, Inc.","https://github.com/npm/gauge"
"[email protected]","MIT","Copyright (c) 2016 Jason Dent","https://github.com/streetsidesoftware/GenSequence"
"[email protected]","MIT","Copyright 2018 Logan Smyth <[email protected]>","https://github.com/loganfsmyth/gensync"
"[email protected]","ISC","","https://github.com/stefanpenner/get-caller-file"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/get-east-asian-width"
"[email protected]","MIT","Copyright (c) 2020 Jordan Harband","https://github.com/ljharb/get-intrinsic"
"[email protected]","MIT","Copyright (c) 2020 CFWare, LLC","https://github.com/cfware/get-package-type"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/get-stdin"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/get-stdin"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/get-stream"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/get-stream"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/get-stream"
"[email protected]","MIT","Copyright (c) 2021 Inspect JS","https://github.com/inspect-js/get-symbol-description"
"[email protected]","MIT","Copyright (c) 2014 Nathan Rajlich <[email protected]>","https://github.com/TooTallNate/proxy-agents"
"[email protected]","MIT","Copyright (c) 2014 Tim Caswell","https://github.com/creationix/git-node-fs"
"[email protected]","MIT","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
"[email protected]","MIT","Copyright © [conventional-changelog team](https://github.com/conventional-changelog)","https://github.com/conventional-changelog/conventional-changelog"
"[email protected]","MIT","Copyright (c) 2013 Tim Caswell","https://github.com/creationix/git-sha1"
"[email protected]","ISC","Copyright (c) 2015, 2019 Elan Shanker","https://github.com/gulpjs/glob-parent"
"[email protected]","ISC","Copyright (c) 2015, 2019 Elan Shanker, 2021 Blaine Bublitz <[email protected]>, Eric Schoffstall <[email protected]> and other contributors","https://github.com/gulpjs/glob-parent"
"[email protected]","MIT","Copyright (c) 2020 Ahmad Nassri <[email protected]>","https://github.com/ahmadnassri/node-glob-promise"
"[email protected]","BSD-2-Clause","Copyright (c) 2013, Nick Fitzgerald","https://github.com/fitzgen/glob-to-regexp"
"[email protected]","ISC","Copyright (c) 2009-2023 Isaac Z. Schlueter and Contributors","https://github.com/isaacs/node-glob"
"[email protected]","ISC","Copyright (c) Isaac Z. Schlueter and Contributors","https://github.com/isaacs/node-glob"
"[email protected]","ISC","Copyright (c) Isaac Z. Schlueter and Contributors","https://github.com/isaacs/node-glob"
"[email protected]","ISC","Copyright (c) 2009-2022 Isaac Z. Schlueter and Contributors","https://github.com/isaacs/node-glob"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/global-directory"
"[email protected]","MIT","Copyright (c) 2015-present, Jon Schlinkert.","https://github.com/jonschlinkert/global-modules"
"[email protected]","MIT","Copyright (c) 2015-present, Jon Schlinkert.","https://github.com/jonschlinkert/global-prefix"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/globals"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/globals"
"[email protected]","MIT","Copyright (c) 2016 Jordan Harband","https://github.com/ljharb/System.global"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/globby"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)","https://github.com/sindresorhus/globby"
"[email protected]","MIT","Copyright (c) 2016 amobiz","https://github.com/amobiz/globjoin"
"[email protected]","MIT","Copyright (c) 2022 Jordan Harband","https://github.com/ljharb/gopd"
"[email protected]","ISC","Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors","https://github.com/isaacs/node-graceful-fs"
"[email protected]","MIT","Copyright 2020 Filament (Anomalous Technologies Limited)","https://github.com/flmnt/graphemer"
"[email protected]","MIT","Copyright (c) 2018 Minko Gechev <[email protected]> and the Guess . contributors","https://github.com/guess-js/guess"
"[email protected]","MIT","Copyright (C) 2011-2014 by Jorik Tangelder (Eight Media)","https://github.com/hammerjs/hammer.js"
"[email protected]","MIT","Copyright Fedor Indutny, 2015.","https://github.com/indutny/handle-thing"
"[email protected]","MIT","Copyright (C) 2011-2019 by Yehuda Katz","https://github.com/handlebars-lang/handlebars.js"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/hard-rejection"
"[email protected]","MIT","Copyright (c) 2019 Jordan Harband","https://github.com/ljharb/has-bigints"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/has-flag"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/has-flag"
"[email protected]","MIT","Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)","https://github.com/sindresorhus/has-own-prop"
"[email protected]","MIT","Copyright (c) 2022 Inspect JS","https://github.com/inspect-js/has-property-descriptors"
"[email protected]","MIT","Copyright (c) 2022 Inspect JS","https://github.com/inspect-js/has-proto"
"[email protected]","MIT","Copyright (c) 2016 Jordan Harband","https://github.com/inspect-js/has-symbols"
"[email protected]","MIT","Copyright (c) 2021 Inspect JS","https://github.com/inspect-js/has-tostringtag"
"[email protected]","ISC","Copyright (c) 2014, Rebecca Turner <[email protected]>","https://github.com/iarna/has-unicode"
"[email protected]","MIT","Copyright (c) Jordan Harband and contributors","https://github.com/inspect-js/hasOwn"
"[email protected]","BSD*","Copyright (c) 2016, Alexandre Victoor. All rights reserved.","https://github.com/HdrHistogram/HdrHistogramJS"
"[email protected]","MIT","Copyright (c) 2016 Glen Keane","https://github.com/GlenTiki/hdr-histogram-percentiles-obj"
"[email protected]","ISC","Copyright (c) 2015, Rebecca Turner","https://github.com/npm/hosted-git-info"
"[email protected]","ISC","Copyright (c) 2015, Rebecca Turner","https://github.com/npm/hosted-git-info"
"[email protected]","ISC","Copyright (c) 2015, Rebecca Turner","https://github.com/npm/hosted-git-info"
"[email protected]","ISC","Copyright (c) 2015, Rebecca Turner","https://github.com/npm/hosted-git-info"
"[email protected]","MIT","Copyright Fedor Indutny, 2015.","https://github.com/indutny/hpack.js"
"[email protected]","MIT","Copyright © 2016–2020 Domenic Denicola <[email protected]>","https://github.com/jsdom/html-encoding-sniffer"
"[email protected]","MIT","Copyright © Domenic Denicola <[email protected]>","https://github.com/jsdom/html-encoding-sniffer"