-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
8124 lines (6230 loc) · 377 KB
/
index.html
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
<html>
<head>
<style>
@font-face {
font-family: 'Open Sauce Two';
src:
url('/font/OpenSauceTwo-Regular.woff2') format('woff2'),
url('/font/OpenSauceTwo-Regular.woff') format('woff'),
url('/font/OpenSauceTwo-Regular.ttf') format('truetype'),
url('/font/OpenSauceTwo-Regular.svg#OpenSauceTwo-Regular') format('svg');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Open Sauce Two';
src:
url('/font/OpenSauceTwo-Bold.woff2') format('woff2'),
url('/font/OpenSauceTwo-Bold.woff') format('woff'),
url('/font/OpenSauceTwo-Bold.ttf') format('truetype'),
url('/font/OpenSauceTwo-Bold.svg#OpenSauceTwo-Bold') format('svg');
font-weight: 700;
font-style: normal;
font-display: swap;
}
.fossa-header-card {
background-color: #F3F3F5;
padding: 80px;
border-radius: 32px;
}
.fossa-header-card .project-title-and-org {
display: flex;
justify-content: space-between;
margin-bottom: 64px;
gap: 50px;
align-items: center;
}
.fossa-header-card .project-title-and-org .created-with {
display: flex;
flex-direction: column;
align-items: center;
gap: 5px;
color: #9BA1AB;
}
.fossa-header-card .report-title {
font-family: 'Open Sauce Two', 'Open Sauce', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 78px;
line-height: 78px;
word-wrap: break-word;
}
.fossa-header-card .report-title a {
color: #1F60E0;
}
.fossa-header-card .thanks {
font-family: 'Open Sauce Two', 'Open Sauce', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: 400;
font-size: 24px;
margin-top: 16px;
}
.fossa-header-card footer {
display: flex;
gap: 300px;
margin-top: 32px
}
/* Main content */
.main-content-container {
display: flex;
gap: 32px;
}
.main-content-container .table-of-contents {
width: 250px;
flex-shrink: 0;
height: min-content;
position: sticky;
top: 25px;
}
.main-content-container .table-of-contents .table-of-contents__row {
padding: 12px 16px;
}
.highlight {
background-color: #E9F5F0;
border: 1px solid #E9F5F0;
border-radius: 8px;
}
.highlight a {
color: #289E6D !important;
}
.main-content-container .table-of-contents a {
font-family: 'Open Sauce Two', 'Open Sauce', 'Helvetica Neue', Helvetica, Arial, sans-serif;
color: #6A7181;
text-decoration: none;
}
.main-content-container .name-pill {
background: #F3F3F5;
border-radius: 113px;
font-size: 20px;
line-height: 32px;
padding: 12px 24px;
display: flex;
justify-content: space-between;
}
.main-content-container .name-pill a {
color: #06132D;
}
.main-content-container .content-container {
max-width: 100%;
}
.main-content-container .dependency-description {
font-size: 20px;
}
.main-content-container .dependency-info {
margin: 0 0 45px 25px;
}
.main-content-container .package-info {
margin: 18px 0;
}
.main-content-container .show-more {
display:flex;
align-items: flex-start;
justify-content: space-between;
max-height: 120px;
overflow: hidden;
border: 1px solid #CDD0D5;
border-radius: 8px;
}
.main-content-container .show-more.neutral-gray {
background-color: #F3F3F5;
border: 1px solid #F3F3F5;
}
.main-content-container .show-more.expanded {
max-height: 100%;
}
.main-content-container div.show-more-button {
float: right;
margin: 15px 24px;
padding: 12px 24px;
background-color: #F5F5FA;
border: 1px solid #CDD0D5;
border-radius: 8px;
font-size: 14px;
width: 100px;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
flex-shrink: 0;
}
.main-content-container div.show-more-button svg {
vertical-align: middle;
}
.main-content-container pre.content {
font-family: 'Open Sauce Two', 'Open Sauce', 'Helvetica Neue', Helvetica, Arial, sans-serif;
word-break: break-word;
word-wrap: break-word;
white-space: pre-line;
padding: 0 12px;
font-size: 14px;
}
.margin-top-lg {
margin-top: 80px;
}
.margin-bottom-xs {
margin-bottom: 8px;
}
.margin-bottom-md {
margin-bottom: 25px;
}
.margin-bottom-lg {
margin-bottom: 64px;
}
.margin-bottom-xl {
margin-bottom: 80px;
}
.no-margin {
margin: 0;
}
.bolded {
font-weight: 800;
}
.dep-locator {
font-size: 14px;
text-align: right;
color: #9BA1AB;
}
.main-content-container div.content-section:not(:last-child){
margin-bottom: 80px;
padding-bottom: 80px;
border-bottom: 1px solid #CDD0D5;
}
div.copyright {
border: 1px solid #CDD0D5;
border-radius: 8px;
}
div.copyright pre {
font-family: 'Open Sauce Two', 'Open Sauce', 'Helvetica Neue', Helvetica, Arial, sans-serif;
word-break: break-word;
white-space: pre-line;
padding: 0 12px;
font-size: 14px;
}
h1, h2, h3, h4, h5 {
font-family: 'Open Sauce Two', 'Open Sauce', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
h2 {
font-size: 32px;
font-weight: 500;
margin: 0 0 24px;
}
h4 {
font-size: 20px;
font-weight: 400;
margin: 0 0 16px;
}
li {
margin: 10px 0;
word-wrap: break-word;
}
/*
*Table
*/
.div-table {
border: 1px solid #CDD0D5;
border-radius: 8px;
width: 100%;
}
.ellipses-truncate {
overflow: hidden;
text-overflow: ellipsis;
}
.div-table div.row, div.header {
padding: 24px;
display: grid;
justify-content: space-between;
}
.div-table div.header {
font-weight: 600;
}
.div-table div.row a {
color: #06132D;
}
.div-table div:not(:last-child) {
border-bottom: 1px solid #CDD0D5;
}
/* First Party Licenses table */
.div-table.first-party-licenses div {
grid-template-columns: 1.5fr 1fr 3fr;
}
/* Dependencies Summary table */
.div-table.dependency-summary div {
grid-template-columns: 1fr 1fr;
}
body {
font-family: 'Open Sauce Two', 'Open Sauce', 'Helvetica Neue', Helvetica, Arial, sans-serif;
margin: 80px 32px;
background-color: white;
}
@media print {
.main-content-container .content-container {
max-width: 100%;
}
.main-content-container .show-more {
max-height: 100%;
}
.main-content-container div.show-more-button {
display: none;
}
/* Everything below here is for making PDF generation better. */
.fossa-header-card {
clear: both;
page-break-after: always;
background-color: initial;
padding: 0;
}
.fossa-header-card .thanks {
font-size: 14px;
line-height: 20px;
}
.fossa-header-card footer {
margin-top: 100px;
}
.main-content-container .content-container .content-section {
margin-bottom: 0;
padding-bottom: 0;
border: none;
clear: both;
page-break-after: always;
max-width: 100%;
}
.main-content-container div.content-section:not(:last-child){
border-bottom: none;
}
.main-content-container .table-of-contents {
display: none !important;
}
.fossa-header-card .report-title {
font-size: 60px;
line-height: 60px;
}
.main-content-container .name-pill,
.main-content-container .dependency-description,
.main-content-container pre.content,
h3, h4, h5,
ul li,
.div-table div.row,
div.header,
.main-content-container .copyright pre {
font-size: 10px;
}
.main-content-container .name-pill {
padding: 8px 12px;
line-height: 10px;
}
.div-table div.row, div.header {
padding: 12px;
}
.margin-bottom-xs {
margin-bottom: 8px;
}
.margin-bottom-md {
margin-bottom: 12px;
}
ul li {
margin: initial;
}
.dep-locator {
font-size: 8px;
}
h4 {
margin: 0 0 8px;
}
h2 {
font-size: 20px;
margin: 0 0 8px;
}
body {
-webkit-print-color-adjust: exact !important;
print-color-adjust: exact !important;
margin: 56px 45px;
}
}
</style>
<script>
function toggleMore(target, className) {
// toggle data-expand so we can replace the text
const elem = document.querySelector(`.show-more.${className}`)
if (elem) {
const isExpanded = elem.classList.contains('expanded')
if (isExpanded) {
elem.classList.remove('expanded');
target.innerHTML = `<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z"/></svg> Show More`;
} else {
elem.classList.add( 'expanded' );
target.innerHTML = `<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M432 256c0 17.7-14.3 32-32 32L48 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l352 0c17.7 0 32 14.3 32 32z"/></svg> Show less`;
}
}
}
function highlight(element) {
var tableOfContentsLinks = document.querySelectorAll(".table-of-contents__row");
for(var i=0; i< tableOfContentsLinks.length; i++) {
tableOfContentsLinks[i].classList.remove("highlight");
}
element.parentElement.classList.add("highlight");
}
</script>
</head>
<body>
<!-- Report Header -->
<div class="fossa-header-card margin-bottom-xl">
<div class="project-title-and-org">
<h2 class="no-margin">
api
</h2>
<div class="created-with">
<div>
Created with
<!-- The FOSSA logo. -->
<svg width="66" height="15" viewBox="0 0 66 15" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.03845 8.68936H3.21317V13.8801C3.21317 13.9694 3.17769 14.0551 3.11454 14.1182C3.05139 14.1814 2.96574 14.2169 2.87643 14.2169H0.769727C0.680417 14.2169 0.594765 14.1814 0.531613 14.1182C0.468462 14.0551 0.432983 13.9694 0.432983 13.8801V0.73893C0.435127 0.651052 0.47155 0.567495 0.534471 0.506109C0.597391 0.444723 0.681822 0.410374 0.769727 0.4104H9.47988C9.56919 0.4104 9.65484 0.445879 9.71799 0.50903C9.78114 0.572182 9.81662 0.657834 9.81662 0.747144V2.6403C9.81662 2.72961 9.78114 2.81526 9.71799 2.87841C9.65484 2.94156 9.56919 2.97704 9.47988 2.97704H3.21317V6.13093H8.03845C8.12776 6.13093 8.21341 6.16641 8.27657 6.22956C8.33972 6.29271 8.3752 6.37836 8.3752 6.46767V8.36083C8.37305 8.4487 8.33663 8.53226 8.27371 8.59365C8.21079 8.65503 8.12636 8.68938 8.03845 8.68936Z" fill="#9BA1AB"/>
<path d="M19.0381 0.17102C19.9631 0.157442 20.8825 0.317637 21.7484 0.643282C22.4767 0.909019 23.1442 1.31818 23.7114 1.84652C24.2098 2.34266 24.6257 2.91522 24.9434 3.54256C25.2605 4.13919 25.4954 4.77603 25.6415 5.43571C25.7719 6.04447 25.838 6.66524 25.8386 7.2878C25.8383 7.91988 25.7723 8.55022 25.6415 9.16863C25.4965 9.83125 25.2616 10.471 24.9434 11.07C24.6258 11.6974 24.2099 12.27 23.7114 12.766C23.1452 13.2928 22.4772 13.6981 21.7484 13.957C20.881 14.2763 19.9623 14.4336 19.0381 14.421C18.107 14.4348 17.1814 14.2775 16.3072 13.957C15.5784 13.6982 14.9103 13.2929 14.3442 12.766C13.8378 12.2701 13.4124 11.6978 13.0835 11.07C12.7586 10.4727 12.5194 9.83262 12.373 9.16863C12.2422 8.55023 12.1761 7.91989 12.1759 7.2878C12.1765 6.66523 12.2425 6.04445 12.373 5.43571C12.5205 4.77466 12.7597 4.13745 13.0835 3.54256C13.4138 2.91454 13.8406 2.34224 14.3483 1.84652C14.9155 1.31809 15.583 0.908919 16.3113 0.643282C17.1828 0.317118 18.1076 0.15694 19.0381 0.17102ZM19.0381 11.842C19.6357 11.8505 20.2273 11.7212 20.767 11.4642C21.2173 11.258 21.6148 10.9518 21.9291 10.569C22.2145 10.2029 22.4429 9.7959 22.6067 9.36164C22.7573 8.98215 22.8701 8.58875 22.9435 8.18715C22.9932 7.88714 23.0193 7.58369 23.0215 7.27959C23.0193 6.97549 22.9932 6.67203 22.9435 6.37202C22.8705 5.97431 22.7577 5.58496 22.6067 5.20985C22.4455 4.78407 22.2227 4.38422 21.9456 4.02303C21.6277 3.63902 21.2239 3.33517 20.767 3.136C20.2237 2.89333 19.6329 2.77546 19.0381 2.79105C18.4269 2.77932 17.8208 2.90418 17.264 3.15654C16.8117 3.35025 16.4109 3.64697 16.0936 4.02303C15.8168 4.38816 15.5929 4.79046 15.4283 5.21806C15.2713 5.59104 15.1583 5.98107 15.0916 6.38024C14.9995 6.98177 14.9995 7.59383 15.0916 8.19536C15.1591 8.59566 15.2721 8.98695 15.4283 9.36164C15.5928 9.79268 15.8182 10.1979 16.0977 10.5649C16.415 10.9498 16.817 11.2562 17.2722 11.4601C17.8254 11.7146 18.4293 11.8396 19.0381 11.8256V11.842Z" fill="#9BA1AB"/>
<path d="M31.2651 4.07266C31.2706 4.28311 31.3346 4.48788 31.4499 4.66401C31.612 4.87236 31.8218 5.03857 32.0618 5.14859C32.3492 5.29917 32.5929 5.41416 32.7928 5.49355C32.9926 5.57295 33.328 5.69067 33.7989 5.84672L34.7639 6.18346C34.9474 6.24917 35.2526 6.371 35.6797 6.54895C36.0085 6.67672 36.3247 6.83482 36.6242 7.02121C36.8268 7.1581 37.0801 7.34838 37.384 7.59204C37.6497 7.7938 37.8741 8.04474 38.0451 8.33123C38.2099 8.61998 38.3395 8.92743 38.4311 9.24701C38.5306 9.62306 38.5666 10.0131 38.5379 10.401C38.5108 10.9548 38.3626 11.496 38.1036 11.9863C37.8446 12.4766 37.4812 12.9041 37.039 13.2386C36.028 14.0151 34.777 14.4132 33.5032 14.3639C31.7463 14.3647 30.0151 13.9421 28.4562 13.1319C28.4174 13.1123 28.3834 13.0845 28.3565 13.0505C28.3295 13.0164 28.3103 12.977 28.3001 12.9348C28.2676 12.853 28.2676 12.7619 28.3001 12.6801L29.2077 10.9636C29.226 10.9231 29.2521 10.8867 29.2845 10.8564C29.3169 10.8261 29.355 10.8025 29.3966 10.787C29.4367 10.7693 29.48 10.7602 29.5239 10.7602C29.5677 10.7602 29.6111 10.7693 29.6512 10.787C30.7977 11.3782 32.0585 11.7144 33.3471 11.7726C33.8752 11.7924 34.3989 11.669 34.8625 11.4153C35.0428 11.3195 35.199 11.1839 35.3192 11.0189C35.4395 10.8538 35.5206 10.6636 35.5565 10.4626C35.5999 10.2481 35.5781 10.0255 35.4939 9.82355C35.4098 9.62156 35.2671 9.44937 35.0842 9.32914C34.5552 8.97316 33.971 8.70677 33.3554 8.54067C32.3808 8.27644 31.4313 7.92742 30.5177 7.49758C29.1488 6.76113 28.4644 5.66603 28.4644 4.21228C28.4379 3.66198 28.5348 3.11272 28.7479 2.60469C28.9611 2.09665 29.2851 1.6427 29.6964 1.27605C30.6019 0.526296 31.7538 0.139893 32.9283 0.191898C34.5702 0.230803 36.1858 0.612681 37.6714 1.31301C37.7149 1.32807 37.7544 1.35281 37.787 1.38536C37.8195 1.41792 37.8442 1.45744 37.8592 1.50095C37.8743 1.54445 37.8792 1.5908 37.8737 1.6365C37.8682 1.68219 37.8524 1.72604 37.8275 1.76474L37.0965 3.4813C37.0811 3.52492 37.057 3.56491 37.0255 3.59878C36.994 3.63265 36.9559 3.65967 36.9135 3.67816C36.8711 3.69666 36.8254 3.70622 36.7792 3.70627C36.7329 3.70631 36.6872 3.69683 36.6448 3.67842C35.5415 3.16609 34.3519 2.86521 33.1377 2.79139C31.9304 2.79139 31.3062 3.21848 31.2651 4.07266Z" fill="#9BA1AB"/>
<path d="M43.9205 4.07273C43.9296 4.28439 43.9979 4.48926 44.1176 4.66408C44.2797 4.87242 44.4895 5.03864 44.7295 5.14866C45.0169 5.29924 45.2606 5.41422 45.4605 5.49362C45.6603 5.57301 45.9957 5.69074 46.4666 5.84679L47.4316 6.18353C47.6151 6.24924 47.9203 6.37107 48.3474 6.54902C48.6763 6.67661 48.9925 6.83472 49.2919 7.02128C49.4945 7.15817 49.7478 7.34844 50.0517 7.5921C50.3175 7.79379 50.5419 8.04475 50.7128 8.3313C50.866 8.62166 50.9846 8.92903 51.066 9.24707C51.1656 9.62309 51.2017 10.0131 51.1728 10.401C51.1457 10.9549 50.9974 11.496 50.7384 11.9863C50.4795 12.4766 50.1161 12.9042 49.6739 13.2387C48.665 14.0134 47.4173 14.4114 46.1463 14.3639C44.3894 14.3648 42.6581 13.9422 41.0992 13.1319C41.0605 13.1123 41.0265 13.0846 40.9995 13.0505C40.9726 13.0165 40.9534 12.977 40.9432 12.9348C40.9107 12.8531 40.9107 12.762 40.9432 12.6802L41.8507 10.9636C41.8708 10.9239 41.8986 10.8886 41.9324 10.8597C41.9663 10.8308 42.0055 10.8089 42.0479 10.7953C42.088 10.7776 42.1313 10.7685 42.1752 10.7685C42.219 10.7685 42.2623 10.7776 42.3025 10.7953C43.449 11.3865 44.7098 11.7227 45.9984 11.7809C46.5234 11.8005 47.044 11.6785 47.5056 11.4277C47.6881 11.3311 47.846 11.1939 47.9671 11.0265C48.0881 10.8592 48.1691 10.6663 48.2037 10.4626C48.2465 10.2482 48.2244 10.0258 48.1403 9.82394C48.0562 9.62207 47.9138 9.44983 47.7314 9.32921C47.2048 8.97418 46.6235 8.70782 46.0107 8.54073C45.0362 8.27649 44.0867 7.92746 43.1731 7.49765C41.8042 6.7612 41.1198 5.6661 41.1198 4.21235C41.0933 3.66205 41.1902 3.11279 41.4033 2.60475C41.6165 2.09672 41.9405 1.64277 42.3517 1.27611C43.2571 0.526013 44.4091 0.139564 45.5837 0.191965C47.2298 0.229035 48.8498 0.61096 50.3391 1.31307C50.3826 1.32813 50.4221 1.35287 50.4547 1.38543C50.4872 1.41799 50.5119 1.45751 50.5269 1.50101C50.542 1.54452 50.5469 1.59087 50.5414 1.63656C50.5359 1.68226 50.5201 1.72611 50.4952 1.7648L49.7642 3.48137C49.7489 3.52499 49.7247 3.56498 49.6932 3.59885C49.6617 3.63271 49.6236 3.65974 49.5812 3.67823C49.5389 3.69672 49.4931 3.70629 49.4469 3.70633C49.4006 3.70638 49.3549 3.6969 49.3125 3.67849C48.2054 3.16466 47.0115 2.86375 45.7931 2.79146C44.583 2.79146 43.9588 3.21855 43.9205 4.07273Z" fill="#9BA1AB"/>
<path d="M59.9064 0.414918L65.976 13.8846C65.9924 13.9193 66.0009 13.9572 66.0009 13.9955C66.0009 14.0339 65.9924 14.0718 65.976 14.1064C65.9599 14.1405 65.9343 14.1692 65.9022 14.1889C65.8701 14.2086 65.8329 14.2185 65.7953 14.2173H63.3313C63.2291 14.2278 63.1264 14.2019 63.0415 14.144C62.9565 14.0861 62.8948 14.0001 62.8672 13.9011L61.6763 10.9854H57.3603L56.1816 13.8846C56.1499 13.9819 56.0866 14.0658 56.0018 14.1231C55.917 14.1804 55.8156 14.2077 55.7135 14.2009H53.2126C53.1749 14.202 53.1377 14.1921 53.1056 14.1724C53.0735 14.1527 53.0479 14.1241 53.0319 14.09C53.0123 14.056 53.0004 14.0183 52.9968 13.9793C52.9933 13.9403 52.9982 13.901 53.0113 13.8641L59.044 0.410812C59.0949 0.352551 59.1582 0.306444 59.2292 0.275885C59.3003 0.245325 59.3773 0.23109 59.4546 0.234227C59.5391 0.223489 59.6249 0.234444 59.7039 0.266058C59.7829 0.297673 59.8526 0.348904 59.9064 0.414918ZM59.4957 5.6755L58.2637 8.7719H60.7277L59.4957 5.6755Z" fill="#9BA1AB"/>
</svg>
</div>
</div>
</div>
<div class="report-title">
3rd-Party
</div>
<div class="report-title">
Software Report for
</div>
<div class="report-title">
<span class="bolded">api</span>
</div>
<div class="thanks">
The following 3rd-party software packages may be used by or distributed with <b>api</b>. Any information relevant to third-party vendors listed below are collected using common, reasonable means.
</div>
<footer>
<span>
<div class="bolded">
Generated
</div>
<div>
8/15/2024
</div>
</span>
<span>
<div class="bolded">
Revision
</div>
<div class="ellipses-truncate">
9eda4e3d96ca0539655afe1d02f65d1056140be1
</div>
</span>
</footer>
</div>
<!-- Main Content! -->
<div class="main-content-container">
<!-- Table of Contents -->
<div class="table-of-contents">
<h4>
Table of Contents
</h4>
<div class="table-of-contents__row">
<a href="#first-party-licenses" onclick="highlight(this)">
First Party Licenses
</a>
</div>
<div class="table-of-contents__row">
<a href="#dependencies" onclick="highlight(this)">
Dependencies
</a>
</div>
<div class="table-of-contents__row">
<a href="#licenses" onclick="highlight(this)">
Licenses
</a>
</div>
<div class="table-of-contents__row">
<a href="#copyrights" onclick="highlight(this)">
Copyrights
</a>
</div>
</div>
<!-- Content container -->
<div class="content-container">
<!-- First Party Licenses section -->
<div class="content-section">
<a name="first-party-licenses">
<h2>
First Party Licenses
</h2>
</a>
<div class="div-table first-party-licenses">
<div class="header">
<span>License</span>
<span>File Count</span>
<span>Text</span>
</div>
<div class="row">
<span>
ISC License
</span>
<span>
3
</span>
<div class="show-more margin-bottom-xs first-party-license-0 neutral-gray">
<pre class="content">
ISC License
Copyright (c) 2004-2010 by Internet Systems Consortium, Inc. ("ISC")
Copyright (c) 1995-2003 by Internet Software Consortium
Permission to use, copy, modify, and /or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
</pre>
<div class="show-more-button" onclick="toggleMore(this, 'first-party-license-0')">
<svg xmlns="http://www.w3.org/2000/svg" height="1em"
viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z" />
</svg> Show More
</div>
</div>
</div>
</div>
</div>
<div class="content-section">
<a name="dependencies">
<h2>
Dependencies
</h2>
</a>
<div class="name-pill margin-bottom-md" id="accepts">
<a href="https://www.npmjs.com/package/accepts"> accepts (1.3.8)</a> <span class="dep-locator">npm+accepts</span>
</div>
<div class="dependency-info">
<h4 class="bolded">
Declared License(s)
</h4>
<h4>
MIT
</h4>
<div class="show-more margin-bottom-xs direct-attribution-notice-0-0 neutral-gray">
<pre class="content">
(The MIT License)
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
</pre>
<div class="show-more-button" onclick="toggleMore(this, 'direct-attribution-notice-0-0')">
<svg xmlns="http://www.w3.org/2000/svg" height="1em"
viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z" />
</svg> Show More
</div>
</div>
</div>
<div class="name-pill margin-bottom-md" id="array-flatten">
<a href="https://www.npmjs.com/package/array-flatten"> array-flatten (1.1.1)</a> <span class="dep-locator">npm+array-flatten</span>
</div>
<div class="dependency-info">
<h4 class="bolded">
Declared License(s)
</h4>
<h4>
MIT
</h4>
<div class="show-more margin-bottom-xs direct-attribution-notice-1-0 neutral-gray">
<pre class="content">
The MIT License (MIT)
Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
</pre>
<div class="show-more-button" onclick="toggleMore(this, 'direct-attribution-notice-1-0')">
<svg xmlns="http://www.w3.org/2000/svg" height="1em"
viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z" />
</svg> Show More
</div>
</div>
</div>
<div class="name-pill margin-bottom-md" id="body-parser">
<a href="https://www.npmjs.com/package/body-parser"> body-parser (1.20.2)</a> <span class="dep-locator">npm+body-parser</span>
</div>
<div class="dependency-info">
<h4 class="bolded">
Declared License(s)
</h4>
<h4>
MIT
</h4>
<div class="show-more margin-bottom-xs direct-attribution-notice-2-0 neutral-gray">
<pre class="content">
(The MIT License)
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
</pre>
<div class="show-more-button" onclick="toggleMore(this, 'direct-attribution-notice-2-0')">
<svg xmlns="http://www.w3.org/2000/svg" height="1em"
viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z" />
</svg> Show More
</div>
</div>
</div>
<div class="name-pill margin-bottom-md" id="bytes">
<a href="https://www.npmjs.com/package/bytes"> bytes (3.1.2)</a> <span class="dep-locator">npm+bytes</span>
</div>
<div class="dependency-info">
<h4 class="bolded">
Declared License(s)
</h4>
<h4>
MIT
</h4>
<div class="show-more margin-bottom-xs direct-attribution-notice-3-0 neutral-gray">
<pre class="content">
(The MIT License)
Copyright (c) 2012-2014 TJ Holowaychuk <tj@vision-media.ca>
Copyright (c) 2015 Jed Watson <jed.watson@me.com>
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
</pre>
<div class="show-more-button" onclick="toggleMore(this, 'direct-attribution-notice-3-0')">
<svg xmlns="http://www.w3.org/2000/svg" height="1em"
viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z" />
</svg> Show More
</div>
</div>
</div>
<div class="name-pill margin-bottom-md" id="call-bind">
<a href="https://www.npmjs.com/package/call-bind"> call-bind (1.0.7)</a> <span class="dep-locator">npm+call-bind</span>
</div>
<div class="dependency-info">
<h4 class="bolded">
Declared License(s)
</h4>
<h4>
MIT
</h4>
<div class="show-more margin-bottom-xs direct-attribution-notice-4-0 neutral-gray">
<pre class="content">
MIT License
Copyright (c) 2020 Jordan Harband
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
</pre>
<div class="show-more-button" onclick="toggleMore(this, 'direct-attribution-notice-4-0')">
<svg xmlns="http://www.w3.org/2000/svg" height="1em"
viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z" />
</svg> Show More
</div>
</div>
</div>
<div class="name-pill margin-bottom-md" id="content-disposition">
<a href="https://www.npmjs.com/package/content-disposition"> content-disposition (0.5.4)</a> <span class="dep-locator">npm+content-disposition</span>
</div>
<div class="dependency-info">
<h4 class="bolded">
Declared License(s)
</h4>
<h4>
MIT
</h4>
<div class="show-more margin-bottom-xs direct-attribution-notice-5-0 neutral-gray">
<pre class="content">
(The MIT License)
Copyright (c) 2014-2017 Douglas Christopher Wilson
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
</pre>
<div class="show-more-button" onclick="toggleMore(this, 'direct-attribution-notice-5-0')">
<svg xmlns="http://www.w3.org/2000/svg" height="1em"
viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z" />
</svg> Show More
</div>
</div>
</div>
<div class="name-pill margin-bottom-md" id="content-type">
<a href="https://www.npmjs.com/package/content-type"> content-type (1.0.5)</a> <span class="dep-locator">npm+content-type</span>
</div>
<div class="dependency-info">
<h4 class="bolded">
Declared License(s)
</h4>
<h4>
MIT
</h4>
<div class="show-more margin-bottom-xs direct-attribution-notice-6-0 neutral-gray">
<pre class="content">
(The MIT License)
Copyright (c) 2015 Douglas Christopher Wilson
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
</pre>
<div class="show-more-button" onclick="toggleMore(this, 'direct-attribution-notice-6-0')">
<svg xmlns="http://www.w3.org/2000/svg" height="1em"
viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z" />
</svg> Show More
</div>
</div>
</div>
<div class="name-pill margin-bottom-md" id="cookie">
<a href="https://www.npmjs.com/package/cookie"> cookie (0.6.0)</a> <span class="dep-locator">npm+cookie</span>
</div>
<div class="dependency-info">
<h4 class="bolded">
Declared License(s)
</h4>
<h4>
MIT
</h4>
<div class="show-more margin-bottom-xs direct-attribution-notice-7-0 neutral-gray">
<pre class="content">
(The MIT License)
Copyright (c) 2012-2014 Roman Shtylman <shtylman@gmail.com>
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>