-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
js-library-licenses.txt
3737 lines (3737 loc) · 127 KB
/
js-library-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
abab
License: BSD-3-Clause
License File: node_modules/abab/LICENSE.md
Source: git+https://github.com/jsdom/abab.git
Link: https://github.com/jsdom/abab#readme
-----------
acorn-globals
License: MIT
License File: node_modules/acorn-globals/LICENSE
Copyright: Copyright (c) 2014 Forbes Lindesay
Source: https://github.com/ForbesLindesay/acorn-globals.git
Link: https://github.com/ForbesLindesay/acorn-globals.git
-----------
acorn-jsx
License: MIT
License File: node_modules/acorn-jsx/LICENSE
Copyright: Copyright (C) 2012-2017 by Ingvar Stepanyan
Source: https://github.com/acornjs/acorn-jsx
Link: https://github.com/acornjs/acorn-jsx
-----------
acorn-walk
License: MIT
License File: node_modules/acorn-walk/LICENSE
Copyright: Copyright (C) 2012-2020 by various contributors (see AUTHORS)
Source: https://github.com/acornjs/acorn.git
Link: https://github.com/acornjs/acorn
-----------
acorn
License: MIT
License File: node_modules/acorn/LICENSE
Copyright: Copyright (C) 2012-2022 by various contributors (see AUTHORS)
Source: git+https://github.com/acornjs/acorn.git
Link: https://github.com/acornjs/acorn
-----------
agent-base
License: MIT
Source: git://github.com/TooTallNate/node-agent-base.git
Link: git://github.com/TooTallNate/node-agent-base.git
-----------
ajv
License: MIT
License File: node_modules/ajv/LICENSE
Copyright: Copyright (c) 2015-2017 Evgeny Poberezkin
Source: https://github.com/ajv-validator/ajv.git
Link: https://github.com/ajv-validator/ajv
-----------
ansi-escapes
License: MIT
License File: node_modules/ansi-escapes/license
Copyright: Copyright (c) Sindre Sorhus <************@*****.***> (https://sindresorhus.com)
Source: sindresorhus/ansi-escapes
Link: sindresorhus/ansi-escapes
-----------
ansi-regex
License: MIT
License File: node_modules/ansi-regex/license
Copyright: Copyright (c) Sindre Sorhus <************@*****.***> (sindresorhus.com)
Source: chalk/ansi-regex
Link: chalk/ansi-regex
-----------
ansi-styles
License: MIT
License File: node_modules/ansi-styles/license
Copyright: Copyright (c) Sindre Sorhus <************@*****.***> (sindresorhus.com)
Source: chalk/ansi-styles
Link: chalk/ansi-styles
-----------
anymatch
License: ISC
License File: node_modules/anymatch/LICENSE
Copyright: Copyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com)
Source: https://github.com/micromatch/anymatch
Link: https://github.com/micromatch/anymatch
-----------
arg
License: MIT
License File: node_modules/arg/LICENSE.md
Copyright: Copyright (c) 2017-2019 Zeit, Inc.
Source: zeit/arg
Link: zeit/arg
-----------
argparse
License: Python-2.0
License File: node_modules/argparse/LICENSE
Source: nodeca/argparse
Link: nodeca/argparse
-----------
array-buffer-byte-length
License: MIT
License File: node_modules/array-buffer-byte-length/LICENSE
Copyright: Copyright (c) 2023 Inspect JS
Source: git+https://github.com/inspect-js/array-buffer-byte-length.git
Link: https://github.com/inspect-js/array-buffer-byte-length#readme
-----------
array-includes
License: MIT
License File: node_modules/array-includes/LICENSE
Copyright: Copyright (C) 2015 Jordan Harband
Source: git://github.com/es-shims/array-includes.git
Link: git://github.com/es-shims/array-includes.git
-----------
array.prototype.findlastindex
License: MIT
License File: node_modules/array.prototype.findlastindex/LICENSE
Copyright: Copyright (c) 2021 ECMAScript Shims
Source: git+https://github.com/es-shims/Array.prototype.findLastIndex.git
Link: https://github.com/es-shims/Array.prototype.findLastIndex#readme
-----------
array.prototype.flat
License: MIT
License File: node_modules/array.prototype.flat/LICENSE
Copyright: Copyright (c) 2017 ECMAScript Shims
Source: git://github.com/es-shims/Array.prototype.flat.git
Link: git://github.com/es-shims/Array.prototype.flat.git
-----------
array.prototype.flatmap
License: MIT
License File: node_modules/array.prototype.flatmap/LICENSE
Copyright: Copyright (c) 2017 ECMAScript Shims
Source: git://github.com/es-shims/Array.prototype.flatMap.git
Link: git://github.com/es-shims/Array.prototype.flatMap.git
-----------
arraybuffer.prototype.slice
License: MIT
License File: node_modules/arraybuffer.prototype.slice/LICENSE
Copyright: Copyright (c) 2023 ECMAScript Shims
Source: git+https://github.com/es-shims/ArrayBuffer.prototype.slice.git
Link: https://github.com/es-shims/ArrayBuffer.prototype.slice#readme
-----------
async
License: MIT
License File: node_modules/async/LICENSE
Copyright: Copyright (c) 2010-2018 Caolan McMahon
Source: https://github.com/caolan/async.git
Link: https://caolan.github.io/async/
-----------
asynckit
License: MIT
License File: node_modules/asynckit/LICENSE
Copyright: Copyright (c) 2016 Alex Indigo
Source: git+https://github.com/alexindigo/asynckit.git
Link: https://github.com/alexindigo/asynckit#readme
-----------
available-typed-arrays
License: MIT
License File: node_modules/available-typed-arrays/LICENSE
Copyright: Copyright (c) 2020 Inspect JS
Source: git+https://github.com/inspect-js/available-typed-arrays.git
Link: https://github.com/inspect-js/available-typed-arrays#readme
-----------
babel-jest
License: MIT
License File: node_modules/babel-jest/LICENSE
Copyright: Copyright (c) Meta Platforms, Inc. and affiliates.
Source: https://github.com/jestjs/jest.git
Link: https://github.com/jestjs/jest.git
-----------
babel-plugin-istanbul
License: BSD-3-Clause
License File: node_modules/babel-plugin-istanbul/LICENSE
Copyright: Copyright (c) 2016, Istanbul Code Coverage
All rights reserved.
Source: git+https://github.com/istanbuljs/babel-plugin-istanbul.git
Link: https://github.com/istanbuljs/babel-plugin-istanbul#readme
-----------
babel-plugin-jest-hoist
License: MIT
License File: node_modules/babel-plugin-jest-hoist/LICENSE
Copyright: Copyright (c) Meta Platforms, Inc. and affiliates.
Source: https://github.com/jestjs/jest.git
Link: https://github.com/jestjs/jest.git
-----------
babel-preset-current-node-syntax
License: MIT
License File: node_modules/babel-preset-current-node-syntax/LICENSE
Copyright: Copyright (c) 2020 Nicolò Ribaudo and other contributors
Source: https://github.com/nicolo-ribaudo/babel-preset-current-node-syntax.git
Link: https://github.com/nicolo-ribaudo/babel-preset-current-node-syntax.git
-----------
babel-preset-jest
License: MIT
License File: node_modules/babel-preset-jest/LICENSE
Copyright: Copyright (c) Meta Platforms, Inc. and affiliates.
Source: https://github.com/jestjs/jest.git
Link: https://github.com/jestjs/jest.git
-----------
balanced-match
License: MIT
License File: node_modules/balanced-match/LICENSE.md
Copyright: Copyright (c) 2013 Julian Gruber <******@************.***>
Source: git://github.com/juliangruber/balanced-match.git
Link: https://github.com/juliangruber/balanced-match
-----------
binary-extensions
License: MIT
License File: node_modules/binary-extensions/license
Copyright: Copyright (c) Sindre Sorhus <************@*****.***> (https://sindresorhus.com)
Copyright (c) Paul Miller (https://paulmillr.com)
Source: sindresorhus/binary-extensions
Link: sindresorhus/binary-extensions
-----------
brace-expansion
License: MIT
License File: node_modules/brace-expansion/LICENSE
Copyright: Copyright (c) 2013 Julian Gruber <******@************.***>
Source: git://github.com/juliangruber/brace-expansion.git
Link: https://github.com/juliangruber/brace-expansion
-----------
braces
License: MIT
License File: node_modules/braces/LICENSE
Copyright: Copyright (c) 2014-present, Jon Schlinkert.
Source: micromatch/braces
Link: https://github.com/micromatch/braces
-----------
browserslist
License: MIT
License File: node_modules/browserslist/LICENSE
Copyright: Copyright 2014 Andrey Sitnik <******@******.**> and other contributors
Source: browserslist/browserslist
Link: browserslist/browserslist
-----------
bs-logger
License: MIT
License File: node_modules/bs-logger/LICENSE
Copyright: Copyright (c) 2018 Huafu Gandon
Source: git+https://github.com/huafu/bs-logger.git
Link: git+https://github.com/huafu/bs-logger.git
-----------
bser
License: Apache-2.0
Source: https://github.com/facebook/watchman
Link: https://facebook.github.io/watchman/docs/bser.html
-----------
buffer-from
License: MIT
License File: node_modules/buffer-from/LICENSE
Copyright: Copyright (c) 2016, 2018 Linus Unnebäck
Source: LinusU/buffer-from
Link: LinusU/buffer-from
-----------
call-bind
License: MIT
License File: node_modules/call-bind/LICENSE
Copyright: Copyright (c) 2020 Jordan Harband
Source: git+https://github.com/ljharb/call-bind.git
Link: https://github.com/ljharb/call-bind#readme
-----------
callsites
License: MIT
License File: node_modules/callsites/license
Copyright: Copyright (c) Sindre Sorhus <************@*****.***> (sindresorhus.com)
Source: sindresorhus/callsites
Link: sindresorhus/callsites
-----------
camelcase
License: MIT
License File: node_modules/camelcase/license
Copyright: Copyright (c) Sindre Sorhus <************@*****.***> (sindresorhus.com)
Source: sindresorhus/camelcase
Link: sindresorhus/camelcase
-----------
caniuse-lite
License: CC-BY-4.0
License File: node_modules/caniuse-lite/LICENSE
Source: browserslist/caniuse-lite
Link: browserslist/caniuse-lite
-----------
chalk
License: MIT
License File: node_modules/chalk/license
Copyright: Copyright (c) Sindre Sorhus <************@*****.***> (sindresorhus.com)
Source: chalk/chalk
Link: chalk/chalk
-----------
char-regex
License: MIT
License File: node_modules/char-regex/LICENSE
Source: https://github.com/Richienb/char-regex.git
Link: https://github.com/Richienb/char-regex.git
-----------
chokidar-cli
License: MIT
License File: node_modules/chokidar-cli/LICENSE
Copyright: Copyright (c) 2015 Kimmo Brunfeldt
Source: https://github.com/open-npm-tools/chokidar-cli.git
Link: https://github.com/open-npm-tools/chokidar-cli
-----------
chokidar
License: MIT
License File: node_modules/chokidar/LICENSE
Copyright: Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker
Source: git+https://github.com/paulmillr/chokidar.git
Link: https://github.com/paulmillr/chokidar
-----------
ci-info
License: MIT
License File: node_modules/ci-info/LICENSE
Copyright: Copyright (c) 2016 Thomas Watson Steen
Source: https://github.com/watson/ci-info.git
Link: https://github.com/watson/ci-info
-----------
cjs-module-lexer
License: MIT
License File: node_modules/cjs-module-lexer/LICENSE
Source: git+https://github.com/nodejs/cjs-module-lexer.git
Link: https://github.com/nodejs/cjs-module-lexer#readme
-----------
cliui
License: ISC
License File: node_modules/cliui/LICENSE.txt
Copyright: Copyright (c) 2015, Contributors
Source: http://github.com/yargs/cliui.git
Link: http://github.com/yargs/cliui.git
-----------
co
License: MIT
License File: node_modules/co/LICENSE
Copyright: Copyright (c) 2014 TJ Holowaychuk <**@************.**>
Source: tj/co
Link: tj/co
-----------
codemirror
License: MIT
License File: node_modules/codemirror/LICENSE
Copyright: Copyright (C) 2018-2021 by Marijn Haverbeke <*******@*****.***> and others
Source: https://github.com/codemirror/basic-setup.git
Link: https://github.com/codemirror/basic-setup.git
-----------
collect-v8-coverage
License: MIT
License File: node_modules/collect-v8-coverage/LICENSE
Copyright: Copyright (c) 2019 Simen Bekkhus
Source: SimenB/collect-v8-coverage
Link: SimenB/collect-v8-coverage
-----------
color-convert
License: MIT
License File: node_modules/color-convert/LICENSE
Copyright: Copyright (c) 2011-2016 Heather Arthur <**********@*****.***>
Source: Qix-/color-convert
Link: Qix-/color-convert
-----------
color-name
License: MIT
License File: node_modules/color-name/LICENSE
Source: [email protected]:colorjs/color-name.git
Link: https://github.com/colorjs/color-name
-----------
combined-stream
License: MIT
License File: node_modules/combined-stream/License
Copyright: Copyright (c) 2011 Debuggable Limited <*****@**********.***>
Source: git://github.com/felixge/node-combined-stream.git
Link: https://github.com/felixge/node-combined-stream
-----------
concat-map
License: MIT
License File: node_modules/concat-map/LICENSE
Source: git://github.com/substack/node-concat-map.git
Link: git://github.com/substack/node-concat-map.git
-----------
confusing-browser-globals
License: MIT
License File: node_modules/confusing-browser-globals/LICENSE
Copyright: Copyright (c) 2013-present, Facebook, Inc.
Source: https://github.com/facebook/create-react-app.git
Link: https://github.com/facebook/create-react-app.git
-----------
convert-source-map
License: MIT
License File: node_modules/convert-source-map/LICENSE
Copyright: Copyright 2013 Thorsten Lorenz.
All rights reserved.
Source: git://github.com/thlorenz/convert-source-map.git
Link: https://github.com/thlorenz/convert-source-map
-----------
create-jest
License: MIT
License File: node_modules/create-jest/LICENSE
Copyright: Copyright (c) Meta Platforms, Inc. and affiliates.
Source: https://github.com/jestjs/jest.git
Link: https://github.com/jestjs/jest.git
-----------
create-require
License: MIT
License File: node_modules/create-require/LICENSE
Copyright: Copyright (c) 2020
Source: nuxt-contrib/create-require
Link: nuxt-contrib/create-require
-----------
crelt
License: MIT
License File: node_modules/crelt/LICENSE
Copyright: Copyright (C) 2020 by Marijn Haverbeke <******@*********.******>
Source: git+https://github.com/marijnh/crelt.git
Link: https://github.com/marijnh/crelt#readme
-----------
cross-spawn
License: MIT
License File: node_modules/cross-spawn/LICENSE
Copyright: Copyright (c) 2018 Made With MOXY Lda <*****@****.******>
Source: [email protected]:moxystudio/node-cross-spawn.git
Link: https://github.com/moxystudio/node-cross-spawn
-----------
cssom
License: MIT
License File: node_modules/cssom/LICENSE.txt
Copyright: Copyright (c) Nikita Vasilyev
Source: NV/CSSOM
Link: NV/CSSOM
-----------
cssstyle
License: MIT
License File: node_modules/cssstyle/LICENSE
Copyright: Copyright (c) Chad Walker
Source: jsdom/cssstyle
Link: https://github.com/jsdom/cssstyle
-----------
data-urls
License: MIT
License File: node_modules/data-urls/LICENSE.txt
Source: jsdom/data-urls
Link: jsdom/data-urls
-----------
data-view-buffer
License: MIT
License File: node_modules/data-view-buffer/LICENSE
Copyright: Copyright (c) 2023 Jordan Harband
Source: git+https://github.com/ljharb/data-view-buffer.git
Link: https://github.com/ljharb/data-view-buffer#readme
-----------
data-view-byte-length
License: MIT
License File: node_modules/data-view-byte-length/LICENSE
Copyright: Copyright (c) 2024 Jordan Harband
Source: git+https://github.com/ljharb/data-view-byte-length.git
Link: https://github.com/ljharb/data-view-byte-length#readme
-----------
data-view-byte-offset
License: MIT
License File: node_modules/data-view-byte-offset/LICENSE
Copyright: Copyright (c) 2024 Jordan Harband
Source: git+https://github.com/ljharb/data-view-byte-offset.git
Link: https://github.com/ljharb/data-view-byte-offset#readme
-----------
debug
License: MIT
License File: node_modules/debug/LICENSE
Copyright: Copyright (c) 2014-2017 TJ Holowaychuk <**@************.**>
Copyright (c) 2018-2021 Josh Junon
Source: git://github.com/debug-js/debug.git
Link: git://github.com/debug-js/debug.git
-----------
decamelize
License: MIT
License File: node_modules/decamelize/license
Copyright: Copyright (c) Sindre Sorhus <************@*****.***> (sindresorhus.com)
Source: sindresorhus/decamelize
Link: sindresorhus/decamelize
-----------
decimal.js
License: MIT
Source: https://github.com/MikeMcl/decimal.js.git
Link: https://github.com/MikeMcl/decimal.js.git
-----------
dedent
License: MIT
License File: node_modules/dedent/LICENSE.md
Source: https://github.com/dmnd/dedent
Link: https://github.com/dmnd/dedent
-----------
deep-is
License: MIT
License File: node_modules/deep-is/LICENSE
Copyright: Copyright (c) 2012, 2013 Thorsten Lorenz <********@***.**>
Copyright (c) 2012 James Halliday <****@********.***>
Copyright (c) 2009 Thomas Robinson <280north.com>
Source: http://github.com/thlorenz/deep-is.git
Link: http://github.com/thlorenz/deep-is.git
-----------
deepmerge
License: MIT
License File: node_modules/deepmerge/license.txt
Copyright: Copyright (c) 2012 James Halliday, Josh Duff, and other contributors
Source: git://github.com/TehShrike/deepmerge.git
Link: https://github.com/TehShrike/deepmerge
-----------
define-data-property
License: MIT
License File: node_modules/define-data-property/LICENSE
Copyright: Copyright (c) 2023 Jordan Harband
Source: git+https://github.com/ljharb/define-data-property.git
Link: https://github.com/ljharb/define-data-property#readme
-----------
define-properties
License: MIT
License File: node_modules/define-properties/LICENSE
Copyright: Copyright (C) 2015 Jordan Harband
Source: git://github.com/ljharb/define-properties.git
Link: git://github.com/ljharb/define-properties.git
-----------
delayed-stream
License: MIT
License File: node_modules/delayed-stream/License
Copyright: Copyright (c) 2011 Debuggable Limited <*****@**********.***>
Source: git://github.com/felixge/node-delayed-stream.git
Link: https://github.com/felixge/node-delayed-stream
-----------
detect-newline
License: MIT
License File: node_modules/detect-newline/license
Copyright: Copyright (c) Sindre Sorhus <************@*****.***> (sindresorhus.com)
Source: sindresorhus/detect-newline
Link: sindresorhus/detect-newline
-----------
diff-sequences
License: MIT
License File: node_modules/diff-sequences/LICENSE
Copyright: Copyright (c) Meta Platforms, Inc. and affiliates.
Source: https://github.com/jestjs/jest.git
Link: https://github.com/jestjs/jest.git
-----------
diff
License: BSD-3-Clause
License File: node_modules/diff/LICENSE
Copyright: Copyright (c) 2009-2015, Kevin Decker <********@*****.***>
Source: git://github.com/kpdecker/jsdiff.git
Link: git://github.com/kpdecker/jsdiff.git
-----------
doctrine
License: Apache-2.0
License File: node_modules/doctrine/LICENSE
Source: eslint/doctrine
Link: https://github.com/eslint/doctrine
-----------
domexception
License: MIT
License File: node_modules/domexception/LICENSE.txt
Source: jsdom/domexception
Link: jsdom/domexception
-----------
ejs
License: Apache-2.0
License File: node_modules/ejs/LICENSE
Source: git://github.com/mde/ejs.git
Link: https://github.com/mde/ejs
-----------
electron-to-chromium
License: ISC
License File: node_modules/electron-to-chromium/LICENSE
Copyright: Copyright 2018 Kilian Valkhof
Source: https://github.com/kilian/electron-to-chromium/
Link: https://github.com/kilian/electron-to-chromium/
-----------
emittery
License: MIT
License File: node_modules/emittery/license
Copyright: Copyright (c) Sindre Sorhus <************@*****.***> (https://sindresorhus.com)
Source: sindresorhus/emittery
Link: sindresorhus/emittery
-----------
emoji-regex
License: MIT
License File: node_modules/emoji-regex/LICENSE-MIT.txt
Source: https://github.com/mathiasbynens/emoji-regex.git
Link: https://mths.be/emoji-regex
-----------
entities
License: BSD-2-Clause
License File: node_modules/entities/LICENSE
Copyright: Copyright (c) Felix Böhm
All rights reserved.
Source: git://github.com/fb55/entities.git
Link: git://github.com/fb55/entities.git
-----------
error-ex
License: MIT
License File: node_modules/error-ex/LICENSE
Copyright: Copyright (c) 2015 JD Ballard
Source: qix-/node-error-ex
Link: qix-/node-error-ex
-----------
es-abstract
License: MIT
License File: node_modules/es-abstract/LICENSE
Copyright: Copyright (C) 2015 Jordan Harband
Source: git://github.com/ljharb/es-abstract.git
Link: git://github.com/ljharb/es-abstract.git
-----------
es-define-property
License: MIT
License File: node_modules/es-define-property/LICENSE
Copyright: Copyright (c) 2024 Jordan Harband
Source: git+https://github.com/ljharb/es-define-property.git
Link: https://github.com/ljharb/es-define-property#readme
-----------
es-errors
License: MIT
License File: node_modules/es-errors/LICENSE
Copyright: Copyright (c) 2024 Jordan Harband
Source: git+https://github.com/ljharb/es-errors.git
Link: https://github.com/ljharb/es-errors#readme
-----------
es-object-atoms
License: MIT
License File: node_modules/es-object-atoms/LICENSE
Copyright: Copyright (c) 2024 Jordan Harband
Source: git+https://github.com/ljharb/es-object-atoms.git
Link: https://github.com/ljharb/es-object-atoms#readme
-----------
es-set-tostringtag
License: MIT
License File: node_modules/es-set-tostringtag/LICENSE
Copyright: Copyright (c) 2022 ECMAScript Shims
Source: git+https://github.com/es-shims/es-set-tostringtag.git
Link: https://github.com/es-shims/es-set-tostringtag#readme
-----------
es-shim-unscopables
License: MIT
License File: node_modules/es-shim-unscopables/LICENSE
Copyright: Copyright (c) 2022 Jordan Harband
Source: git+https://github.com/ljharb/es-shim-unscopables.git
Link: https://github.com/ljharb/es-shim-unscopables#readme
-----------
es-to-primitive
License: MIT
License File: node_modules/es-to-primitive/LICENSE
Copyright: Copyright (c) 2015 Jordan Harband
Source: git://github.com/ljharb/es-to-primitive.git
Link: git://github.com/ljharb/es-to-primitive.git
-----------
esbuild
License: MIT
License File: node_modules/esbuild/LICENSE.md
Copyright: Copyright (c) 2020 Evan Wallace
Source: git+https://github.com/evanw/esbuild.git
Link: git+https://github.com/evanw/esbuild.git
-----------
escalade
License: MIT
License File: node_modules/escalade/license
Copyright: Copyright (c) Luke Edwards <****.*********@*****.***> (lukeed.com)
Source: lukeed/escalade
Link: lukeed/escalade
-----------
escape-string-regexp
License: MIT
License File: node_modules/escape-string-regexp/license
Copyright: Copyright (c) Sindre Sorhus <************@*****.***> (https://sindresorhus.com)
Source: sindresorhus/escape-string-regexp
Link: sindresorhus/escape-string-regexp
-----------
escodegen
License: BSD-2-Clause
License File: node_modules/escodegen/LICENSE.BSD
Copyright: Copyright (C) 2012 Yusuke Suzuki (twitter: @Constellation) and other contributors.
Source: http://github.com/estools/escodegen.git
Link: http://github.com/estools/escodegen
-----------
eslint-config-airbnb-base
License: MIT
License File: node_modules/eslint-config-airbnb-base/LICENSE.md
Copyright: Copyright (c) 2012 Airbnb
Source: https://github.com/airbnb/javascript
Link: https://github.com/airbnb/javascript
-----------
eslint-import-resolver-node
License: MIT
License File: node_modules/eslint-import-resolver-node/LICENSE
Copyright: Copyright (c) 2015 Ben Mosher
Source: https://github.com/import-js/eslint-plugin-import
Link: https://github.com/import-js/eslint-plugin-import
-----------
eslint-module-utils
License: MIT
License File: node_modules/eslint-module-utils/LICENSE
Copyright: Copyright (c) 2015 Ben Mosher
Source: git+https://github.com/import-js/eslint-plugin-import.git
Link: https://github.com/import-js/eslint-plugin-import#readme
-----------
eslint-plugin-import
License: MIT
License File: node_modules/eslint-plugin-import/LICENSE
Copyright: Copyright (c) 2015 Ben Mosher
Source: https://github.com/import-js/eslint-plugin-import
Link: https://github.com/import-js/eslint-plugin-import
-----------
eslint-scope
License: BSD-2-Clause
License File: node_modules/eslint-scope/LICENSE
Copyright: Copyright (C) 2012-2013 Yusuke Suzuki (twitter: @Constellation) and other contributors.
Source: eslint/eslint-scope
Link: http://github.com/eslint/eslint-scope
-----------
eslint-visitor-keys
License: Apache-2.0
License File: node_modules/eslint-visitor-keys/LICENSE
Source: eslint/eslint-visitor-keys
Link: https://github.com/eslint/eslint-visitor-keys#readme
-----------
eslint
License: MIT
License File: node_modules/eslint/LICENSE
Source: eslint/eslint
Link: https://eslint.org
-----------
espree
License: BSD-2-Clause
License File: node_modules/espree/LICENSE
Copyright: Copyright (c) Open JS Foundation
All rights reserved.
Source: eslint/espree
Link: https://github.com/eslint/espree
-----------
esprima
License: BSD-2-Clause
License File: node_modules/esprima/LICENSE.BSD
Source: https://github.com/jquery/esprima.git
Link: http://esprima.org
-----------
esquery
License: BSD-3-Clause
License File: node_modules/esquery/license.txt
Copyright: Copyright (c) 2013, Joel Feenstra
All rights reserved.
Source: https://github.com/estools/esquery.git
Link: https://github.com/estools/esquery/
-----------
esrecurse
License: BSD-2-Clause
Source: https://github.com/estools/esrecurse.git
Link: https://github.com/estools/esrecurse
-----------
estraverse
License: BSD-2-Clause
License File: node_modules/estraverse/LICENSE.BSD
Source: http://github.com/estools/estraverse.git
Link: https://github.com/estools/estraverse
-----------
esutils
License: BSD-2-Clause
License File: node_modules/esutils/LICENSE.BSD
Source: http://github.com/estools/esutils.git
Link: https://github.com/estools/esutils
-----------
execa
License: MIT
License File: node_modules/execa/license
Copyright: Copyright (c) Sindre Sorhus <************@*****.***> (https://sindresorhus.com)
Source: sindresorhus/execa
Link: sindresorhus/execa
-----------
exit
Source: git://github.com/cowboy/node-exit.git
Link: https://github.com/cowboy/node-exit
-----------
expect
License: MIT
License File: node_modules/expect/LICENSE
Copyright: Copyright (c) Meta Platforms, Inc. and affiliates.
Source: https://github.com/jestjs/jest.git
Link: https://github.com/jestjs/jest.git
-----------
fast-deep-equal
License: MIT
License File: node_modules/fast-deep-equal/LICENSE
Copyright: Copyright (c) 2017 Evgeny Poberezkin
Source: git+https://github.com/epoberezkin/fast-deep-equal.git
Link: https://github.com/epoberezkin/fast-deep-equal#readme
-----------
fast-json-stable-stringify
License: MIT
License File: node_modules/fast-json-stable-stringify/LICENSE
Copyright: Copyright (c) 2017 Evgeny Poberezkin
Copyright (c) 2013 James Halliday
Source: git://github.com/epoberezkin/fast-json-stable-stringify.git
Link: https://github.com/epoberezkin/fast-json-stable-stringify
-----------
fast-levenshtein
License: MIT
License File: node_modules/fast-levenshtein/LICENSE.md
Copyright: Copyright (c) 2013 [Ramesh Nair](http://www.hiddentao.com/)
Source: https://github.com/hiddentao/fast-levenshtein.git
Link: https://github.com/hiddentao/fast-levenshtein.git
-----------
fastq
License: ISC
License File: node_modules/fastq/LICENSE
Copyright: Copyright (c) 2015-2020, Matteo Collina <******.*******@*****.***>
Source: git+https://github.com/mcollina/fastq.git
Link: https://github.com/mcollina/fastq#readme
-----------
fb-watchman
License: Apache-2.0
Source: [email protected]:facebook/watchman.git
Link: https://facebook.github.io/watchman/
-----------
file-entry-cache
License: MIT
License File: node_modules/file-entry-cache/LICENSE
Copyright: Copyright (c) 2015 Roy Riojas
Source: royriojas/file-entry-cache
Link: royriojas/file-entry-cache
-----------
filelist
License: Apache-2.0
Source: git://github.com/mde/filelist.git
Link: https://github.com/mde/filelist
-----------
fill-range
License: MIT
License File: node_modules/fill-range/LICENSE
Copyright: Copyright (c) 2014-present, Jon Schlinkert.
Source: jonschlinkert/fill-range
Link: https://github.com/jonschlinkert/fill-range
-----------
find-up
License: MIT
License File: node_modules/find-up/license
Copyright: Copyright (c) Sindre Sorhus <************@*****.***> (https://sindresorhus.com)
Source: sindresorhus/find-up
Link: sindresorhus/find-up
-----------
flat-cache
License: MIT
License File: node_modules/flat-cache/LICENSE
Copyright: Copyright (c) Roy Riojas and Jared Wray
Source: jaredwray/flat-cache
Link: jaredwray/flat-cache
-----------
flatted
License: ISC
License File: node_modules/flatted/LICENSE
Copyright: Copyright (c) 2018-2020, Andrea Giammarchi, @WebReflection
Source: git+https://github.com/WebReflection/flatted.git
Link: https://github.com/WebReflection/flatted#readme
-----------
for-each
License: MIT
License File: node_modules/for-each/LICENSE
Copyright: Copyright (c) 2012 Raynos.
Source: git://github.com/Raynos/for-each.git
Link: https://github.com/Raynos/for-each
-----------
form-data
License: MIT
License File: node_modules/form-data/License
Copyright: Copyright (c) 2012 Felix Geisendörfer (*****@**********.***) and contributors
Source: git://github.com/form-data/form-data.git
Link: git://github.com/form-data/form-data.git
-----------
fs.realpath
License: ISC
License File: node_modules/fs.realpath/LICENSE
Copyright: Copyright (c) Isaac Z. Schlueter and Contributors
Source: git+https://github.com/isaacs/fs.realpath.git
Link: git+https://github.com/isaacs/fs.realpath.git
-----------
function-bind
License: MIT
License File: node_modules/function-bind/LICENSE
Copyright: Copyright (c) 2013 Raynos.
Source: https://github.com/Raynos/function-bind.git
Link: https://github.com/Raynos/function-bind
-----------
function.prototype.name
License: MIT
License File: node_modules/function.prototype.name/LICENSE
Copyright: Copyright (c) 2016 Jordan Harband
Source: git://github.com/es-shims/Function.prototype.name.git
Link: git://github.com/es-shims/Function.prototype.name.git
-----------
functions-have-names
License: MIT
License File: node_modules/functions-have-names/LICENSE
Copyright: Copyright (c) 2019 Jordan Harband
Source: git+https://github.com/inspect-js/functions-have-names.git
Link: https://github.com/inspect-js/functions-have-names#readme
-----------
gensync
License: MIT
License File: node_modules/gensync/LICENSE
Copyright: Copyright 2018 Logan Smyth <***********@*****.***>
Source: https://github.com/loganfsmyth/gensync.git
Link: https://github.com/loganfsmyth/gensync
-----------
get-caller-file
License: ISC
License File: node_modules/get-caller-file/LICENSE.md
Copyright: Copyright 2018 Stefan Penner
Source: git+https://github.com/stefanpenner/get-caller-file.git
Link: https://github.com/stefanpenner/get-caller-file#readme
-----------
get-intrinsic
License: MIT
License File: node_modules/get-intrinsic/LICENSE
Copyright: Copyright (c) 2020 Jordan Harband
Source: git+https://github.com/ljharb/get-intrinsic.git
Link: https://github.com/ljharb/get-intrinsic#readme
-----------
get-package-type
License: MIT
License File: node_modules/get-package-type/LICENSE
Copyright: Copyright (c) 2020 CFWare, LLC
Source: git+https://github.com/cfware/get-package-type.git
Link: https://github.com/cfware/get-package-type#readme
-----------
get-stream
License: MIT
License File: node_modules/get-stream/license
Copyright: Copyright (c) Sindre Sorhus <************@*****.***> (https://sindresorhus.com)
Source: sindresorhus/get-stream
Link: sindresorhus/get-stream
-----------
get-symbol-description
License: MIT
License File: node_modules/get-symbol-description/LICENSE
Copyright: Copyright (c) 2021 Inspect JS
Source: git+https://github.com/inspect-js/get-symbol-description.git
Link: https://github.com/inspect-js/get-symbol-description#readme
-----------
glob-parent
License: ISC
License File: node_modules/glob-parent/LICENSE
Copyright: Copyright (c) 2015, 2019 Elan Shanker
Source: gulpjs/glob-parent
Link: gulpjs/glob-parent
-----------
glob
License: ISC
License File: node_modules/glob/LICENSE
Copyright: Copyright (c) Isaac Z. Schlueter and Contributors
Source: git://github.com/isaacs/node-glob.git
Link: git://github.com/isaacs/node-glob.git
-----------
globals
License: MIT
License File: node_modules/globals/license
Copyright: Copyright (c) Sindre Sorhus <************@*****.***> (https://sindresorhus.com)
Source: sindresorhus/globals
Link: sindresorhus/globals
-----------
globalthis
License: MIT
License File: node_modules/globalthis/LICENSE
Copyright: Copyright (c) 2016 Jordan Harband
Source: git://github.com/ljharb/System.global.git
Link: git://github.com/ljharb/System.global.git
-----------
gopd
License: MIT
License File: node_modules/gopd/LICENSE
Copyright: Copyright (c) 2022 Jordan Harband
Source: git+https://github.com/ljharb/gopd.git
Link: https://github.com/ljharb/gopd#readme
-----------
graceful-fs
License: ISC
License File: node_modules/graceful-fs/LICENSE
Copyright: Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors
Source: https://github.com/isaacs/node-graceful-fs
Link: https://github.com/isaacs/node-graceful-fs
-----------
graphemer
License: MIT
License File: node_modules/graphemer/LICENSE
Copyright: Copyright 2020 Filament (Anomalous Technologies Limited)
Source: https://github.com/flmnt/graphemer.git
Link: https://github.com/flmnt/graphemer
-----------
has-bigints
License: MIT
License File: node_modules/has-bigints/LICENSE
Copyright: Copyright (c) 2019 Jordan Harband
Source: git+https://github.com/ljharb/has-bigints.git
Link: https://github.com/ljharb/has-bigints#readme
-----------
has-flag
License: MIT
License File: node_modules/has-flag/license
Copyright: Copyright (c) Sindre Sorhus <************@*****.***> (sindresorhus.com)
Source: sindresorhus/has-flag
Link: sindresorhus/has-flag
-----------
has-property-descriptors
License: MIT
License File: node_modules/has-property-descriptors/LICENSE
Copyright: Copyright (c) 2022 Inspect JS
Source: git+https://github.com/inspect-js/has-property-descriptors.git
Link: https://github.com/inspect-js/has-property-descriptors#readme
-----------
has-proto
License: MIT
License File: node_modules/has-proto/LICENSE
Copyright: Copyright (c) 2022 Inspect JS
Source: git+https://github.com/inspect-js/has-proto.git
Link: https://github.com/inspect-js/has-proto#readme
-----------
has-symbols