-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathNOTICE
More file actions
8748 lines (8198 loc) · 272 KB
/
NOTICE
File metadata and controls
8748 lines (8198 loc) · 272 KB
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
# KAI Scheduler
Copyright Copyright 2025 NVIDIA CORPORATION
This project was originally forked from kube-batch in 2019, therefore it includes core components from kube-batch which are licensed under the Apache License, Version 2.0.
Copyright (c) The Kubernetes Authors.
This project includes components derived from kube-batch, originally developed by The Kubernetes Authors.
The `K8sFramework` struct in pkg/common/k8s_utils/framework_handle.go file was originally forked from volcano-sh/volcano, which is licensed under the Apache License, Version 2.0.
Copyright 2020 The Volcano Authors.
This file was originally developed by the Volcano Authors.
This project includes components from kueue, which is licensed under the Apache License, Version 2.0.
Copyright (c) The Kubernetes Authors.
This project includes components derived from kueue, originally developed by The Kubernetes Authors.
This project also includes software components licensed under various open-source licenses. The following licenses apply to the components used in this project:
## MIT License
- MIT License
- MIT No Attribution
## Apache License
- Apache License 2.0
## BSD Licenses
- BSD 3-clause "New" or "Revised" License
- BSD 2-clause "Simplified" License
- BSD Zero Clause License
## ISC License
- ISC License
## Eclipse Public License (EPL)
- Eclipse Public License 1.0
- Eclipse Public License 2.0
## GNU General Public License (GPL)
- GNU General Public License v2.0 or later
- GNU General Public License v2.0 with Classpath Exception
## GNU Lesser General Public License (LGPL)
- GNU Lesser General Public License v2.1 or later
- GNU Lesser General Public License v2.1 only
- GNU Lesser General Public License v3.0 or later
## GNU Library General Public License
- GNU Library General Public License v2 only
## Eclipse Distribution License (EDL)
- Eclipse Distribution License - v 1.0
## Mozilla Public License (MPL)
- Mozilla Public License 2.0
## Creative Commons Licenses
- Creative Commons Zero v1.0 Universal
- Creative Commons Attribution 4.0
- Creative Commons Attribution Non Commercial 3.0
## Other Licenses
- The Unlicense
- X.Net License
- Python Software Foundation License 2.0
- Expat License
- Academic Free License v2.1
- Common Development and Distribution License 1.1
- Do What The F*ck You Want To Public License
- Universal Permissive License v1.0
- Indiana University Extreme! Lab Software License
- Basic Proprietary Commercial License
These licenses apply to the components used in this project and are in compliance with the corresponding open-source licensing terms. For further information on each specific license, please refer to the official documentation or contact the original authors of the components.
---
This NOTICE file is provided for informational purposes and is added to all components of the **Run.ai** project, including those that do not directly use the above licenses, to ensure compliance and transparency. It does not modify any license agreements or legal obligations associated with the project components.
To obtain source code for software provided under licenses
that require redistribution of source code, including GPL, LGPL,
AGPL, MPL, EPL - contact oss-requests@nvidia.com.
This offer is valid for a period of three (3) years from the
date of the distribution of this product by NVIDIA CORPORATION.
---
## The following components are included in this product:
aashutoshrathi/word-wrap
Licensed under the MIT License
Copyright (c) 2014-2016, Jon Schlinkert,Copyright © 2017, Jon Schlinkert.
achrinza/node-ipc
Licensed under the MIT License
Copyright (c) 2020 Brandon Nozaki Miller
actions/artifact
Licensed under the MIT License
Copyright 2019 GitHub
actions/cache
Licensed under the MIT License
Copyright 2019 GitHub
actions/core
Licensed under the MIT License
Copyright 2019 GitHub
actions/exec
Licensed under the MIT License
Copyright 2019 GitHub
actions/github
Licensed under the MIT License
Copyright 2019 GitHub
actions/glob
Licensed under the MIT License
Copyright 2019 GitHub
actions/http-client
Licensed under the MIT License
Copyright 2019 GitHub
actions/io
Licensed under the MIT License
Copyright 2019 GitHub
actions/tool-cache
Licensed under the MIT License
Copyright 2019 GitHub
algolia/cache-browser-local-storage
Licensed under the MIT License
Copyright (c) Algolia <support@algolia.com>
algolia/cache-common
Licensed under the MIT License
Copyright (c) Algolia <support@algolia.com>
algolia/cache-in-memory
Licensed under the MIT License
Copyright (c) Algolia <support@algolia.com>
algolia/client-account
Licensed under the MIT License
Copyright (c) Algolia <support@algolia.com>
algolia/client-analytics
Licensed under the MIT License
Copyright (c) Algolia <support@algolia.com>
algolia/client-common
Licensed under the MIT License
Copyright (c) Algolia <support@algolia.com>
algolia/client-personalization
Licensed under the MIT License
Copyright (c) Algolia <support@algolia.com>
algolia/client-search
Licensed under the MIT License
Copyright (c) Algolia <support@algolia.com>
algolia/logger-common
Licensed under the MIT License
Copyright (c) Algolia <support@algolia.com>
algolia/logger-console
Licensed under the MIT License
Copyright (c) Algolia <support@algolia.com>
algolia/requester-browser-xhr
Licensed under the MIT License
Copyright (c) Algolia <support@algolia.com>
algolia/requester-common
Licensed under the MIT License
Copyright (c) Algolia <support@algolia.com>
algolia/requester-node-http
Licensed under the MIT License
Copyright (c) Algolia <support@algolia.com>
algolia/transporter
Licensed under the MIT License
Copyright (c) Algolia <support@algolia.com>
amplitude/analytics-browser
Licensed under the MIT License
Copyright (c) 2022 Amplitude Analytics
amplitude/analytics-client-common
Licensed under the MIT License
Copyright (c) 2022 Amplitude Analytics
amplitude/analytics-connector
Licensed under the MIT License
Copyright (c) 2020 Amplitude Analytics
amplitude/analytics-core
Licensed under the MIT License
Copyright (c) 2022 Amplitude Analytics
amplitude/analytics-remote-config
Licensed under the MIT License
Copyright (c) 2022 Amplitude Analytics
amplitude/analytics-types
Licensed under the MIT License
Copyright (c) 2022 Amplitude Analytics
amplitude/experiment-core
Licensed under the MIT License
Copyright (c) 2020 Amplitude Analytics
amplitude/plugin-autocapture-browser
Licensed under the MIT License
Copyright (c) 2022 Amplitude Analytics
amplitude/plugin-page-view-tracking-browser
Licensed under the MIT License
Copyright (c) 2022 Amplitude Analytics
antfu/utils
Licensed under the MIT License
Copyright (c) 2021 Anthony Fu <https://github.com/antfu>
apidevtools/json-schema-ref-parser
Licensed under the MIT License
Copyright (c) 2015 James Messinger
apidevtools/openapi-schemas
Licensed under the MIT License
Copyright (c) 2019 James Messinger
apidevtools/swagger-methods
Licensed under the MIT License
Copyright (c) 2015 James Messinger
apidevtools/swagger-parser
Licensed under the MIT License
Copyright (c) 2015 James Messinger
azure/abort-controller
Licensed under the MIT License
Copyright (c) 2018 Microsoft
azure/core-asynciterator-polyfill
Licensed under the MIT License
Copyright (c) 2018 Microsoft
azure/core-auth
Licensed under the MIT License
Copyright (c) 2018 Microsoft
azure/core-http
Licensed under the MIT License
Copyright (c) 2018 Microsoft
azure/core-lro
Licensed under the MIT License
Copyright (c) 2018 Microsoft
azure/core-paging
Licensed under the MIT License
Copyright (c) 2018 Microsoft
azure/core-tracing
Licensed under the MIT License
Copyright (c) 2018 Microsoft
azure/core-util
Licensed under the MIT License
Copyright (c) 2018 Microsoft
azure/logger
Licensed under the MIT License
Copyright (c) 2018 Microsoft
azure/ms-rest-js
Licensed under the MIT License
Copyright (c) Microsoft Corporation. All rights reserved.
azure/storage-blob
Licensed under the MIT License
Copyright (c) 2018 Microsoft
babel/code-frame
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/compat-data
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/core
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/eslint-parser
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/generator
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helper-annotate-as-pure
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helper-builder-binary-assignment-operator-visitor
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helper-compilation-targets
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helper-create-class-features-plugin
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helper-create-regexp-features-plugin
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helper-define-polyfill-provider
Licensed under the MIT License
Copyright (c) 2020-present Nicolò Ribaudo and other contributors
babel/helper-environment-visitor
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helper-explode-assignable-expression
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helper-function-name
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helper-get-function-arity
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helper-hoist-variables
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helper-member-expression-to-functions
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helper-module-imports
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helper-module-transforms
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helper-optimise-call-expression
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helper-plugin-utils
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helper-remap-async-to-generator
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helper-replace-supers
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helper-simple-access
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helper-skip-transparent-expression-wrappers
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helper-split-export-declaration
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helper-string-parser
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helper-validator-identifier
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helper-validator-option
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helper-wrap-function
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/helpers
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/highlight
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/parser
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-proposal-async-generator-functions
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-proposal-class-properties
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-proposal-class-static-block
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-proposal-decorators
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-proposal-dynamic-import
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-proposal-export-default-from
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-proposal-export-namespace-from
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-proposal-json-strings
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-proposal-logical-assignment-operators
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-proposal-nullish-coalescing-operator
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-proposal-numeric-separator
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-proposal-object-rest-spread
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-proposal-optional-catch-binding
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-proposal-optional-chaining
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-proposal-private-methods
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-proposal-private-property-in-object
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-proposal-unicode-property-regex
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-syntax-async-generators
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-syntax-class-properties
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-syntax-class-static-block
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-syntax-decorators
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-syntax-dynamic-import
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-syntax-export-default-from
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-syntax-export-namespace-from
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-syntax-flow
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-syntax-import-assertions
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-syntax-import-attributes
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-syntax-import-meta
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-syntax-json-strings
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-syntax-jsx
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-syntax-logical-assignment-operators
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-syntax-numeric-separator
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-syntax-object-rest-spread
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-syntax-optional-catch-binding
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-syntax-optional-chaining
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-syntax-private-property-in-object
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-syntax-top-level-await
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-syntax-typescript
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-syntax-unicode-sets-regex
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-arrow-functions
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-async-generator-functions
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-async-to-generator
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-block-scoped-functions
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-block-scoping
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-class-properties
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-class-static-block
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-classes
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-computed-properties
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-destructuring
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-dotall-regex
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-duplicate-keys
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-dynamic-import
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-exponentiation-operator
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-export-namespace-from
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-flow-strip-types
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-for-of
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-function-name
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-json-strings
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-literals
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-logical-assignment-operators
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-member-expression-literals
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-modules-amd
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-modules-commonjs
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-modules-systemjs
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-modules-umd
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-named-capturing-groups-regex
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-new-target
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-nullish-coalescing-operator
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-numeric-separator
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-object-rest-spread
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-object-super
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-optional-catch-binding
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-optional-chaining
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-parameters
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-private-methods
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-private-property-in-object
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-property-literals
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-react-display-name
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-react-jsx
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-react-jsx-development
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-react-pure-annotations
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-regenerator
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-reserved-words
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-runtime
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-shorthand-properties
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-spread
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-sticky-regex
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-template-literals
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-typeof-symbol
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-typescript
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-unicode-escapes
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-unicode-property-regex
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-unicode-regex
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/plugin-transform-unicode-sets-regex
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/preset-env
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/preset-modules
Licensed under the MIT License
Copyright (c) 2020 Babel
babel/preset-react
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/preset-typescript
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/register
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/regjsgen
Licensed under the MIT License
Copyright 2014-2020 Benjamin Tan <https://ofcr.se/>
babel/runtime
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/runtime-corejs3
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/template
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/traverse
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
babel/types
Licensed under the MIT License
Copyright (c) 2014-present Sebastian McKenzie and other contributors
bahmutov/print-env
Licensed under the MIT License
Copyright (c) 2017 Gleb Bahmutov <gleb.bahmutov@gmail.com>
braintree/sanitize-url
Licensed under the MIT License
Copyright (c) 2017 Braintree
commitlint/cli
Licensed under the MIT License
Copyright (c) 2016 - present Mario Nebl
commitlint/config-conventional
Licensed under the MIT License
Copyright (c) 2016 - present Mario Nebl
commitlint/config-validator
Licensed under the MIT License
Copyright (c) 2016 - present Mario Nebl
commitlint/ensure
Licensed under the MIT License
Copyright (c) 2016 - present Mario Nebl
commitlint/execute-rule
Licensed under the MIT License
Copyright (c) 2016 - present Mario Nebl
commitlint/format
Licensed under the MIT License
Copyright (c) 2016 - present Mario Nebl
commitlint/is-ignored
Licensed under the MIT License
Copyright (c) 2016 - present Mario Nebl
commitlint/lint
Licensed under the MIT License
Copyright (c) 2016 - present Mario Nebl
commitlint/load
Licensed under the MIT License
Copyright (c) 2016 - present Mario Nebl
commitlint/message
Licensed under the MIT License
Copyright (c) 2016 - present Mario Nebl
commitlint/parse
Licensed under the MIT License
Copyright (c) 2016 - present Mario Nebl
commitlint/read
Licensed under the MIT License
Copyright (c) 2016 - present Mario Nebl
commitlint/resolve-extends
Licensed under the MIT License
Copyright (c) 2016 - present Mario Nebl
commitlint/rules
Licensed under the MIT License
Copyright (c) 2016 - present Mario Nebl
commitlint/to-lines
Licensed under the MIT License
Copyright (c) 2016 - present Mario Nebl
commitlint/top-level
Licensed under the MIT License
Copyright (c) 2016 - present Mario Nebl
commitlint/types
Licensed under the MIT License
Copyright (c) 2016 - present Mario Nebl
cspotcode/source-map-consumer
Licensed under the BSD-3-Clause License
Copyright (c) 2009-2011, Mozilla Foundation and contributors
cspotcode/source-map-support
Licensed under the MIT License
Copyright (c) 2014 Evan Wallace
dabh/diagnostics
Licensed under the MIT License
Copyright (c) 2015 Arnout Kazemier, Martijn Swaagman, the Contributors.
design-systems/utils
Licensed under the MIT License
Copyright (c) 2020 Intuit
devtools-ds/object-inspector
Licensed under the MIT License
Copyright (c) 2020 Intuit
devtools-ds/object-parser
Licensed under the MIT License
Copyright (c) 2020 Intuit
devtools-ds/themes
Licensed under the MIT License
Copyright (c) 2020 Intuit
devtools-ds/tree
Licensed under the MIT License
Copyright (c) 2020 Intuit
emotion/is-prop-valid
Licensed under the MIT License
Copyright (c) Emotion team and other contributors
emotion/memoize
Licensed under the MIT License
Copyright (c) Emotion team and other contributors
emotion/stylis
Licensed under the MIT License
Copyright (c) Emotion team and other contributors
emotion/unitless
Licensed under the MIT License
Copyright (c) Emotion team and other contributors
esbuild-kit/cjs-loader
Licensed under the MIT License
Copyright (c) Hiroki Osame <hiroki.osame@gmail.com>
esbuild-kit/core-utils
Licensed under the MIT License
Copyright (c) Hiroki Osame <hiroki.osame@gmail.com>
esbuild-kit/esm-loader
Licensed under the MIT License
Copyright (c) Hiroki Osame <hiroki.osame@gmail.com>
esbuild/android-arm
Licensed under the MIT License
Copyright (c) 2020 Evan Wallace
esbuild/android-arm64