-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLGE_Open_Source_Software_Notice-CLI.html
2285 lines (2279 loc) · 101 KB
/
LGE_Open_Source_Software_Notice-CLI.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
<!DOCTYPE>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
<style type='text/css'>
.notice_body table.gridtable {border:1px solid #666666;width:100%;color:#333333;border-collapse: separate;border-spacing:0;}
.notice_body table.gridtable th {border-bottom: 1px solid #666666;padding: 8px;height:25px;font-size:12px;background-color: #dedede;}
.notice_body table.gridtable td {padding: 8px;font-size:12px;background-color: #ffffff;}
.notice_body table.gridtable td p,
.notice_body table.gridtable td b {padding:0;font-size:12px;}
.notice_body table.texttable {color:#333333;border-width: 0px;}
.notice_body table.texttable td {border-width: 0px;padding: 8px;}
/**/
.notice_body, .notice_body * {margin:0;font-family: arial,sans-serif;font-size:12px;color:#333 !important;}
/*body * {white-space: nowrap;}*/
.notice_body b {font-size:1.25em;color:#000;}
.notice_body p {margin:0;padding:10px;}
.notice_body h2.notice_title {position: relative;margin: 0;padding: 1.25em 1em 1em;overflow:hidden;font-size:1.25em;color: #fff;background: #980432;}
.notice_body h2.notice_title *, .notice_body h2.notice_title sup {font-size:12px;color:#fff !important;}
.left {float:left;}
.right {float:right;}
.notice_body .bdTop {margin-top:30px;padding-top:30px;border-top:1px solid #888;}
caption {display:none;}
th:not(:last-child),td:not(:last-child) {border-right: 1px solid #666666;}
tr:not(:last-child) td {border-bottom: 1px solid #666666;}
/*.bdTop b {font-style: italic;}*/
</style>
</head>
<body>
<div class="notice_body">
<h2 class="notice_title">
<strong class="left">Open Source Software Notice</strong>
<span class="right"><sup>OSSNotice-4733_webOS TV CLI_1.12.3_220831.html</sup></span>
</h2>
<p>This product from LG Electronics, Inc. contains the open source software detailed below. Please refer to the indicated open source licenses (as are included following this notice) for the terms and conditions of their use.</p>
<br>
<div style="padding:10px;max-width:800px;">
<table width="100%" class="gridtable" aria-label="Open source lists under Pemissive License.">
<caption>Open source lists under Pemissive License.</caption>
<tr>
<th width=182>Open Source</th>
<th width=159>License</th>
<th width=443>Copyright</th>
</tr>
<tr>
<td >
<a href="https://github.com/isaacs/abbrev-js" target='_blank'>abbrev-js 1.1.1</a> </td>
<td>
<p><a href="#ISC">ISC</a>
</td>
<td><p>Copyright (c) Isaac Z. Schlueter and Contributors</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.com/package/ajv" target='_blank'>ajv 6.12.6</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2015-2017 Evgeny Poberezkin<br>Copyright (c) 2012 Julian Berman</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/andyperlitch/jsbn" target='_blank'>andyperlitch-jsbn 0.1.1</a> </td>
<td>
<p><a href="#MIT-like License (jsbn)">MIT-like License (jsbn)</a>
</td>
<td><p>Copyright (c) 2003-2005 Tom Wu</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.org/ansi-escapes" target='_blank'>ansi-escapes 4.3.2</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.com/package/ansi-regex" target='_blank'>ansi-regex 3.0.1</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/chalk/ansi-regex" target='_blank'>ansi-regex 2.1.1</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/chalk/ansi-regex" target='_blank'>ansi-regex 4.1.1</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.com/package/ansi-regex" target='_blank'>ansi-regex 5.0.1</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/chalk/ansi-styles" target='_blank'>ansi-styles 4.3.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/chalk/ansi-styles" target='_blank'>ansi-styles 3.2.1</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/chalk/ansi-styles" target='_blank'>ansi-styles 2.2.1</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.com/package/anymatch" target='_blank'>anymatch 3.1.2</a> </td>
<td>
<p><a href="#ISC">ISC</a>
</td>
<td><p>Copyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com)</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.org/aproba" target='_blank'>aproba 1.2.0</a> </td>
<td>
<p><a href="#ISC">ISC</a>
</td>
<td><p>Copyright (c) 2015, Rebecca Turner <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.com/package/are-we-there-yet" target='_blank'>are-we-there-yet 1.1.7</a> </td>
<td>
<p><a href="#ISC">ISC</a>
</td>
<td><p>Copyright (c) 2015, Rebecca Turner</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.com/package/async" target='_blank'>async 0.2.10</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2010 Caolan McMahon</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/alexindigo/asynckit" target='_blank'>asynckit 0.4.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2016 Alex Indigo</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.org/aws-sign2" target='_blank'>aws-sign2 0.7.0</a> </td>
<td>
<p><a href="#Apache-2.0">Apache-2.0</a>
</td>
<td><p>Copyright (c) Mikeal Rogers <[email protected]> (http://www.futurealoof.com)</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.com/package/aws4" target='_blank'>aws4 1.11.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2013 Michael Hart ([email protected])</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/juliangruber/balanced-match" target='_blank'>balanced-match 1.0.2</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2013, Julian Gruber</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.com/package/bcrypt-pbkdf" target='_blank'>bcrypt-pbkdf 1.0.2</a> </td>
<td>
<p><a href="#BSD-3-Clause">BSD-3-Clause</a>
</td>
<td><p>Copyright (c) 1997 Niels Provos <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://github.com/beatgammit/base64-js" target='_blank'>beatgammit-base64-js 1.5.1</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2014 Jameson Little</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.com/package/binary-extensions" target='_blank'>binary-extensions 2.2.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2019 Sindre Sorhus <[email protected]> (https://sindresorhus.com), Paul Miller (https://paulmillr.com)</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.com/package/bl" target='_blank'>bl 4.1.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2013-2019 bl contributors</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.com/package/bl" target='_blank'>bl 1.2.3</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2013-2016 bl contributors</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/isaacs/block-stream" target='_blank'>block-stream 0.0.9</a> </td>
<td>
<p><a href="#ISC">ISC</a>
</td>
<td><p>Copyright (c) Isaac Z. Schlueter and Contributors</p></td>
</tr>
<tr>
<td >
<a href="http://bluebirdjs.com" target='_blank'>bluebird 3.7.2</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2013-2018 Petka Antonov</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/expressjs/body-parser" target='_blank'>body-parser 1.19.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2014 Jonathan Ong <[email protected]><br>Copyright (c) 2014-2015 Douglas Christopher Wilson <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://github.com/juliangruber/brace-expansion" target='_blank'>brace-expansion 1.1.11</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2013 Julian Gruber <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://github.com/micromatch/braces" target='_blank'>braces 3.0.2</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2014-2018, Jon Schlinkert.</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.org/package/buffer-alloc" target='_blank'>buffer-alloc 1.2.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p></p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.org/package/buffer-alloc-unsafe" target='_blank'>buffer-alloc-unsafe 1.1.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p></p></td>
</tr>
<tr>
<td >
<a href="https://github.com/brianloveswords/buffer-crc32" target='_blank'>buffer-crc32 0.2.13</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2013 Brian J. Brennan</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/brianloveswords/buffer-crc32" target='_blank'>buffer-crc32 0.2.1</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2013 Brian J. Brennan</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.org/package/buffer-fill" target='_blank'>buffer-fill 1.0.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p></p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.com/package/buffer-from" target='_blank'>buffer-from 1.1.2</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2016, 2018 Linus Unneback</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/visionmedia/bytes.js" target='_blank'>Bytes utility 3.1.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2012-2014 TJ Holowaychuk <[email protected]><br>Copyright (c) 2015 Jed Watson <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://github.com/visionmedia/bytes.js" target='_blank'>Bytes utility 0.2.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2012 TJ Holowaychuk <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.org/caseless" target='_blank'>caseless 0.12.0</a> </td>
<td>
<p><a href="#Apache-2.0">Apache-2.0</a>
</td>
<td><p>Copyright (c) Mikeal Rogers <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.com/package/chalk" target='_blank'>chalk 4.1.2</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/sindresorhus/chalk" target='_blank'>chalk 2.4.2</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/sindresorhus/chalk" target='_blank'>chalk 1.1.3</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.com/package/chokidar" target='_blank'>chokidar 3.5.2</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/sindresorhus/cli-cursor" target='_blank'>cli-cursor 3.1.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.com/package/cli-spinners" target='_blank'>cli-spinners 2.7.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.org/cli-width" target='_blank'>cli-width 2.2.1</a> </td>
<td>
<p><a href="#ISC">ISC</a>
</td>
<td><p>Copyright (c) 2015 Ilya Radchenko <[email protected]></[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.org/code-point-at" target='_blank'>code-point-at 1.1.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://github.com/qix-/color-convert" target='_blank'>color-convert 1.9.3</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2011-2016 Heather Arthur <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.org/color-convert" target='_blank'>color-convert 2.0.1</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2011-2016 Heather Arthur <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://github.com/dfcreative/color-name" target='_blank'>color-name 1.1.3</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2015 Dmitry Ivanov</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/dfcreative/color-name" target='_blank'>color-name 1.1.4</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2015 Dmitry Ivanov</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/Marak/colors.js" target='_blank'>colors 1.4.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Marak Squires<br>Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/tj/commander.js" target='_blank'>commander 1.2.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2011 TJ Holowaychuk <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://github.com/tj/commander.js" target='_blank'>commander 2.20.3</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2011 TJ Holowaychuk <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://github.com/maxogden/concat-stream" target='_blank'>concat-stream 1.6.2</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2013 Max Ogden</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/senchalabs/connect" target='_blank'>connect 2.8.8</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2010 Sencha Inc.<br>Copyright (c) 2011 LearnBoost<br>Copyright (c) 2011 TJ Holowaychuk</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.org/console-control-strings" target='_blank'>console-control-strings 1.1.0</a> </td>
<td>
<p><a href="#ISC">ISC</a>
</td>
<td><p>Copyright (c) 2014, Rebecca Turner <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://github.com/jshttp/content-type" target='_blank'>content-type 1.0.4</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2015 Douglas Christopher Wilson</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/jshttp/cookie" target='_blank'>cookie 0.1.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (C) Roman Shtylman <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://github.com/isaacs/core-util-is" target='_blank'>core-util-is 1.0.2</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Node.js contributors.</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/isaacs/core-util-is" target='_blank'>core-util-is 1.0.3</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Node.js contributors</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.com/package/csv-writer" target='_blank'>csv-writer 1.6.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>-</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/kevva/decompress" target='_blank'>decompress 4.2.1</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Kevin Martensson <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://github.com/kevva/decompress-tar" target='_blank'>decompress-tar 4.1.1</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Kevin Martensson <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://github.com/kevva/decompress-tarbz2" target='_blank'>decompress-tarbz2 4.1.1</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Kevin Martensson <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://github.com/kevva/decompress-targz" target='_blank'>decompress-targz 4.1.1</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Kevin Martensson (https://github.com/kevva)<br>Copyright (c) Kevin Martensson <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://github.com/kevva/decompress-unzip" target='_blank'>decompress-unzip 4.0.1</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Kevin Martensson <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://github.com/tmpvar/defaults" target='_blank'>defaults 1.0.3</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2015 Elijah Insua</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.org/package/easy-table" target='_blank'>easy-table 1.1.1</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2012 Eldar Gabdullin ([email protected])</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.org/ecc-jsbn" target='_blank'>ecc-jsbn 0.1.2</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2014 Jeremie Miller</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/jonathanong/ee-first" target='_blank'>ee-first 1.1.1</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2014 Jonathan Ong [email protected]</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/indutny/elfy" target='_blank'>elfy 1.0.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2014 Fedor Indutny.</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/mathiasbynens/emoji-regex" target='_blank'>emoji-regex 8.0.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Mathias Bynens <https://mathiasbynens.be/></p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.com/package/encoding" target='_blank'>encoding 0.1.13</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2012-2014 Andris Reinman</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/mafintosh/end-of-stream" target='_blank'>end-of-stream 1.4.4</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2014 Mathias Buus</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/indutny/endian-reader" target='_blank'>endian-reader 0.3.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2014 Fedor Indutny</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/sindresorhus/escape-string-regexp" target='_blank'>escape-string-regexp 1.0.5</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)</p></td>
</tr>
<tr>
<td >
<a href="http://expressjs.com" target='_blank'>express 3.3.8</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2009-2013 TJ Holowaychuk <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://github.com/mrkmg/node-external-editor" target='_blank'>external-editor 3.1.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2016 Kevin Gravier</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.com/package/extract-zip" target='_blank'>extract-zip 1.7.0</a> </td>
<td>
<p><a href="#BSD-2-Clause">BSD-2-Clause</a>
</td>
<td><p>Copyright (c) 2014 Max Ogden and other contributors</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.org/fast-deep-equal" target='_blank'>fast-deep-equal 3.1.3</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2017 Evgeny Poberezkin</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/epoberezkin/fast-json-stable-stringify" target='_blank'>fast-json-stable-stringify 2.1.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2017 Evgeny Poberezkin<br>Copyright (c) 2013 James Halliday</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/feross/buffer" target='_blank'>feross-buffer 5.7.1</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Feross Aboukhadijeh, and other contributors.</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/sindresorhus/figures" target='_blank'>figures 3.2.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/sindresorhus/file-type" target='_blank'>file-type 3.9.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/sindresorhus/file-type" target='_blank'>file-type 6.2.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/sindresorhus/file-type" target='_blank'>file-type 5.2.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/jonschlinkert/fill-range" target='_blank'>fill-range 7.0.1</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2014-present, Jon Schlinkert.</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/sindresorhus/first-chunk-stream" target='_blank'>first-chunk-stream 1.0.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)</p></td>
</tr>
<tr>
<td >
<a href="http://github.com/mikeal/forever-agent" target='_blank'>forever-agent 0.6.1</a> </td>
<td>
<p><a href="#Apache-2.0">Apache-2.0</a>
</td>
<td><p></p></td>
</tr>
<tr>
<td >
<a href="https://github.com/form-data/form-data" target='_blank'>form-data 2.3.3</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2012 Felix Geisendörfer ([email protected]) and contributors</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/jshttp/fresh" target='_blank'>fresh 0.2.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2012 TJ Holowaychuk <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://github.com/mafintosh/fs-constants" target='_blank'>fs-constants 1.0.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2018 Mathias Buus</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/isaacs/fs.realpath" target='_blank'>fs.realpath 1.0.0</a> </td>
<td>
<p><a href="#ISC">ISC</a>
</td>
<td><p>Copyright (c) Isaac Z. Schlueter and Contributors</p></td>
</tr>
<tr>
<td >
<a href="http://github.com/isaacs/fstream" target='_blank'>fstream 1.0.12</a> </td>
<td>
<p><a href="#ISC">ISC</a>
</td>
<td><p>Copyright (c) Isaac Z. Schlueter and Contributors</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/Raynos/function-bind" target='_blank'>function-bind 1.1.1</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2013 Raynos.</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.org/gauge" target='_blank'>gauge 2.7.4</a> </td>
<td>
<p><a href="#ISC">ISC</a>
</td>
<td><p>Copyright (c) 2014, Rebecca Turner <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.com/package/get-stream" target='_blank'>get-stream 2.3.1</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/es128/glob-parent" target='_blank'>glob-parent 5.1.2</a> </td>
<td>
<p><a href="#ISC">ISC</a>
</td>
<td><p>Copyright (c) 2015, 2019 Elan Shanker</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.org/har-schema" target='_blank'>har-schema 2.0.0</a> </td>
<td>
<p><a href="#ISC">ISC</a>
</td>
<td><p>Copyright (c) 2015, Ahmad Nassri <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.org/har-validator" target='_blank'>har-validator 5.1.5</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2018 Ahmad Nassri <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://github.com/tarruda/has" target='_blank'>has 1.0.3</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2013 Thiago de Arruda</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/sindresorhus/has-ansi" target='_blank'>has-ansi 2.0.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/sindresorhus/has-flag" target='_blank'>has-flag 4.0.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://github.com/sindresorhus/has-flag" target='_blank'>has-flag 3.0.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.org/has-unicode" target='_blank'>has-unicode 2.0.1</a> </td>
<td>
<p><a href="#ISC">ISC</a>
</td>
<td><p>Copyright (c) 2014, Rebecca Turner <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://github.com/jshttp/http-errors" target='_blank'>http-errors 1.7.2</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2014 Jonathan Ong [email protected]<br>Copyright (c) 2016 Douglas Christopher Wilson [email protected]</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/ashtuchkin/iconv-lite" target='_blank'>iconv-lite 0.4.24</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2011 Alexander Shtuchkin</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/ashtuchkin/iconv-lite" target='_blank'>iconv-lite 0.6.3</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2011 Alexander Shtuchkin</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/feross/ieee754" target='_blank'>ieee754 1.2.1</a> </td>
<td>
<p><a href="#BSD-3-Clause">BSD-3-Clause</a>
</td>
<td><p>Copyright (c) 2008, Fair Oaks Labs, Inc.</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/npm/inflight" target='_blank'>inflight 1.0.6</a> </td>
<td>
<p><a href="#ISC">ISC</a>
</td>
<td><p>Copyright (c) Isaac Z. Schlueter</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/isaacs/inherits" target='_blank'>inherits 1.0.2</a> </td>
<td>
<p><a href="#ISC">ISC</a>
</td>
<td><p>Copyright (c) Isaac Z. Schlueter</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/isaacs/inherits" target='_blank'>inherits 2.0.4</a> </td>
<td>
<p><a href="#ISC">ISC</a>
</td>
<td><p>Copyright (c) Isaac Z. Schlueter</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/isaacs/inherits" target='_blank'>inherits 2.0.3</a> </td>
<td>
<p><a href="#ISC">ISC</a>
</td>
<td><p>Copyright (c) Isaac Z. Schlueter</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/SBoudrias/Inquirer.js" target='_blank'>Inquirer.js 7.0.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2016 Simon Boudrias</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.org/interpret" target='_blank'>interpret 1.4.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2014-2018 Tyler Kellen <[email protected]>, Blaine Bublitz <[email protected]>, and Eric Schoffstall <[email protected]></p></td>
</tr>
<tr>
<td >
<a href="https://github.com/sindresorhus/is-binary-path" target='_blank'>is-binary-path 2.1.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.com/package/is-core-module" target='_blank'>is-core-module 2.10.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2014 Dave Justice</p></td>
</tr>
<tr>
<td >
<a href="https://github.com/micromatch/is-extglob" target='_blank'>is-extglob 2.1.1</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) 2014-2015, Jon Schlinkert.</p></td>
</tr>
<tr>
<td >
<a href="https://www.npmjs.org/is-fullwidth-code-point" target='_blank'>is-fullwidth-code-point 1.0.0</a> </td>
<td>
<p><a href="#MIT">MIT</a>
</td>
<td><p>Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)</p></td>
</tr>
<tr>