This repository has been archived by the owner on Feb 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathNOTICE
30547 lines (11888 loc) · 760 KB
/
NOTICE
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
NetApp Notice Report
Copyright 2019
About this document
The following copyright statements and licenses apply to the software components that are distributed with the esg-grafana version 1.0 product.This product does not necessarily use all the software components referred to below.
Where required, source code is published at the following location.
ftp://ftp.netapp.com/frm-ntap/opensource
Components:
@deepvision/test-kit-jest 0.3.1 : MIT License
@inst/vscode-bin-darwin 0.0.14 : ISC License
@mojang/web-theme-bootstrap 1.8.2 : MIT License
abbrev 1.0.5 : ISC License
ActiveMQ Protocol Buffers Implementation and Compiler 1.1 : Apache License 2.0
Advanced Linux Sound Architecture (ALSA) v1.1.8 : GNU Library General Public License v2 or later
ahmadnassri/har-schema 2.0.0 : ISC License
ajv 5.5.2 : MIT License
alpine-base 3.9.4 : MIT License
alpine-baselayout 2.1.1 : GNU General Public License v2.0 only
alpine-baselayout 3.1.0 : GNU General Public License v2.0 only
alpine-baselayout 3.1.1 : GNU General Public License v2.0 only
alpine-keys 2.1 : MIT License
Angular 1.6.1 : MIT License
Angular 1.7.6 : MIT License
Animal Sniffer Annotations 1.14 : MIT License
ansi-regex 2.1.1 : MIT License
Ansible 2.7.10 : GNU General Public License v3.0 or later
ansicolors 0.3.2 : MIT License
Aopalliance Version 1.0 Repackaged As A Module 2.5.0-b32 : Common Development and Distribution License 1.1
Apache ActiveMQ 5.15.6 : Apache License 2.0
Apache Commons Codec 1.10 : Apache License 2.0
Apache Commons Collections 3.2.2 : Apache License 2.0
Apache Commons Compress 1.18 : Apache License 2.0
Apache Commons CSV csv-1.6 : Apache License 2.0
Apache Commons FileUpload 1.3.3 : Apache License 2.0
Apache Commons Lang 2.4 : Apache License 2.0
Apache Commons Lang 3.8.1 : Apache License 2.0
Apache Commons Logging 1.2 : Apache License 2.0
Apache Commons Net 3.6 : Apache License 2.0
Apache Felix Http Bridge 4.0.4 : Apache License 2.0
Apache HttpComponents AsyncClient 4.1.4 : Apache License 2.0
Apache HttpComponents Client 4.5.6 : Apache License 2.0
Apache HttpComponents Core 4.4.10 : Apache License 2.0
Apache Santuario (Java) 2.0.5 : Apache License 2.0
Apache Velocity 1.7 : Apache License 2.0
apk-tools 2.10.3 : GNU General Public License v2.0 only
append-transform 0.3.0 : MIT License
argparse 1.0.7 : MIT License
asap 2.0.4 : MIT License
ASM 6.2.1 : BSD 3-clause "New" or "Revised" License
ASN.1 library for Python 0.4.5 : BSD 3-clause "New" or "Revised" License
asn1crypto 0.24.0 : MIT License
Async 1.5.2 : MIT License
asynckit 0.4.0 : Expat License
attrs 19.1.0 : MIT License
automapper-ts 1.8.3 : MIT License
aws4 1.7.0 : MIT License
babel-generator 6.11.4 : MIT License
babel-traverse 6.11.4 : MIT License
babel-types 6.23.0 : MIT License
BabelJs 6.10.4 : MIT License
BabelJs 6.11.0 : MIT License
BabelJs 6.11.4 : MIT License
BabelJs 6.13.0 : MIT License
BabelJs 6.9.0 : MIT License
BabelJs 6.9.2 : MIT License
babylon 6.18.0 : ISC License
babylon v6.8.4 : MIT License
beanvalidation-api 1.1.0.Final : Apache License 2.0
Berkeley DB Java Edition 7.5.11 : Apache License 2.0
block-stream 0.0.5 : BSD 2-clause "Simplified" License
Bluebird 3.5.0 : MIT License
Bluebird JS 3.5.1 : MIT License
Bluebird JS 3.5.4 : MIT License
Bootstrap (Twitter) 3.3.7 : MIT License
Bootstrap (Twitter) unknown : MIT License
Bouncy Castle 1.54 : MIT License
brianm/java-gnu-tar 4.4.6 : ISC License
builtin-modules 1.1.1 : MIT License
BusyBox 1.30.1 : GNU General Public License v2.0 only
bzip2 1.0.6 : Bzip2 License
c-ares cares-1_15_0 : MIT License
ca-certificates 20190108 : Mozilla Public License 2.0
cacache 10.0.3 : ISC License
cacache 10.0.4 : ISC License
cacache 11.2.0 : ISC License
cache-stampede 0.9.0 : MIT License
cachetools v2.1.0 : MIT License
Cairo 1.16.0 : GNU Library General Public License v2 or later
call-limit 1.1.0 : ISC License
camelcase 1.2.1 : MIT License
caseless 0.11.0 : Apache License 2.0
cctz 2.3 : Apache License 2.0
CFFI 1.12.3 : MIT License
cfn-certificate-provider-prebuilt 0.0.0 : MIT License
chain unknown : MIT License
Chalk 1.1.1 : MIT License
Checker Qual 2.5.2 : MIT License
chownr 1.0.1 : ISC License
co 4.6.0 : MIT License
CodeLite 12.0 : GNU General Public License v2.0 or later
collectd 5.8.0 : GNU General Public License v2.0 only
color-support 1.1.3 : ISC License
colors.js 1.1.2 : MIT License
columnify 1.5.4 : MIT License
combined-stream 1.0.8 : MIT License
Commander.js 1.3.1 : MIT License
Commons IO 2.6 : Apache License 2.0
Commons JXPath 1.3 : Apache License 2.0
config-chain 1.1.8 : MIT License
connection-parse 0.0.7 : MIT License
connext 3.1.2 : MIT License
constantly 15.1.0 : MIT License
copy-concurrently 1.0.5 : ISC License
core-js 2.4.1 : MIT License
core-util-is 1.0.2 : MIT License
cron4j 2.2.5 : GNU Lesser General Public License v2.1 or later
Cryptacular Library 1.1.1 : Apache License 2.0
cryptiles 2.0.5 : BSD 3-clause "New" or "Revised" License
cURL curl-7_64_0 : MIT License
Cyrus SASL 2.1.27 : Carnegie Mellon University License
DavMail POP/IMAP/SMTP/Caldav to Exchange 5.2.0 : GNU General Public License v2.0 only
DB 5.3.28 : Sleepycat License
dcron-doc 4.5 : GNU General Public License v3.0 or later
Debian 20190410 : GNU General Public License v2.0 or later
debug 2.1.3 : MIT License
debug v2.6.9 : MIT License
debug v3.1.0 : MIT License
debuglog 1.0.1 : MIT License
Decamelize 1.2.0 : MIT License
deeper 2.1.0 : ISC License
defaults 1.0.3 : MIT License
delayed-stream 1.0.0 : MIT License
detect-indent 3.0.1 : MIT License
dezalgo 1.0.3 : ISC License
domenic/opener 1.5.1 : MIT License
dominictarr/rc 1.1.6 : MIT License
duplexify 3.4.2 : MIT License
ecc-jsbn 0.1.1 : MIT License
Eclipse Jetty 9.4.12.v20180830 : Apache License 2.0
Editline Library - libedit 20181209.3.1 : BSD 3-clause "New" or "Revised" License
embedded-postgres-binaries-darwin-amd64 10.7.0 : Apache License 2.0
encoding 0.1.12 : MIT License
errno 0.1.4 : MIT License
error-prone annotations 2.1.3 : Apache License 2.0
es6-promise v4.2.6 : MIT License
es6-promisify v4.1.1 : MIT License
escape-string-regexp 1.0.4 : MIT License
Esprima 2.5.0 : BSD 2-clause "Simplified" License
esutils 2.0.2 : BSD 3-clause "New" or "Revised" License
events-to-array 1.1.2 : ISC License
Example :: Jetty Quick Start 9.4.12.v20180830 : Apache License 2.0
execa 0.7.0 : MIT License
Expect 5.45.4 : Public Domain
extend 3.0.2 : MIT License
extsprintf 1.3.0 : MIT License
facebook/regenerator 0.9.5 : BSD 2-clause "Simplified" License
Fast Infoset 1.2.13 : Apache License 2.0
filename-regex 2.0.0 : MIT License
FindBugs jsr305 3.0.2 : Apache License 2.0
findutils 4.6.0 : GNU General Public License v3.0 or later
fontconfig 2.13.1 : GNU General Public License v3.0 or later
for-in 0.1.6 : MIT License
foreground-child 1.5.3 : ISC License
foreground-child 1.5.6 : ISC License
forever-agent 0.6.1 : Apache License 2.0
form-data 2.1.4 : MIT License
form-data 2.3.1 : MIT License
from2 1.3.0 : MIT License
fs-vacuum 1.2.10 : ISC License
fs.realpath 1.0.0 : ISC License
fstream 1.0.10 : ISC License
fstream 1.0.8 : ISC License
generate-object-property 1.1.0 : MIT License
generate-object-property 1.2.0 : MIT License
genfun v4.0.1 : Creative Commons Zero v1.0 Universal
geronimo-spec-j2ee-management 1.0-rc3 : Apache License 2.0
get-caller-file 1.0.2 : ISC License
get-stream 3.0.0 : MIT License
GNU Compiler Collection 8.3.0 : GNU General Public License v3.0 w/GCC Runtime Library exception
GNU Ncurses 6.1_p20190420 : MIT License
GnuTLS 4.13 : GNU Lesser General Public License v3.0 or later
google/google-ctf 20181108-snapshot-27a2f64e : Apache License 2.0
Grafana 6.1.6 : Apache License 2.0
Grafana 6.2.0-beta2 : Apache License 2.0
Graphite - Scalable Realtime Graphing 1.1.5 : Apache License 2.0
graphite-web 1.1.5 : Apache License 2.0
Guava: Google Core Libraries for Java 26.0-jre : Apache License 2.0
gulp-documentation 2.2.0 : ISC License
Gunicorn 19.9.0 : MIT License
H2 Database Engine 1.4.194 : Mozilla Public License 2.0
Handlebars.js 4.0.5 : MIT License
har-validator 2.0.6 : ISC License
HarfBuzz 2.2.0 : MIT License
has-ansi 2.0.0 : MIT License
hash_ring 3.1.1 : MIT License
hash_ring 3.2.0 : MIT License
hashring-0.0.6 3.0.0 : MIT License
HawtBuf 1.11 : Apache License 2.0
HK2 API module 2.5.0-b32 : Common Development and Distribution License 1.1
HK2 Implementation Utilities 2.5.0-b32 : Common Development and Distribution License 1.1
hoek 2.16.3 : BSD 3-clause "New" or "Revised" License
hosted-git-info 2.1.5 : ISC License
hueniverse/hawk 3.1.3 : BSD 3-clause "New" or "Revised" License
hyperlink 18.0.0 : MIT License
hyperlink 19.0.0 : BSD 3-clause "New" or "Revised" License
iarna/write-file-atomic 1.1.4 : ISC License
idna v2.8 : BSD 3-clause "New" or "Revised" License
imurmurhash 0.1.4 : MIT License
incremental 17.5.0 : MIT License
incrTcl 4.1.2 : BSD 3-clause "New" or "Revised" License
inflight 1.0.5 : ISC License
inflight 1.0.6 : ISC License
inherits 2.0.1 : ISC License
inherits 2.0.3 : ISC License
Injection API (JSR 330) version 1 repackaged as OSGi bundle 2.2.0 : Common Development and Distribution License 1.1
io.swagger:swagger-annotations 1.5.21 : Apache License 2.0
is-arrayish 0.2.1 : MIT License
is-buffer 1.1.3 : MIT License
is-extglob 1.0.0 : MIT License
is-my-ip-valid 1.0.0 : MIT License
is-my-json-valid 2.13.1 : MIT License
is-my-json-valid 2.20.0 : MIT License
is-property 1.0.2 : MIT License
is-typedarray 1.0.0 : MIT License
is_finite 1.0.1 : MIT License
isaacs/once 1.3.1 : BSD 3-clause "New" or "Revised" License
isaacs/once 1.4.0 : ISC License
isarray 0.0.1 : MIT License
isarray 1.0.0 : MIT License
isexe 1.1.2 : ISC License
isstream 0.1.2 : MIT License
isstream 1.1.0 : MIT License
istack common utility code runtime 3.0.5 : Common Development and Distribution License 1.1
istanbul-lib-coverage 1.0.0-alpha.4 : BSD 3-clause "New" or "Revised" License
istanbul-lib-hook 1.0.0-alpha.3 : BSD 3-clause "New" or "Revised" License
istanbul-lib-hook 1.0.0-alpha.4 : BSD 3-clause "New" or "Revised" License
istanbul-lib-instrument 1.1.0-alpha.3 : BSD 3-clause "New" or "Revised" License
istanbul-lib-instrument 1.1.0-alpha.4 : BSD 3-clause "New" or "Revised" License
istanbul-lib-report 1.0.0-alpha.3 : BSD 3-clause "New" or "Revised" License
istanbul-lib-source-maps 1.0.0-alpha.10 : BSD 3-clause "New" or "Revised" License
istanbul-reports 1.0.0-alpha.8 : BSD 3-clause "New" or "Revised" License
J2EE Management 1.0 1.0.1 : Apache License 2.0
J2ObjC Annotations 1.3 : Apache License 2.0
jackson-annotations 2.9.7 : Apache License 2.0
jackson-core 2.9.7 : Apache License 2.0
jackson-databind 2.9.7 : Apache License 2.0
jackson-dataformat-smile 2.9.7 : Apache License 2.0
jackson-dataformat-xml 2.9.7 : Apache License 2.0
jackson-dataformat-yaml 2.9.7 : Apache License 2.0
jackson-datatype-joda 2.9.7 : Apache License 2.0
Jackson-Datatype-JSR310 2.9.7 : Apache License 2.0
Jackson-JAXRS-base 2.9.7 : Apache License 2.0
jackson-jaxrs-json-provider 2.9.7 : Apache License 2.0
Jackson-module-Afterburner 2.9.7 : Apache License 2.0
jackson-module-jaxb-annotations 2.9.7 : Apache License 2.0
jakarta.jws API 1.1.1 : Eclipse Distribution License - v 1.0
jakarta.xml.bind-api 2.3.2 : Eclipse Distribution License - v 1.0
Java API for XML Processing 1.4 : Apache License 2.0
Java API for XML Web Services 2.2 2.0.4.Final : Common Development and Distribution License 1.1
Java Architecture for XML Binding 2.3.0 : Common Development and Distribution License 1.1
Java Platform Standard Edition (JRE) (J2RE) 8u171 : Oracle Java SE and JavaFX License
Java Servlet API 3.1.0 : Common Development and Distribution License 1.1
Java Servlet API 4.0.1 : Sun GPL With Classpath Exception v2.0
Java(TM) API for XML-Based Web Services 2.3 1.0.0.Final : GNU General Public License v2.0 w/Classpath exception
java-cacerts 1.0 : MIT License
java-support 7.3.0 : Apache License 2.0
JavaBeans Activation Framework 1.2.0 : Sun GPL With Classpath Exception v2.0
JavaBeans Activation Framework fork for Android 1.6.2 : GNU General Public License v2.0 w/Classpath exception
Javassist 3.21.0-GA : Apache License 2.0
Javax Inject from the JSR-330 Expert Group 1 : Apache License 2.0
javax.activation 0.67.0.7 : GNU General Public License v3.0 or later
javax.annotation API 1.2 : Common Development and Distribution License 1.1
javax.transaction API 1.3 : Common Development and Distribution License 1.1
javax.ws.rs-api 2.0 : Common Development and Distribution License 1.1
javax.ws.rs-api 2.0.1 : Common Development and Distribution License 1.1
JAX-RS 2.0: The Java(TM) API for RESTful Web Services 1.0.0.Alpha1 : Common Development and Distribution License 1.1
JAXB CORE 2.3.0.1 : Sun GPL With Classpath Exception v2.0
JAXB Runtime 2.3.0.1 : Common Development and Distribution License 1.1
Jersey 2.25.1 : Common Development and Distribution License 1.1
jersey-container-servlet 2.25.1 : Common Development and Distribution License 1.1
jersey-container-servlet-core 2.25.1 : Common Development and Distribution License 1.1
jersey-core-server 2.25.1 : Common Development and Distribution License 1.1
jersey-media-jaxb 2.25.1 : Common Development and Distribution License 1.1
jersey-media-multipart 2.25.1 : Common Development and Distribution License 1.1
jersey-repackaged-guava 2.25.1 : Common Development and Distribution License 1.1
Jetbrains annotations 13.0 : Apache License 2.0
Jetty :: Servlet Handling 9.4.12.v20180830 : Apache License 2.0
Jetty: Java based HTTP, Servlet, SPDY, WebSocket Server 9.4.12.v20180830 : Apache License 2.0
Jetty: Java based HTTP, Servlet, SPDY, WebSocket Server 9.4.12.v20180830-redhat-00002 : Apache License 2.0
Jinja 2.10.1 : BSD 3-clause "New" or "Revised" License
JMS 1.1 1.1.1 : Apache License 2.0
Joda Time 2.10 : Apache License 2.0
jQuery 1.12.4 : MIT License
jQuery 2.2.3 : MIT License
jQuery 3.2.1 : MIT License
js-tokens 2.0.0 : MIT License
js-yaml 3.13.1 : MIT License
js-yaml 3.7.0 : MIT License
jsbn 0.1.0 : BSD 3-clause "New" or "Revised" License
jshttp/mime-types 2.1.24 : MIT License
json-schema 0.2.2 : BSD 3-clause "New" or "Revised" License
json-schema-webjar 0.2.3 : BSD 3-clause "New" or "Revised" License
json-stringify-safe 5.0.1 : ISC License
json5-utils 1.2.0 : Do What The F*ck You Want To Public License
jsonparse 1.3.1 : MIT License
JSONStream 0.10.0 : MIT License
jsprim 1.4.0 : MIT License
Jython 2.7.1 : Jython License
Kerberos 1.15.4 : MIT License
Kerberos 1.17 : MIT License
keyutils 1.6 : GNU General Public License v2.0 or later
koa-query-sorter 0.0.2 : MIT License
Kotlin 1.2.10 : Apache License 2.0
Kotlin Stdlib 1.1.51 : Apache License 2.0
kotlinx-coroutines-core 0.19.3 : Apache License 2.0
krb5-conf 1.0 : MIT License
lcid 1.0.0 : MIT License
lcov-parse 0.0.10 : BSD 3-clause "New" or "Revised" License
LessCss 2.6.1 : Apache License 2.0
libbsd-dev 0.9.1 : BSD 3-clause "New" or "Revised" License
libcipm 2.0.2 : MIT License
libcomerr2 1.45.0 : BSD 3-clause "New" or "Revised" License
libevent - an event notification library 2.1.8 : BSD 3-clause "New" or "Revised" License
libffi 3.2.1 : MIT License
libjpeg-turbo-dev 2.0.2 : BSD 3-clause "New" or "Revised" License
libnsl 1.2.0 : GNU Library General Public License v2 or later
libpng 1.6.37 : libpng License
libpython3.6-stdlib 3.6.8 : Python Software Foundation License 2.3
LibreSSL Portable Security Libraries 2.7.4 : OpenSSL License
LibreSSL Portable Security Libraries 2.9.1 : Apache License 1.0
libuv 1.23.2 : MIT License
libverto 0.3.1 : MIT License
libXdmcp 1.1.3 : MIT License
libxkbfile 1.6.7 : MIT License
Lo-Dash 3.2.3 : MIT License
Lo-Dash 3.6.1 : MIT License
Lo-Dash 4.6.0 : MIT License
Lo-Dash 4.9.0 : MIT License
Logback 1.2.3 : GNU Lesser General Public License v2.1 or later
Logback Classic Module 1.2.3 : GNU Lesser General Public License v2.1 or later
logrotate 3.15.0 : GNU General Public License v2.0 or later
loose-envify 1.2.0 : MIT License
make-fetch-happen 4.0.0 : ISC License
MariaDB v3.0.8 : GNU Lesser General Public License v2.1 or later
mariadb-bench 10.3.13 : GNU General Public License v3.0 or later
md5-hex 1.3.0 : MIT License
md5-o-matic 0.1.1 : MIT License
memcached-dev 1.4.34 : BSD 3-clause "New" or "Revised" License
Metrics Core 3.1.2 : Apache License 2.0
Metro OSGi API bundle for GlassFish V3 2.4.2 : Common Development and Distribution License 1.1
micromatch 2.3.7 : MIT License
mikeal/aws-sign 0.6.0 : Apache License 2.0
MIME streaming extension 1.9.6 : Common Development and Distribution License 1.1
minimatch 3.0.4 : ISC License
minimist 0.0.8 : MIT License
minimist 1.2.0 : MIT License
mkinitfs 3.4.0 : GNU General Public License v2.0 only
modern-syslog 1.1.1 : MIT License
modern-syslog 1.1.2 : MIT License
move-concurrently 1.0.1 : ISC License
Mozilla NSS 3.43 : Mozilla Public License 2.0
ms.js 0.7.1 : MIT License
ms.js 2.0.0 : MIT License
msgpack-python 0.5.6 : Apache License 2.0
msgpack-python 0.6.1 : Apache License 2.0
musl 1.1.22 : MIT License
mute-stream 0.0.6 : ISC License
MySQL for Python 1.2.5 : GNU General Public License v3.0 or later
nan 2.13.2 : MIT License
ncurses-term 6.1+20180210 : MIT v2 with Ad Clause License
Net-SNMP 5.8 : BSD 3-clause "New" or "Revised" License
netapp:santricity_web_services_proxy : Basic Proprietary Commercial License
nghttp2 1.35.1 : Expat License
nginx 1.14.2 : BSD 2-clause "Simplified" License
nickmerwin/node-coveralls 2.13.1 : BSD 2-clause "Simplified" License
node-ansistyles 0.1.3 : MIT License
node-archy 1.0.0 : MIT License
node-assert-plus 0.2.0 : MIT License
node-assert-plus 1.0.0 : MIT License
node-commondir 1.0.1 : MIT License
node-concat-map 0.0.1 : MIT License
node-coveralls 2.13.1 : BSD 2-clause "Simplified" License
node-coveralls 3.0.0 : BSD 2-clause "Simplified" License
node-cross-spawn 4.0.0 : MIT License
node-cross-spawn 4.0.2 : MIT License
node-cross-spawn 5.1.0 : MIT License
node-dashdash 1.14.0 : MIT License
node-editor 1.0.0 : MIT License
node-error-ex 1.3.0 : MIT License
node-fetch-npm 2.0.2 : MIT License
node-glob v7.1.3 : ISC License
node-graceful-fs v4.1.9 : ISC License
node-gyp 3.8.0 : MIT License
node-http-signature 1.1.1 : MIT License
node-ip 1.1.5 : Expat License
node-lcov-parse 1.0.0+20170612git80d039574ed9 : MIT License
node-mkdirp 0.4.2 : MIT License
node-mkdirp 0.5.1 : MIT License
node-modern-syslog 1.1.4 : Expat License
node-optimist 0.3.5 : MIT License
node-optimist 0.6.1 : MIT License
node-pool 2.0.3 : MIT License
node-pool 2.2.0 : MIT License
node-semver 5.3.0 : ISC License
node-temp 0.4.0 : MIT License
node-uuid 3.3.2 : MIT License
node-worker-farm 1.6.0 : MIT License
Node.js 10.14.1 : BSD 3-clause "New" or "Revised" License
nodejs-asn1 0.2.3 : MIT License
nodejs-caching-transform 1.0.1 : MIT License
nodejs-clean-yaml-object 0.1.0 : MIT License
nodejs-color-support 1.1.3 : ISC License
nodejs-coveralls 2.11.6 : BSD 3-clause "New" or "Revised" License
nodejs-deeper 2.1.0 : BSD 3-clause "New" or "Revised" License
nodejs-generate-function 2.3.1 : MIT License
nodejs-log-driver 1.2.5 : ISC License
nodejs-only-shallow 1.2.0 : ISC License
nodejs-spdx-exceptions 1.0.5 : Creative Commons Attribution 4.0
nodejs/string_decoder 0.10.31 : MIT License
nodeunit 0.9.1 : MIT License
nodeunit 0.9.4 : MIT License
nopt 3.0.6 : ISC License
nopt 4.0.0 : MIT License
normalize-package-data 2.3.5 : BSD 2-clause "Simplified" License
npm 5.6.0 : Artistic License 2.0
npm 5.8.0 : Artistic License 2.0
npm 6.1.0 : Artistic License 2.0
npm-audit-report 1.3.1 : ISC License
npm-user-validate 1.0.0 : BSD 2-clause "Simplified" License
NSPR 4.20 : GNU Lesser General Public License v2.1 only
number-is-nan 1.0.0 : MIT License
nyc 7.1.0 : ISC License
object-assign 4.1.1 : MIT License
only-shallow 1.2.0 : ISC License
OpenJDK 1.8.0.191 : Apache License 1.1
OpenJDK 1.8.0.212 : Apache License 2.0
OpenJDK 1.8.0.212.b04 : (BSD-4-Clause (University of California-Specific) AND Independent JPEG Group License AND GNU General Public License v2.0 or later AND BSD 3-clause "New" or "Revised" License AND zlib License AND Apache License 2.0 AND GNU General Public License v1.0 or later AND W3C Software Notice and License (2002-12-31) AND MIT License AND Apache License 1.1 AND GNU Library General Public License v2 or later AND Mozilla Public License 2.0 AND Public Domain AND GNU General Public License v2.0 with Exceptions)
OpenJDK ORB 8.1.2.Final-redhat-00001 : GNU General Public License v3.0 or later
OpenJDK8 javabeans for android. 1.0.2 : GNU General Public License v2.0 w/Classpath exception
OpenLDAP 2.4.47 : Open LDAP Public License v2.8
OpenSAML 2.0 3.3.0 : Apache License 2.0
OpenSSL OpenSSL_1_1_1c : The Open SSL License
OpenSSL : OpenSSL License
org.brotli:dec 0.1.2 : MIT License
org.lucee:commons-io 2.6.0 : Apache License 2.0
os-homedir 1.0.1 : MIT License
osenv 0.1.3 : ISC License
OSGi resource locator bundle - used by various API providers that rely on META-INF/services mechanism to locate providers. 1.0.1 : Common Development and Distribution License 1.1
otj-pg-embedded 0.13.0 : Apache License 2.0
Pango 1.42.4 : GNU Lesser General Public License v3.0 or later
paramiko 2.4.2 : GNU Library General Public License v2 or later
parse-json 2.2.0 : MIT License
path-is-inside 1.0.2 : MIT License
PaX Utilities 1.2.3 : GNU General Public License v2.0 only
PCRE 8.42 : BSD 3-clause "New" or "Revised" License
pcsc-lite-libs 1.8.25 : BSD 3-clause "New" or "Revised" License
performance-now 2.0.0 : MIT License
pify 2.3.0 : MIT License
pinkie-promise 2.0.1 : MIT License
pip 18.1 : Expat License
pip 19.0.3 : MIT License
pip 19.1.1 : MIT License
pkg-up 1.0.0 : MIT License
pkgconf 1.6.0 : ISC License
pnpm 0.26.16 : MIT License
PostgreSQL Database Server 11.3 : PostgreSQL License
preserve 0.2.0 : MIT License
processing.py 3055 : Apache License 2.0
promise-inflight 1.0.1 : ISC License
proto-list 1.2.4 : ISC License
prr 1.0.1 : MIT License
pseudomap 1.0.2 : ISC License
Punycode.js 1.4.1 : MIT License
py-automat 0.7.0 : MIT License
py-constantly 15.1.0 : MIT License
py-django 1.11.15 : BSD 3-clause "New" or "Revised" License
py-incremental 17.5.0 : MIT License
py-pyldap 2.4.45 : Python License 2.0
py-requests 2.21.0 : Apache License 2.0
py-yaml 5.1 : MIT License
py-zope-interface 4.6.0 : Zope Public License 2.1
py3-jinja2 2.10 : BSD 3-clause "New" or "Revised" License
pyca/cryptography 2.6.1 : BSD 3-clause "New" or "Revised" License
pyca/pynacl 1.3.0 : Apache License 2.0
pycparser 2.19 : BSD 3-clause "New" or "Revised" License
PyHamcrest 1.9.0 : BSD 3-clause "New" or "Revised" License
pypi-zope.interface 4.3.3 : Zope Public License 2.1
Python programming language 3.6.8 : Python License 2.0
Python programming language 3.7.3 : MIT License
python-bcrypt 3.1.6 : Apache License 2.0
python-carbon 1.1.5 : Apache License 2.0
python-cryptography 2.6.1 : BSD 3-clause "New" or "Revised" License
python-django 1.11.20 : BSD 3-clause "New" or "Revised" License
python-ldap 3.1.0 : Python Software Foundation License 2.3
python-rfc3986 1.2.0 : Apache License 2.0
python-wheel 0.33.1 : MIT License
python3-pyldap 2.4.28 : Python License 2.0
python3-stdlib-extensions 3.6.8 : Python License 2.0