-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathNOTICE.txt
1731 lines (1725 loc) · 72.2 KB
/
NOTICE.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
Clickstream Analytics On AWS
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
Licensed under the Apache License Version 2.0 (the "License"). You may not use this file except
in compliance with the License. A copy of the License is located at http://www.apache.org/licenses/
or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied. See the License for the
specific language governing permissions and limitations under the License.
**********************
THIRD PARTY COMPONENTS
**********************
This software includes third party software subject to the following copyrights:
npm under the Artistic-2.0 license.
yallist under the ISC license.
write-file-atomic under the ISC license.
wrap-ansi under the MIT license.
ansi-styles under the MIT license.
strip-ansi under the MIT license.
string-width under the MIT license.
emoji-regex under the MIT license.
ansi-regex under the MIT license.
which under the ISC license.
isexe under the ISC license.
walk-up-path under the ISC license.
validate-npm-package-name under the ISC license.
validate-npm-package-license under the Apache-2.0 license.
spdx-expression-parse under the MIT license.
util-deprecate under the MIT license.
unique-slug under the ISC license.
unique-filename under the ISC license.
tuf-js under the MIT license.
treeverse under the ISC license.
tiny-relative-date under the MIT license.
text-table under the MIT license.
tar under the ISC license.
minipass under the ISC license.
fs-minipass under the ISC license.
supports-color under the MIT license.
ssri under the ISC license.
sprintf-js under the BSD-3-Clause license.
spdx-license-ids under the CC0-1.0 license.
spdx-exceptions under the CC-BY-3.0 license.
spdx-correct under the Apache-2.0 license.
socks-proxy-agent under the MIT license.
socks under the MIT license.
smart-buffer under the MIT license.
sigstore under the Apache-2.0 license.
signal-exit under the ISC license.
shebang-regex under the MIT license.
shebang-command under the MIT license.
semver under the ISC license.
safer-buffer under the MIT license.
retry under the MIT license.
read-package-json-fast under the ISC license.
read-cmd-shim under the ISC license.
read under the ISC license.
promzard under the ISC license.
promise-retry under the MIT license.
promise-inflight under the ISC license.
promise-call-limit under the ISC license.
promise-all-reject-late under the ISC license.
proggy under the ISC license.
proc-log under the ISC license.
postcss-selector-parser under the MIT license.
path-scurry under the BlueOak-1.0.0 license.
path-key under the MIT license.
parse-conflict-json under the ISC license.
pacote under the ISC license.
package-json-from-dist under the BlueOak-1.0.0 license.
p-map under the MIT license.
npm-user-validate under the BSD-2-Clause license.
npm-registry-fetch under the ISC license.
npm-profile under the ISC license.
npm-pick-manifest under the ISC license.
npm-packlist under the ISC license.
npm-package-arg under the ISC license.
npm-normalize-package-bin under the ISC license.
npm-install-checks under the BSD-2-Clause license.
npm-bundled under the ISC license.
npm-audit-report under the ISC license.
normalize-package-data under the BSD-2-Clause license.
nopt under the MIT license.
node-gyp under the MIT license.
negotiator under the MIT license.
mute-stream under the ISC license.
ms under the MIT license.
mkdirp under the MIT license.
minizlib under the MIT license.
minipass-sized under the ISC license.
minipass-pipeline under the ISC license.
minipass-flush under the ISC license.
minipass-fetch under the MIT license.
minipass-collect under the ISC license.
minimatch under the ISC license.
make-fetch-happen under the ISC license.
lru-cache under the ISC license.
libnpmversion under the ISC license.
libnpmteam under the ISC license.
libnpmsearch under the ISC license.
libnpmpublish under the ISC license.
libnpmpack under the ISC license.
libnpmorg under the ISC license.
libnpmhook under the ISC license.
libnpmfund under the ISC license.
libnpmexec under the ISC license.
libnpmdiff under the ISC license.
libnpmaccess under the ISC license.
just-diff-apply under the MIT license.
just-diff under the MIT license.
jsonparse under the MIT license.
json-stringify-nice under the ISC license.
json-parse-even-better-errors under the MIT license.
jsbn under the MIT license.
jackspeak under the BlueOak-1.0.0 license.
is-lambda under the MIT license.
is-fullwidth-code-point under the MIT license.
is-cidr under the BSD-2-Clause license.
ip-regex under the MIT license.
ip-address under the MIT license.
init-package-json under the ISC license.
ini under the ISC license.
indent-string under the MIT license.
imurmurhash under the MIT license.
ignore-walk under the ISC license.
iconv-lite under the MIT license.
https-proxy-agent under the MIT license.
http-proxy-agent under the MIT license.
http-cache-semantics under the BSD-2-Clause license.
hosted-git-info under the ISC license.
graceful-fs under the ISC license.
glob under the ISC license.
foreground-child under the ISC license.
fastest-levenshtein under the MIT license.
exponential-backoff under the Apache-2.0 license.
err-code under the MIT license.
env-paths under the MIT license.
encoding under the MIT license.
eastasianwidth under the MIT license.
diff under the BSD-3-Clause license.
debug under the MIT license.
cssesc under the MIT license.
cross-spawn under the MIT license.
common-ancestor-path under the ISC license.
color-name under the MIT license.
color-convert under the MIT license.
cmd-shim under the ISC license.
cli-columns under the MIT license.
clean-stack under the MIT license.
cidr-regex under the BSD-2-Clause license.
ci-info under the MIT license.
chownr under the ISC license.
chalk under the MIT license.
cacache under the ISC license.
brace-expansion under the MIT license.
binary-extensions under the MIT license.
bin-links under the ISC license.
balanced-match under the MIT license.
archy under the MIT license.
aproba under the ISC license.
aggregate-error under the MIT license.
agent-base under the MIT license.
abbrev under the ISC license.
@tufjs/models under the MIT license.
@tufjs/canonical-json under the MIT license.
@sigstore/verify under the Apache-2.0 license.
@sigstore/tuf under the Apache-2.0 license.
@sigstore/sign under the Apache-2.0 license.
@sigstore/protobuf-specs under the Apache-2.0 license.
@sigstore/core under the Apache-2.0 license.
@sigstore/bundle under the Apache-2.0 license.
@pkgjs/parseargs under the MIT license.
@npmcli/run-script under the ISC license.
@npmcli/redact under the ISC license.
@npmcli/query under the ISC license.
@npmcli/promise-spawn under the ISC license.
@npmcli/package-json under the ISC license.
@npmcli/node-gyp under the ISC license.
@npmcli/name-from-folder under the ISC license.
@npmcli/metavuln-calculator under the ISC license.
@npmcli/map-workspaces under the ISC license.
@npmcli/installed-package-contents under the ISC license.
@npmcli/git under the ISC license.
@npmcli/fs under the ISC license.
@npmcli/config under the ISC license.
@npmcli/arborist under the ISC license.
@npmcli/agent under the ISC license.
@isaacs/string-locale-compare under the ISC license.
@isaacs/cliui under the ISC license.
corepack under the MIT license.
yarn under the BSD-2-Clause license.
mercurial under the GPL-2.0-or-later license.
setuptools under the MIT license.
pip under the MIT license.
rpm under the MIT license.
gpg under the LGPL2.1+ (the library), GPL2+ (tests and examples) licenses.
@aashutoshrathi/word-wrap under the MIT license.
@adobe/css-tools under the MIT license.
@alloc/quick-lru under the MIT license.
@ampproject/remapping under the Apache-2.0 license.
@apideck/better-ajv-errors under the MIT license.
@aws-cdk/asset-awscli-v1 under the Apache-2.0 license.
@aws-cdk/asset-kubectl-v20 under the Apache-2.0 license.
@aws-cdk/asset-node-proxy-agent-v6 under the Apache-2.0 license.
@aws-cdk/aws-batch-alpha under the Apache-2.0 license.
@aws-cdk/aws-glue-alpha under the Apache-2.0 license.
@aws-cdk/aws-servicecatalogappregistry-alpha under the Apache-2.0 license.
@aws-crypto/crc32 under the Apache-2.0 license.
@aws-crypto/crc32c under the Apache-2.0 license.
@aws-crypto/ie11-detection under the Apache-2.0 license.
@aws-crypto/sha1-browser under the Apache-2.0 license.
@aws-crypto/sha256-browser under the Apache-2.0 license.
@aws-crypto/sha256-js under the Apache-2.0 license.
@aws-crypto/supports-web-crypto under the Apache-2.0 license.
@aws-crypto/util under the Apache-2.0 license.
@aws-lambda-powertools/commons under the MIT-0 license.
@aws-lambda-powertools/logger under the MIT-0 license.
@aws-lambda-powertools/metrics under the MIT-0 license.
@aws-sdk/client-acm under the Apache-2.0 license.
@aws-sdk/client-cloudformation under the Apache-2.0 license.
@aws-sdk/client-cloudwatch-events under the Apache-2.0 license.
@aws-sdk/client-cloudwatch under the Apache-2.0 license.
@aws-sdk/client-cognito-identity under the Apache-2.0 license.
@aws-sdk/client-dynamodb under the Apache-2.0 license.
@aws-sdk/client-ec2 under the Apache-2.0 license.
@aws-sdk/client-ecs under the Apache-2.0 license.
@aws-sdk/client-elastic-load-balancing-v2 under the Apache-2.0 license.
@aws-sdk/client-emr-serverless under the Apache-2.0 license.
@aws-sdk/client-eventbridge under the Apache-2.0 license.
@aws-sdk/client-glue under the Apache-2.0 license.
@aws-sdk/client-iam under the Apache-2.0 license.
@aws-sdk/client-kafka under the Apache-2.0 license.
@aws-sdk/client-kafkaconnect under the Apache-2.0 license.
@aws-sdk/client-kinesis under the Apache-2.0 license.
@aws-sdk/client-lambda under the Apache-2.0 license.
@aws-sdk/client-quicksight under the Apache-2.0 license.
@aws-sdk/client-redshift-data under the Apache-2.0 license.
@aws-sdk/client-redshift-serverless under the Apache-2.0 license.
@aws-sdk/client-redshift under the Apache-2.0 license.
@aws-sdk/client-route-53 under the Apache-2.0 license.
@aws-sdk/client-s3 under the Apache-2.0 license.
@aws-sdk/client-secrets-manager under the Apache-2.0 license.
@aws-sdk/client-sfn under the Apache-2.0 license.
@aws-sdk/client-sns under the Apache-2.0 license.
@aws-sdk/client-sqs under the Apache-2.0 license.
@aws-sdk/client-ssm under the Apache-2.0 license.
@aws-sdk/client-sso-oidc under the Apache-2.0 license.
@aws-sdk/client-sso under the Apache-2.0 license.
@aws-sdk/client-sts under the Apache-2.0 license.
@aws-sdk/core under the Apache-2.0 license.
@aws-sdk/credential-provider-cognito-identity under the Apache-2.0 license.
@aws-sdk/credential-provider-env under the Apache-2.0 license.
@aws-sdk/credential-provider-http under the Apache-2.0 license.
@aws-sdk/credential-provider-ini under the Apache-2.0 license.
@aws-sdk/credential-provider-node under the Apache-2.0 license.
@aws-sdk/credential-provider-process under the Apache-2.0 license.
@aws-sdk/credential-provider-sso under the Apache-2.0 license.
@aws-sdk/credential-provider-web-identity under the Apache-2.0 license.
@aws-sdk/credential-providers under the Apache-2.0 license.
@aws-sdk/endpoint-cache under the Apache-2.0 license.
@aws-sdk/lib-dynamodb under the Apache-2.0 license.
@aws-sdk/lib-storage under the Apache-2.0 license.
@aws-sdk/middleware-bucket-endpoint under the Apache-2.0 license.
@aws-sdk/middleware-endpoint-discovery under the Apache-2.0 license.
@aws-sdk/middleware-expect-continue under the Apache-2.0 license.
@aws-sdk/middleware-flexible-checksums under the Apache-2.0 license.
@aws-sdk/middleware-host-header under the Apache-2.0 license.
@aws-sdk/middleware-location-constraint under the Apache-2.0 license.
@aws-sdk/middleware-logger under the Apache-2.0 license.
@aws-sdk/middleware-recursion-detection under the Apache-2.0 license.
@aws-sdk/middleware-sdk-ec2 under the Apache-2.0 license.
@aws-sdk/middleware-sdk-route53 under the Apache-2.0 license.
@aws-sdk/middleware-sdk-s3 under the Apache-2.0 license.
@aws-sdk/middleware-sdk-sqs under the Apache-2.0 license.
@aws-sdk/middleware-signing under the Apache-2.0 license.
@aws-sdk/middleware-ssec under the Apache-2.0 license.
@aws-sdk/middleware-user-agent under the Apache-2.0 license.
@aws-sdk/region-config-resolver under the Apache-2.0 license.
@aws-sdk/s3-request-presigner under the Apache-2.0 license.
@aws-sdk/signature-v4-multi-region under the Apache-2.0 license.
@aws-sdk/token-providers under the Apache-2.0 license.
@aws-sdk/types under the Apache-2.0 license.
@aws-sdk/util-arn-parser under the Apache-2.0 license.
@aws-sdk/util-dynamodb under the Apache-2.0 license.
@aws-sdk/util-endpoints under the Apache-2.0 license.
@aws-sdk/util-format-url under the Apache-2.0 license.
@aws-sdk/util-locate-window under the Apache-2.0 license.
@aws-sdk/util-user-agent-browser under the Apache-2.0 license.
@aws-sdk/util-user-agent-node under the Apache-2.0 license.
@aws-sdk/util-utf8-browser under the Apache-2.0 license.
@aws-sdk/xhr-http-handler under the Apache-2.0 license.
@aws-sdk/xml-builder under the Apache-2.0 license.
@babel/code-frame under the MIT license.
@babel/compat-data under the MIT license.
@babel/core under the MIT license.
@babel/eslint-parser under the MIT license.
@babel/generator under the MIT license.
@babel/helper-annotate-as-pure under the MIT license.
@babel/helper-builder-binary-assignment-operator-visitor under the MIT license.
@babel/helper-compilation-targets under the MIT license.
@babel/helper-create-class-features-plugin under the MIT license.
@babel/helper-create-regexp-features-plugin under the MIT license.
@babel/helper-define-polyfill-provider under the MIT license.
@babel/helper-environment-visitor under the MIT license.
@babel/helper-function-name under the MIT license.
@babel/helper-hoist-variables under the MIT license.
@babel/helper-member-expression-to-functions under the MIT license.
@babel/helper-module-imports under the MIT license.
@babel/helper-module-transforms under the MIT license.
@babel/helper-optimise-call-expression under the MIT license.
@babel/helper-plugin-utils under the MIT license.
@babel/helper-remap-async-to-generator under the MIT license.
@babel/helper-replace-supers under the MIT license.
@babel/helper-simple-access under the MIT license.
@babel/helper-skip-transparent-expression-wrappers under the MIT license.
@babel/helper-split-export-declaration under the MIT license.
@babel/helper-string-parser under the MIT license.
@babel/helper-validator-identifier under the MIT license.
@babel/helper-validator-option under the MIT license.
@babel/helper-wrap-function under the MIT license.
@babel/helpers under the MIT license.
@babel/highlight under the MIT license.
@babel/parser under the MIT license.
@babel/plugin-bugfix-firefox-class-in-computed-class-key under the MIT license.
@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression under the MIT license.
@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining under the MIT license.
@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly under the MIT license.
@babel/plugin-proposal-class-properties under the MIT license.
@babel/plugin-proposal-decorators under the MIT license.
@babel/plugin-proposal-nullish-coalescing-operator under the MIT license.
@babel/plugin-proposal-numeric-separator under the MIT license.
@babel/plugin-proposal-optional-chaining under the MIT license.
@babel/plugin-proposal-private-methods under the MIT license.
@babel/plugin-proposal-private-property-in-object under the MIT license.
@babel/plugin-syntax-async-generators under the MIT license.
@babel/plugin-syntax-bigint under the MIT license.
@babel/plugin-syntax-class-properties under the MIT license.
@babel/plugin-syntax-class-static-block under the MIT license.
@babel/plugin-syntax-decorators under the MIT license.
@babel/plugin-syntax-dynamic-import under the MIT license.
@babel/plugin-syntax-export-namespace-from under the MIT license.
@babel/plugin-syntax-flow under the MIT license.
@babel/plugin-syntax-import-assertions under the MIT license.
@babel/plugin-syntax-import-attributes under the MIT license.
@babel/plugin-syntax-import-meta under the MIT license.
@babel/plugin-syntax-json-strings under the MIT license.
@babel/plugin-syntax-jsx under the MIT license.
@babel/plugin-syntax-logical-assignment-operators under the MIT license.
@babel/plugin-syntax-nullish-coalescing-operator under the MIT license.
@babel/plugin-syntax-numeric-separator under the MIT license.
@babel/plugin-syntax-object-rest-spread under the MIT license.
@babel/plugin-syntax-optional-catch-binding under the MIT license.
@babel/plugin-syntax-optional-chaining under the MIT license.
@babel/plugin-syntax-private-property-in-object under the MIT license.
@babel/plugin-syntax-top-level-await under the MIT license.
@babel/plugin-syntax-typescript under the MIT license.
@babel/plugin-syntax-unicode-sets-regex under the MIT license.
@babel/plugin-transform-arrow-functions under the MIT license.
@babel/plugin-transform-async-generator-functions under the MIT license.
@babel/plugin-transform-async-to-generator under the MIT license.
@babel/plugin-transform-block-scoped-functions under the MIT license.
@babel/plugin-transform-block-scoping under the MIT license.
@babel/plugin-transform-class-properties under the MIT license.
@babel/plugin-transform-class-static-block under the MIT license.
@babel/plugin-transform-classes under the MIT license.
@babel/plugin-transform-computed-properties under the MIT license.
@babel/plugin-transform-destructuring under the MIT license.
@babel/plugin-transform-dotall-regex under the MIT license.
@babel/plugin-transform-duplicate-keys under the MIT license.
@babel/plugin-transform-dynamic-import under the MIT license.
@babel/plugin-transform-exponentiation-operator under the MIT license.
@babel/plugin-transform-export-namespace-from under the MIT license.
@babel/plugin-transform-flow-strip-types under the MIT license.
@babel/plugin-transform-for-of under the MIT license.
@babel/plugin-transform-function-name under the MIT license.
@babel/plugin-transform-json-strings under the MIT license.
@babel/plugin-transform-literals under the MIT license.
@babel/plugin-transform-logical-assignment-operators under the MIT license.
@babel/plugin-transform-member-expression-literals under the MIT license.
@babel/plugin-transform-modules-amd under the MIT license.
@babel/plugin-transform-modules-commonjs under the MIT license.
@babel/plugin-transform-modules-systemjs under the MIT license.
@babel/plugin-transform-modules-umd under the MIT license.
@babel/plugin-transform-named-capturing-groups-regex under the MIT license.
@babel/plugin-transform-new-target under the MIT license.
@babel/plugin-transform-nullish-coalescing-operator under the MIT license.
@babel/plugin-transform-numeric-separator under the MIT license.
@babel/plugin-transform-object-rest-spread under the MIT license.
@babel/plugin-transform-object-super under the MIT license.
@babel/plugin-transform-optional-catch-binding under the MIT license.
@babel/plugin-transform-optional-chaining under the MIT license.
@babel/plugin-transform-parameters under the MIT license.
@babel/plugin-transform-private-methods under the MIT license.
@babel/plugin-transform-private-property-in-object under the MIT license.
@babel/plugin-transform-property-literals under the MIT license.
@babel/plugin-transform-react-constant-elements under the MIT license.
@babel/plugin-transform-react-display-name under the MIT license.
@babel/plugin-transform-react-jsx-development under the MIT license.
@babel/plugin-transform-react-jsx under the MIT license.
@babel/plugin-transform-react-pure-annotations under the MIT license.
@babel/plugin-transform-regenerator under the MIT license.
@babel/plugin-transform-reserved-words under the MIT license.
@babel/plugin-transform-runtime under the MIT license.
@babel/plugin-transform-shorthand-properties under the MIT license.
@babel/plugin-transform-spread under the MIT license.
@babel/plugin-transform-sticky-regex under the MIT license.
@babel/plugin-transform-template-literals under the MIT license.
@babel/plugin-transform-typeof-symbol under the MIT license.
@babel/plugin-transform-typescript under the MIT license.
@babel/plugin-transform-unicode-escapes under the MIT license.
@babel/plugin-transform-unicode-property-regex under the MIT license.
@babel/plugin-transform-unicode-regex under the MIT license.
@babel/plugin-transform-unicode-sets-regex under the MIT license.
@babel/preset-env under the MIT license.
@babel/preset-modules under the MIT license.
@babel/preset-react under the MIT license.
@babel/preset-typescript under the MIT license.
@babel/regjsgen under the MIT license.
@babel/runtime under the MIT license.
@babel/template under the MIT license.
@babel/traverse under the MIT license.
@babel/types under the MIT license.
@bcoe/v8-coverage under the MIT license.
@cloudscape-design/collection-hooks under the Apache-2.0 license.
@cloudscape-design/component-toolkit under the Apache-2.0 license.
@cloudscape-design/components under the Apache-2.0 license.
@cloudscape-design/design-tokens under the Apache-2.0 license.
@cloudscape-design/global-styles under the Apache-2.0 license.
@cloudscape-design/test-utils-core under the Apache-2.0 license.
@cloudscape-design/theming-runtime under the Apache-2.0 license.
@cspotcode/source-map-support under the MIT license.
@csstools/normalize.css under the CC0-1.0 license.
@csstools/postcss-cascade-layers under the CC0-1.0 license.
@csstools/postcss-color-function under the CC0-1.0 license.
@csstools/postcss-font-format-keywords under the CC0-1.0 license.
@csstools/postcss-hwb-function under the CC0-1.0 license.
@csstools/postcss-ic-unit under the CC0-1.0 license.
@csstools/postcss-is-pseudo-class under the CC0-1.0 license.
@csstools/postcss-nested-calc under the CC0-1.0 license.
@csstools/postcss-normalize-display-values under the CC0-1.0 license.
@csstools/postcss-oklab-function under the CC0-1.0 license.
@csstools/postcss-progressive-custom-properties under the CC0-1.0 license.
@csstools/postcss-stepped-value-functions under the CC0-1.0 license.
@csstools/postcss-text-decoration-shorthand under the CC0-1.0 license.
@csstools/postcss-trigonometric-functions under the CC0-1.0 license.
@csstools/postcss-unset-value under the CC0-1.0 license.
@csstools/selector-specificity under the CC0-1.0 license.
@dnd-kit/accessibility under the MIT license.
@dnd-kit/core under the MIT license.
@dnd-kit/sortable under the MIT license.
@dnd-kit/utilities under the MIT license.
@esbuild/aix-ppc64 under the MIT license.
@esbuild/android-arm64 under the MIT license.
@esbuild/android-arm under the MIT license.
@esbuild/android-x64 under the MIT license.
@esbuild/darwin-arm64 under the MIT license.
@esbuild/darwin-x64 under the MIT license.
@esbuild/freebsd-arm64 under the MIT license.
@esbuild/freebsd-x64 under the MIT license.
@esbuild/linux-arm64 under the MIT license.
@esbuild/linux-arm under the MIT license.
@esbuild/linux-ia32 under the MIT license.
@esbuild/linux-loong64 under the MIT license.
@esbuild/linux-mips64el under the MIT license.
@esbuild/linux-ppc64 under the MIT license.
@esbuild/linux-riscv64 under the MIT license.
@esbuild/linux-s390x under the MIT license.
@esbuild/linux-x64 under the MIT license.
@esbuild/netbsd-x64 under the MIT license.
@esbuild/openbsd-arm64 under the MIT license.
@esbuild/openbsd-x64 under the MIT license.
@esbuild/sunos-x64 under the MIT license.
@esbuild/win32-arm64 under the MIT license.
@esbuild/win32-ia32 under the MIT license.
@esbuild/win32-x64 under the MIT license.
@eslint-community/eslint-utils under the MIT license.
@eslint-community/regexpp under the MIT license.
@eslint/eslintrc under the MIT license.
@eslint/js under the MIT license.
@formatjs/ecma402-abstract under the MIT license.
@formatjs/fast-memoize under the MIT license.
@formatjs/icu-messageformat-parser under the MIT license.
@formatjs/icu-skeleton-parser under the MIT license.
@formatjs/intl-localematcher under the MIT license.
@humanwhocodes/config-array under the Apache-2.0 license.
@humanwhocodes/module-importer under the Apache-2.0 license.
@humanwhocodes/object-schema under the BSD-3-Clause license.
@istanbuljs/load-nyc-config under the ISC license.
@istanbuljs/schema under the MIT license.
@jest/console under the MIT license.
@jest/core under the MIT license.
@jest/environment under the MIT license.
@jest/expect-utils under the MIT license.
@jest/expect under the MIT license.
@jest/fake-timers under the MIT license.
@jest/globals under the MIT license.
@jest/reporters under the MIT license.
@jest/schemas under the MIT license.
@jest/source-map under the MIT license.
@jest/test-result under the MIT license.
@jest/test-sequencer under the MIT license.
@jest/transform under the MIT license.
@jest/types under the MIT license.
@jridgewell/gen-mapping under the MIT license.
@jridgewell/resolve-uri under the MIT license.
@jridgewell/set-array under the MIT license.
@jridgewell/source-map under the MIT license.
@jridgewell/sourcemap-codec under the MIT license.
@jridgewell/trace-mapping under the MIT license.
@jsep-plugin/assignment under the MIT license.
@jsep-plugin/regex under the MIT license.
@juggle/resize-observer under the Apache-2.0 license.
@leichtgewicht/ip-codec under the MIT license.
@nicolo-ribaudo/eslint-scope-5-internals under the MIT license.
@nodelib/fs.scandir under the MIT license.
@nodelib/fs.stat under the MIT license.
@nodelib/fs.walk under the MIT license.
@nolyfill/is-generator-function under the MIT license.
@nolyfill/shared under the MIT license.
@nolyfill/which-typed-array under the MIT license.
@nrwl/cli under the MIT license.
@nrwl/devkit under the MIT license.
@nrwl/tao under the MIT license.
@nrwl/workspace under the MIT license.
@parcel/watcher under the MIT license.
@pmmmwh/react-refresh-webpack-plugin under the MIT license.
@remix-run/router under the MIT license.
@rollup/plugin-babel under the MIT license.
@rollup/plugin-node-resolve under the MIT license.
@rollup/plugin-replace under the MIT license.
@rollup/pluginutils under the MIT license.
@rushstack/eslint-patch under the MIT license.
@sinclair/typebox under the MIT license.
@sinonjs/commons under the BSD-3-Clause license.
@sinonjs/fake-timers under the BSD-3-Clause license.
@sinonjs/samsam under the BSD-3-Clause license.
@sinonjs/text-encoding under the Apache-2.0 license.
@smithy/abort-controller under the Apache-2.0 license.
@smithy/chunked-blob-reader-native under the Apache-2.0 license.
@smithy/chunked-blob-reader under the Apache-2.0 license.
@smithy/config-resolver under the Apache-2.0 license.
@smithy/core under the Apache-2.0 license.
@smithy/credential-provider-imds under the Apache-2.0 license.
@smithy/eventstream-codec under the Apache-2.0 license.
@smithy/eventstream-serde-browser under the Apache-2.0 license.
@smithy/eventstream-serde-config-resolver under the Apache-2.0 license.
@smithy/eventstream-serde-node under the Apache-2.0 license.
@smithy/eventstream-serde-universal under the Apache-2.0 license.
@smithy/fetch-http-handler under the Apache-2.0 license.
@smithy/hash-blob-browser under the Apache-2.0 license.
@smithy/hash-node under the Apache-2.0 license.
@smithy/hash-stream-node under the Apache-2.0 license.
@smithy/invalid-dependency under the Apache-2.0 license.
@smithy/is-array-buffer under the Apache-2.0 license.
@smithy/md5-js under the Apache-2.0 license.
@smithy/middleware-compression under the Apache-2.0 license.
@smithy/middleware-content-length under the Apache-2.0 license.
@smithy/middleware-endpoint under the Apache-2.0 license.
@smithy/middleware-retry under the Apache-2.0 license.
@smithy/middleware-serde under the Apache-2.0 license.
@smithy/middleware-stack under the Apache-2.0 license.
@smithy/node-config-provider under the Apache-2.0 license.
@smithy/node-http-handler under the Apache-2.0 license.
@smithy/property-provider under the Apache-2.0 license.
@smithy/protocol-http under the Apache-2.0 license.
@smithy/querystring-builder under the Apache-2.0 license.
@smithy/querystring-parser under the Apache-2.0 license.
@smithy/service-error-classification under the Apache-2.0 license.
@smithy/shared-ini-file-loader under the Apache-2.0 license.
@smithy/signature-v4 under the Apache-2.0 license.
@smithy/smithy-client under the Apache-2.0 license.
@smithy/types under the Apache-2.0 license.
@smithy/url-parser under the Apache-2.0 license.
@smithy/util-base64 under the Apache-2.0 license.
@smithy/util-body-length-browser under the Apache-2.0 license.
@smithy/util-body-length-node under the Apache-2.0 license.
@smithy/util-buffer-from under the Apache-2.0 license.
@smithy/util-config-provider under the Apache-2.0 license.
@smithy/util-defaults-mode-browser under the Apache-2.0 license.
@smithy/util-defaults-mode-node under the Apache-2.0 license.
@smithy/util-endpoints under the Apache-2.0 license.
@smithy/util-hex-encoding under the Apache-2.0 license.
@smithy/util-middleware under the Apache-2.0 license.
@smithy/util-retry under the Apache-2.0 license.
@smithy/util-stream-node under the Apache-2.0 license.
@smithy/util-stream under the Apache-2.0 license.
@smithy/util-uri-escape under the Apache-2.0 license.
@smithy/util-utf8 under the Apache-2.0 license.
@smithy/util-waiter under the Apache-2.0 license.
@surma/rollup-plugin-off-main-thread under the Apache-2.0 license.
@svgr/babel-plugin-add-jsx-attribute under the MIT license.
@svgr/babel-plugin-remove-jsx-attribute under the MIT license.
@svgr/babel-plugin-remove-jsx-empty-expression under the MIT license.
@svgr/babel-plugin-replace-jsx-attribute-value under the MIT license.
@svgr/babel-plugin-svg-dynamic-title under the MIT license.
@svgr/babel-plugin-svg-em-dimensions under the MIT license.
@svgr/babel-plugin-transform-react-native-svg under the MIT license.
@svgr/babel-plugin-transform-svg-component under the MIT license.
@svgr/babel-preset under the MIT license.
@svgr/core under the MIT license.
@svgr/hast-util-to-babel-ast under the MIT license.
@svgr/plugin-jsx under the MIT license.
@svgr/plugin-svgo under the MIT license.
@svgr/webpack under the MIT license.
@testing-library/dom under the MIT license.
@testing-library/jest-dom under the MIT license.
@testing-library/react under the MIT license.
@testing-library/user-event under the MIT license.
@tootallnate/once under the MIT license.
@trysound/sax under the ISC license.
@tsconfig/node10 under the MIT license.
@tsconfig/node12 under the MIT license.
@tsconfig/node14 under the MIT license.
@tsconfig/node16 under the MIT license.
@types/aria-query under the MIT license.
@types/aws-lambda under the MIT license.
@types/babel__core under the MIT license.
@types/babel__generator under the MIT license.
@types/babel__template under the MIT license.
@types/babel__traverse under the MIT license.
@types/body-parser under the MIT license.
@types/bonjour under the MIT license.
@types/connect-history-api-fallback under the MIT license.
@types/connect under the MIT license.
@types/cookiejar under the MIT license.
@types/eslint under the MIT license.
@types/estree under the MIT license.
@types/express-serve-static-core under the MIT license.
@types/express under the MIT license.
@types/graceful-fs under the MIT license.
@types/html-minifier-terser under the MIT license.
@types/http-errors under the MIT license.
@types/http-proxy under the MIT license.
@types/istanbul-lib-coverage under the MIT license.
@types/istanbul-lib-report under the MIT license.
@types/istanbul-reports under the MIT license.
@types/jest under the MIT license.
@types/json-schema under the MIT license.
@types/json5 under the MIT license.
@types/jsonpath-plus under the MIT license.
@types/jsonwebtoken under the MIT license.
@types/lodash under the MIT license.
@types/methods under the MIT license.
@types/mime under the MIT license.
@types/mock-fs under the MIT license.
@types/mustache under the MIT license.
@types/node-fetch under the MIT license.
@types/node-forge under the MIT license.
@types/node under the MIT license.
@types/parse-json under the MIT license.
@types/prettier under the MIT license.
@types/prop-types under the MIT license.
@types/q under the MIT license.
@types/qs under the MIT license.
@types/range-parser under the MIT license.
@types/react-dom under the MIT license.
@types/react under the MIT license.
@types/resolve under the MIT license.
@types/retry under the MIT license.
@types/semver under the MIT license.
@types/send under the MIT license.
@types/serve-index under the MIT license.
@types/serve-static under the MIT license.
@types/sinon under the MIT license.
@types/sinonjs__fake-timers under the MIT license.
@types/sockjs under the MIT license.
@types/stack-utils under the MIT license.
@types/superagent under the MIT license.
@types/supertest under the MIT license.
@types/testing-library__jest-dom under the MIT license.
@types/trusted-types under the MIT license.
@types/uuid under the MIT license.
@types/ws under the MIT license.
@types/yargs-parser under the MIT license.
@types/yargs under the MIT license.
@typescript-eslint/eslint-plugin under the MIT license.
@typescript-eslint/experimental-utils under the MIT license.
@typescript-eslint/parser under the BSD-2-Clause license.
@typescript-eslint/scope-manager under the MIT license.
@typescript-eslint/type-utils under the MIT license.
@typescript-eslint/types under the MIT license.
@typescript-eslint/typescript-estree under the BSD-2-Clause license.
@typescript-eslint/utils under the MIT license.
@typescript-eslint/visitor-keys under the MIT license.
@ungap/structured-clone under the ISC license.
@vercel/ncc under the MIT license.
@webassemblyjs/ast under the MIT license.
@webassemblyjs/floating-point-hex-parser under the MIT license.
@webassemblyjs/helper-api-error under the MIT license.
@webassemblyjs/helper-buffer under the MIT license.
@webassemblyjs/helper-numbers under the MIT license.
@webassemblyjs/helper-wasm-bytecode under the MIT license.
@webassemblyjs/helper-wasm-section under the MIT license.
@webassemblyjs/ieee754 under the MIT license.
@webassemblyjs/leb128 under the Apache-2.0 license.
@webassemblyjs/utf8 under the MIT license.
@webassemblyjs/wasm-edit under the MIT license.
@webassemblyjs/wasm-gen under the MIT license.
@webassemblyjs/wasm-opt under the MIT license.
@webassemblyjs/wasm-parser under the MIT license.
@webassemblyjs/wast-printer under the MIT license.
@xtuc/ieee754 under the BSD-3-Clause license.
@xtuc/long under the Apache-2.0 license.
@yarnpkg/lockfile under the BSD-2-Clause license.
@yarnpkg/parsers under the BSD-2-Clause license.
@zkochan/js-yaml under the MIT license.
abab under the BSD-3-Clause license.
accepts under the MIT license.
ace-builds under the BSD-3-Clause license.
acorn-globals under the MIT license.
acorn-jsx under the MIT license.
acorn-walk under the MIT license.
acorn under the MIT license.
address under the MIT license.
adjust-sourcemap-loader under the MIT license.
ajv-formats under the MIT license.
ajv-keywords under the MIT license.
ajv under the MIT license.
amazon-quicksight-embedding-sdk under the Apache-2.0 license.
ansi-colors under the MIT license.
ansi-escapes under the MIT license.
ansi-html-community under the Apache-2.0 license.
any-promise under the MIT license.
anymatch under the ISC license.
arg under the MIT license.
argparse under the Python-2.0 license.
aria-query under the Apache-2.0 license.
array-buffer-byte-length under the MIT license.
array-flatten under the MIT license.
array-includes under the MIT license.
array-union under the MIT license.
array.prototype.filter under the MIT license.
array.prototype.findlast under the MIT license.
array.prototype.findlastindex under the MIT license.
array.prototype.flat under the MIT license.
array.prototype.flatmap under the MIT license.
array.prototype.reduce under the MIT license.
array.prototype.toreversed under the MIT license.
array.prototype.tosorted under the MIT license.
arraybuffer.prototype.slice under the MIT license.
asap under the MIT license.
asn1.js under the MIT license.
assert-browserify under the MIT license.
ast-types-flow under the MIT license.
async under the MIT license.
asynckit under the MIT license.
at-least-node under the ISC license.
autoprefixer under the MIT license.
available-typed-arrays under the MIT license.
aws-cdk-lib under the Apache-2.0 license.
aws-cdk under the Apache-2.0 license.
aws-sdk-client-mock-jest under the MIT license.
aws-sdk-client-mock under the MIT license.
axe-core under the MPL-2.0 license.
axios under the MIT license.
axobject-query under the Apache-2.0 license.
babel-jest under the MIT license.
babel-loader under the MIT license.
babel-plugin-istanbul under the BSD-3-Clause license.
babel-plugin-jest-hoist under the MIT license.
babel-plugin-macros under the MIT license.
babel-plugin-named-asset-import under the MIT license.
babel-plugin-polyfill-corejs2 under the MIT license.
babel-plugin-polyfill-corejs3 under the MIT license.
babel-plugin-polyfill-regenerator under the MIT license.
babel-plugin-transform-react-remove-prop-types under the MIT license.
babel-preset-current-node-syntax under the MIT license.
babel-preset-jest under the MIT license.
babel-preset-react-app under the MIT license.
base64-js under the MIT license.
batch under the MIT license.
bfj under the MIT license.
big.js under the MIT license.
bl under the MIT license.
bluebird under the MIT license.
bn.js under the MIT license.
body-parser under the MIT license.
bonjour-service under the MIT license.
boolbase under the ISC license.
bowser under the MIT license.
braces under the MIT license.
brorand under the MIT license.
browser-process-hrtime under the BSD-2-Clause license.
browserify-aes under the MIT license.
browserify-cipher under the MIT license.
browserify-des under the MIT license.
browserify-rsa under the MIT license.
browserify-sign under the ISC license.
browserify-url under the MIT license.
browserify-util under the MIT license.
browserslist under the MIT license.
bs-logger under the MIT license.
bser under the Apache-2.0 license.
buffer-equal-constant-time under the BSD-3-Clause license.
buffer-from under the MIT license.
buffer-xor under the MIT license.
buffer under the MIT license.
builtin-modules under the MIT license.
builtin-status-codes under the MIT license.
builtins under the MIT license.
bytes under the MIT license.
call-bind under the MIT license.
callsites under the MIT license.
camel-case under the MIT license.
camelcase-css under the MIT license.
camelcase under the MIT license.
caniuse-api under the MIT license.
caniuse-lite under the CC-BY-4.0 license.
case-sensitive-paths-webpack-plugin under the MIT license.
cdk-bootstrapless-synthesizer under the Apache-2.0 license.
cdk-nag under the Apache-2.0 license.
char-regex under the MIT license.
check-types under the MIT license.
chokidar under the MIT license.
chrome-trace-event under the MIT license.
cidr-block under the MIT license.
cipher-base under the MIT license.
cjs-module-lexer under the MIT license.
classnames under the MIT license.
clean-css under the MIT license.
cli-cursor under the MIT license.
cli-spinners under the MIT license.
cliui under the ISC license.
clone under the MIT license.
clsx under the MIT license.
co under the MIT license.
coa under the MIT license.
collect-v8-coverage under the MIT license.
colord under the MIT license.
colorette under the MIT license.
combined-stream under the MIT license.
commander under the MIT license.
common-tags under the MIT license.
commondir under the MIT license.
component-emitter under the MIT license.
compressible under the MIT license.
compression under the MIT license.
concat-map under the MIT license.
confusing-browser-globals under the MIT license.
connect-history-api-fallback under the MIT license.
constructs under the Apache-2.0 license.
content-disposition under the MIT license.
content-type under the MIT license.
convert-source-map under the MIT license.
cookie-signature under the MIT license.
cookie under the MIT license.
cookiejar under the MIT license.
core-js-compat under the MIT license.
core-js-pure under the MIT license.
core-js under the MIT license.
core-util-is under the MIT license.
cosmiconfig under the MIT license.
create-ecdh under the MIT license.
create-hash under the MIT license.
create-hmac under the MIT license.
create-jest under the MIT license.
create-require under the MIT license.
cron-parser under the MIT license.
cross-fetch under the MIT license.
crypto-browserify under the MIT license.
crypto-js under the MIT license.
crypto-random-string under the MIT license.
css-blank-pseudo under the CC0-1.0 license.
css-declaration-sorter under the ISC license.
css-has-pseudo under the CC0-1.0 license.
css-loader under the MIT license.
css-minimizer-webpack-plugin under the MIT license.
css-prefers-color-scheme under the CC0-1.0 license.
css-select-base-adapter under the MIT license.
css-select under the BSD-2-Clause license.
css-selector-tokenizer under the MIT license.
css-tree under the MIT license.
css-what under the BSD-2-Clause license.
css.escape under the MIT license.
cssdb under the CC0-1.0 license.
cssnano-preset-default under the MIT license.
cssnano-utils under the MIT license.
cssnano under the MIT license.
csso under the MIT license.
cssom under the MIT license.
cssstyle under the MIT license.
csstype under the MIT license.
csv-parser under the MIT license.
d3-path under the BSD-3-Clause license.
d3-shape under the BSD-3-Clause license.
damerau-levenshtein under the BSD-2-Clause license.
data-urls under the MIT license.
data-view-buffer under the MIT license.
data-view-byte-length under the MIT license.
data-view-byte-offset under the MIT license.
date-fns under the MIT license.
decimal.js under the MIT license.
dedent under the MIT license.
deep-equal under the MIT license.
deep-is under the MIT license.
deepmerge under the MIT license.
default-gateway under the BSD-2-Clause license.
define-data-property under the MIT license.
define-lazy-prop under the MIT license.
define-properties under the MIT license.
delayed-stream under the MIT license.
depd under the MIT license.
dequal under the MIT license.
des.js under the MIT license.
destroy under the MIT license.
detect-newline under the MIT license.
detect-node under the MIT license.
detect-port-alt under the MIT license.
dezalgo under the ISC license.
didyoumean under the Apache-2.0 license.
diff-sequences under the MIT license.
diffie-hellman under the MIT license.
dir-glob under the MIT license.
discontinuous-range under the MIT license.
dlv under the MIT license.
dns-packet under the MIT license.
doctrine under the Apache-2.0 license.
dom-accessibility-api under the MIT license.
dom-converter under the MIT license.
dom-helpers under the MIT license.
dom-serializer under the MIT license.
domelementtype under the BSD-2-Clause license.
domexception under the MIT license.
domhandler under the BSD-2-Clause license.
domutils under the BSD-2-Clause license.
dot-case under the MIT license.
dotenv-expand under the BSD-2-Clause license.
dotenv under the BSD-2-Clause license.
duplexer under the MIT license.
ecdsa-sig-formatter under the Apache-2.0 license.
ee-first under the MIT license.
ejs under the Apache-2.0 license.
electron-to-chromium under the ISC license.
elliptic under the MIT license.
emittery under the MIT license.
emojis-list under the MIT license.
encodeurl under the MIT license.
end-of-stream under the MIT license.
enhanced-resolve under the MIT license.
enquirer under the MIT license.
entities under the BSD-2-Clause license.
error-ex under the MIT license.
error-stack-parser under the MIT license.
es-abstract under the MIT license.
es-array-method-boxes-properly under the MIT license.
es-define-property under the MIT license.
es-errors under the MIT license.
es-get-iterator under the MIT license.
es-iterator-helpers under the MIT license.
es-module-lexer under the MIT license.
es-object-atoms under the MIT license.
es-set-tostringtag under the MIT license.
es-shim-unscopables under the MIT license.
es-to-primitive under the MIT license.
es6-object-assign under the MIT license.
esbuild-plugin-inline-image under the MIT license.
esbuild-plugin-sass under the ISC license.
esbuild under the MIT license.
escalade under the MIT license.
escape-html under the MIT license.
escape-string-regexp under the MIT license.
escodegen under the BSD-2-Clause license.
eslint-config-prettier under the MIT license.
eslint-config-react-app under the MIT license.
eslint-config-standard-with-typescript under the MIT license.
eslint-config-standard under the MIT license.
eslint-import-resolver-node under the MIT license.
eslint-import-resolver-typescript under the ISC license.
eslint-module-utils under the MIT license.
eslint-plugin-es under the MIT license.
eslint-plugin-flowtype under the BSD-3-Clause license.
eslint-plugin-import under the MIT license.
eslint-plugin-jest under the MIT license.
eslint-plugin-jsx-a11y under the MIT license.
eslint-plugin-n under the MIT license.
eslint-plugin-promise under the ISC license.
eslint-plugin-react-hooks under the MIT license.
eslint-plugin-react under the MIT license.
eslint-plugin-testing-library under the MIT license.
eslint-scope under the BSD-2-Clause license.
eslint-utils under the MIT license.
eslint-visitor-keys under the Apache-2.0 license.
eslint-webpack-plugin under the MIT license.
eslint under the MIT license.
espree under the BSD-2-Clause license.
esprima under the BSD-2-Clause license.
esquery under the BSD-3-Clause license.
esrecurse under the BSD-2-Clause license.
estraverse under the BSD-2-Clause license.
estree-walker under the MIT license.
esutils under the BSD-2-Clause license.
etag under the MIT license.
eventemitter3 under the MIT license.
events under the MIT license.
evp_bytestokey under the MIT license.
execa under the MIT license.
expect under the MIT license.
express-validator under the MIT license.