forked from pgadmin-org/pgadmin4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDEPENDENCIES
More file actions
1387 lines (1376 loc) · 218 KB
/
DEPENDENCIES
File metadata and controls
1387 lines (1376 loc) · 218 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
pgAdmin 4 Dependency Inventory
==============================
pgAdmin 4 is built on C++, Python and Javascript, and is dependent on various
third party libraries. These are automatically compiled from the system,
requirements.txt.and packages.json and listed below.
C++ Dependencies
================
Name Version Licence URL
---- ------- ------- ---
QT 5+ LGPL v2.1/3 https://www.qt.io/
QDarkStyleSheet 2.8.1 MIT (code), CC BY 4.0 (images) https://github.com/ColinDuquesnoy/QDarkStyleSheet
Python 3.4+ PSF https://www.python.org/
3 dependencies listed.
Python Dependencies
===================
Name Version Licence URL
---- ------- ------- ---
blinker 1.4 MIT License http://pythonhosted.org/blinker/
Flask 1.0.2 BSD https://www.palletsprojects.com/p/flask/
Werkzeug 1.0.1 BSD-3-Clause https://palletsprojects.com/p/werkzeug/
Flask-Gravatar 0.5.0 BSD https://github.com/zzzsochi/Flask-Gravatar/
Flask-Login 0.4.1 MIT https://github.com/maxcountryman/flask-login
Flask-Mail 0.9.1 BSD https://github.com/rduplain/flask-mail
Flask-Migrate 2.4.0 MIT http://github.com/miguelgrinberg/flask-migrate/
Flask-Principal 0.4.0 MIT http://packages.python.org/Flask-Principal/
Flask-SQLAlchemy 2.4.1 BSD-3-Clause https://github.com/pallets/flask-sqlalchemy
Flask-WTF 0.14.3 BSD https://github.com/lepture/flask-wtf
Flask-Compress 1.4.0 MIT https://libwilliam.github.io/flask-compress/
passlib 1.7.2 BSD https://bitbucket.org/ecollins/passlib
pytz 2020.1 MIT http://pythonhosted.org/pytz
simplejson 3.16.0 MIT License https://github.com/simplejson/simplejson
six 1.15.0 MIT https://github.com/benjaminp/six
speaklater 1.3 UNKNOWN http://github.com/mitsuhiko/speaklater
sqlparse 0.3.1 BSD https://github.com/andialbrecht/sqlparse
WTForms 2.2.1 BSD https://wtforms.readthedocs.io/
Flask-Paranoid 0.2.0 MIT http://github.com/miguelgrinberg/flask-paranoid/
psutil 5.7.2 BSD https://github.com/giampaolo/psutil
psycopg2 2.8.6 LGPL with exceptions https://psycopg.org/
python-dateutil 2.8.1 Dual License https://dateutil.readthedocs.io
SQLAlchemy 1.3.19 MIT http://www.sqlalchemy.org
Flask-Security-Too 3.4.4 MIT https://github.com/Flask-Middleware/flask-security
bcrypt 3.1.7 Apache License, Version 2.0 https://github.com/pyca/bcrypt/
cryptography 3.0 BSD or Apache License, Version 2.0 https://github.com/pyca/cryptography
sshtunnel 0.1.5 MIT https://github.com/pahaz/sshtunnel
ldap3 2.8.1 LGPL v3 https://github.com/cannatag/ldap3
28 dependencies listed.
Javascript Dependencies
=======================
Name Version Licence URL
---- ------- ------- ---
@babel/code-frame 7.10.4 MIT https://github.com/babel/babel.git
@babel/core 7.11.6 MIT https://github.com/babel/babel.git
@babel/core 7.6.4 MIT https://github.com/babel/babel/tree/master/packages/babel-core
@babel/generator 7.11.6 MIT https://github.com/babel/babel.git
@babel/helper-annotate-as-pure 7.10.4 MIT https://github.com/babel/babel.git
@babel/helper-builder-binary-assignment-operator-visitor 7.10.4 MIT https://github.com/babel/babel.git
@babel/helper-builder-react-jsx 7.10.4 MIT https://github.com/babel/babel.git
@babel/helper-builder-react-jsx-experimental 7.11.5 MIT https://github.com/babel/babel.git
@babel/helper-create-class-features-plugin 7.10.5 MIT https://github.com/babel/babel.git
@babel/helper-create-regexp-features-plugin 7.10.4 MIT https://github.com/babel/babel.git
@babel/helper-define-map 7.10.5 MIT https://github.com/babel/babel.git
@babel/helper-explode-assignable-expression 7.11.4 MIT https://github.com/babel/babel.git
@babel/helper-function-name 7.10.4 MIT https://github.com/babel/babel.git
@babel/helper-get-function-arity 7.10.4 MIT https://github.com/babel/babel.git
@babel/helper-hoist-variables 7.10.4 MIT https://github.com/babel/babel.git
@babel/helper-member-expression-to-functions 7.11.0 MIT https://github.com/babel/babel.git
@babel/helper-module-imports 7.10.4 MIT https://github.com/babel/babel.git
@babel/helper-module-transforms 7.11.0 MIT https://github.com/babel/babel.git
@babel/helper-optimise-call-expression 7.10.4 MIT https://github.com/babel/babel.git
@babel/helper-plugin-utils 7.10.4 MIT https://github.com/babel/babel.git
@babel/helper-regex 7.10.5 MIT https://github.com/babel/babel.git
@babel/helper-remap-async-to-generator 7.11.4 MIT https://github.com/babel/babel.git
@babel/helper-replace-supers 7.10.4 MIT https://github.com/babel/babel.git
@babel/helper-simple-access 7.10.4 MIT https://github.com/babel/babel.git
@babel/helper-skip-transparent-expression-wrappers 7.11.0 MIT https://github.com/babel/babel.git
@babel/helper-split-export-declaration 7.11.0 MIT https://github.com/babel/babel.git
@babel/helper-validator-identifier 7.10.4 MIT https://github.com/babel/babel.git
@babel/helper-wrap-function 7.10.4 MIT https://github.com/babel/babel.git
@babel/helpers 7.10.4 MIT https://github.com/babel/babel.git
@babel/highlight 7.10.4 MIT https://github.com/babel/babel.git
@babel/parser 7.11.5 MIT https://github.com/babel/babel.git
@babel/plugin-proposal-async-generator-functions 7.10.5 MIT https://github.com/babel/babel.git
@babel/plugin-proposal-class-properties 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-proposal-dynamic-import 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-proposal-json-strings 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-proposal-object-rest-spread 7.11.0 MIT https://github.com/babel/babel.git
@babel/plugin-proposal-optional-catch-binding 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-proposal-unicode-property-regex 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-syntax-async-generators 7.8.4 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators
@babel/plugin-syntax-dynamic-import 7.8.3 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-dynamic-import
@babel/plugin-syntax-json-strings 7.8.3 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-json-strings
@babel/plugin-syntax-jsx 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-syntax-object-rest-spread 7.8.3 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread
@babel/plugin-syntax-optional-catch-binding 7.8.3 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-catch-binding
@babel/plugin-transform-arrow-functions 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-async-to-generator 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-block-scoped-functions 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-block-scoping 7.11.1 MIT https://github.com/babel/babel.git
@babel/plugin-transform-classes 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-computed-properties 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-destructuring 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-dotall-regex 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-duplicate-keys 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-exponentiation-operator 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-for-of 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-function-name 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-literals 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-member-expression-literals 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-modules-amd 7.10.5 MIT https://github.com/babel/babel.git
@babel/plugin-transform-modules-commonjs 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-modules-systemjs 7.10.5 MIT https://github.com/babel/babel.git
@babel/plugin-transform-modules-umd 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-named-capturing-groups-regex 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-new-target 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-object-super 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-parameters 7.10.5 MIT https://github.com/babel/babel.git
@babel/plugin-transform-property-literals 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-react-display-name 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-react-jsx 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-react-jsx-development 7.11.5 MIT https://github.com/babel/babel.git
@babel/plugin-transform-react-jsx-self 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-react-jsx-source 7.10.5 MIT https://github.com/babel/babel.git
@babel/plugin-transform-react-pure-annotations 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-regenerator 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-reserved-words 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-shorthand-properties 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-spread 7.11.0 MIT https://github.com/babel/babel.git
@babel/plugin-transform-sticky-regex 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-template-literals 7.10.5 MIT https://github.com/babel/babel.git
@babel/plugin-transform-typeof-symbol 7.10.4 MIT https://github.com/babel/babel.git
@babel/plugin-transform-unicode-regex 7.10.4 MIT https://github.com/babel/babel.git
@babel/preset-env 7.6.3 MIT https://github.com/babel/babel/tree/master/packages/babel-preset-env
@babel/preset-react 7.10.4 MIT https://github.com/babel/babel.git
@babel/runtime 7.11.2 MIT https://github.com/babel/babel.git
@babel/template 7.10.4 MIT https://github.com/babel/babel.git
@babel/traverse 7.11.5 MIT https://github.com/babel/babel.git
@babel/types 7.11.5 MIT https://github.com/babel/babel.git
@istanbuljs/schema 0.1.2 MIT git+https://github.com/istanbuljs/schema.git
@simonwep/pickr 1.7.4 MIT https://github.com/Simonwep/pickr.git
@sindresorhus/is 0.7.0 MIT https://github.com/sindresorhus/is.git
@types/json-schema 7.0.6 MIT https://github.com/DefinitelyTyped/DefinitelyTyped.git
@types/node 14.11.5 MIT https://github.com/DefinitelyTyped/DefinitelyTyped.git
@types/q 1.5.4 MIT https://github.com/DefinitelyTyped/DefinitelyTyped.git
@webassemblyjs/ast 1.9.0 MIT https://github.com/xtuc/webassemblyjs.git
@webassemblyjs/floating-point-hex-parser 1.9.0 MIT https://github.com/xtuc/webassemblyjs.git
@webassemblyjs/helper-api-error 1.9.0 MIT Unknown
@webassemblyjs/helper-buffer 1.9.0 MIT https://github.com/xtuc/webassemblyjs.git
@webassemblyjs/helper-code-frame 1.9.0 MIT https://github.com/xtuc/webassemblyjs.git
@webassemblyjs/helper-module-context 1.9.0 MIT https://github.com/xtuc/webassemblyjs.git
@webassemblyjs/helper-wasm-bytecode 1.9.0 MIT https://github.com/xtuc/webassemblyjs.git
@webassemblyjs/helper-wasm-section 1.9.0 MIT https://github.com/xtuc/webassemblyjs.git
@webassemblyjs/ieee754 1.9.0 MIT Unknown
@webassemblyjs/leb128 1.9.0 MIT Unknown
@webassemblyjs/utf8 1.9.0 MIT https://github.com/xtuc/webassemblyjs.git
@webassemblyjs/wasm-edit 1.9.0 MIT https://github.com/xtuc/webassemblyjs.git
@webassemblyjs/wasm-gen 1.9.0 MIT https://github.com/xtuc/webassemblyjs.git
@webassemblyjs/wasm-opt 1.9.0 MIT https://github.com/xtuc/webassemblyjs.git
@webassemblyjs/wasm-parser 1.9.0 MIT https://github.com/xtuc/webassemblyjs.git
@webassemblyjs/wast-parser 1.9.0 MIT https://github.com/xtuc/webassemblyjs.git
@webassemblyjs/wast-printer 1.9.0 MIT https://github.com/xtuc/webassemblyjs.git
accepts 1.3.7 MIT https://github.com/jshttp/accepts.git
acitree 4.5.0-rc.7 MIT https://github.com/imsurinder90/jquery-aciTree.git
acorn 7.4.1 MIT https://github.com/acornjs/acorn.git
acorn 6.4.2 MIT https://github.com/acornjs/acorn.git
acorn-jsx 5.3.1 MIT https://github.com/acornjs/acorn-jsx
acorn-walk 7.2.0 MIT https://github.com/acornjs/acorn.git
after 0.8.2 MIT git://github.com/Raynos/after.git
aggregate-error 3.1.0 MIT https://github.com/sindresorhus/aggregate-error.git
airbnb-prop-types 2.16.0 MIT git+https://github.com/airbnb/prop-types.git
ajv 5.5.2 MIT https://github.com/epoberezkin/ajv.git
ajv 6.12.5 MIT https://github.com/ajv-validator/ajv.git
ajv-errors 1.0.1 MIT git+https://github.com/epoberezkin/ajv-errors.git
ajv-keywords 3.5.2 MIT git+https://github.com/epoberezkin/ajv-keywords.git
alertifyjs 1.7.1 MIT git@github.com:MohammadYounes/AlertifyJS.git
alphanum-sort 1.0.2 MIT https://github.com/TrySound/alphanum-sort.git
ansi-colors 3.2.4 MIT https://github.com/doowb/ansi-colors.git
ansi-escapes 3.2.0 MIT https://github.com/sindresorhus/ansi-escapes.git
ansi-regex 2.1.1 MIT https://github.com/chalk/ansi-regex.git
ansi-regex 4.1.0 MIT https://github.com/chalk/ansi-regex.git
ansi-regex 3.0.0 MIT https://github.com/chalk/ansi-regex.git
ansi-styles 2.2.1 MIT https://github.com/chalk/ansi-styles.git
ansi-styles 3.2.1 MIT https://github.com/chalk/ansi-styles.git
ansi-styles 4.3.0 MIT https://github.com/chalk/ansi-styles.git
arch 2.1.2 MIT git://github.com/feross/arch.git
archive-type 4.0.0 MIT https://github.com/kevva/archive-type.git
argparse 1.0.10 MIT https://github.com/nodeca/argparse.git
arr-diff 4.0.0 MIT https://github.com/jonschlinkert/arr-diff.git
arr-flatten 1.1.0 MIT https://github.com/jonschlinkert/arr-flatten.git
arr-union 3.1.0 MIT https://github.com/jonschlinkert/arr-union.git
array-filter 1.0.0 MIT git://github.com/juliangruber/array-filter.git
array-find-index 1.0.2 MIT https://github.com/sindresorhus/array-find-index.git
array-flatten 1.1.1 MIT git://github.com/blakeembrey/array-flatten.git
array-includes 3.1.1 MIT git://github.com/es-shims/array-includes.git
array-union 1.0.2 MIT https://github.com/sindresorhus/array-union.git
array-uniq 1.0.3 MIT https://github.com/sindresorhus/array-uniq.git
array-unique 0.3.2 MIT https://github.com/jonschlinkert/array-unique.git
array.prototype.find 2.1.1 MIT git://github.com/paulmillr/Array.prototype.find.git
array.prototype.flat 1.2.3 MIT git://github.com/es-shims/Array.prototype.flat.git
array.prototype.flatmap 1.2.3 MIT git://github.com/es-shims/Array.prototype.flatMap.git
arraybuffer.slice 0.0.7 MIT git@github.com:rase-/arraybuffer.slice.git
asn1.js 5.4.1 MIT git@github.com:indutny/asn1.js
assert 1.5.0 MIT git://github.com/browserify/commonjs-assert.git
assign-symbols 1.0.0 MIT https://github.com/jonschlinkert/assign-symbols.git
astral-regex 1.0.0 MIT https://github.com/kevva/astral-regex.git
async 2.6.3 MIT https://github.com/caolan/async.git
async 3.2.0 MIT https://github.com/caolan/async.git
async-each 1.0.3 MIT git://github.com/paulmillr/async-each.git
async-limiter 1.0.1 MIT https://github.com/strml/async-limiter.git
autoprefixer 9.8.6 MIT https://github.com/postcss/autoprefixer.git
axios 0.18.1 MIT https://github.com/axios/axios.git
axios-mock-adapter 1.18.2 MIT git+https://github.com/ctimmerm/axios-mock-adapter.git
babel-code-frame 6.26.0 MIT https://github.com/babel/babel/tree/master/packages/babel-code-frame
babel-generator 6.26.1 MIT https://github.com/babel/babel/tree/master/packages/babel-generator
babel-helper-call-delegate 6.24.1 MIT https://github.com/babel/babel/tree/master/packages/babel-helper-call-delegate
babel-helper-define-map 6.26.0 MIT https://github.com/babel/babel/tree/master/packages/babel-helper-define-map
babel-helper-function-name 6.24.1 MIT https://github.com/babel/babel/tree/master/packages/babel-helper-function-name
babel-helper-get-function-arity 6.24.1 MIT https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity
babel-helper-hoist-variables 6.24.1 MIT https://github.com/babel/babel/tree/master/packages/babel-helper-hoist-variables
babel-helper-optimise-call-expression 6.24.1 MIT https://github.com/babel/babel/tree/master/packages/babel-helper-optimise-call-expression
babel-helper-regex 6.26.0 MIT https://github.com/babel/babel/tree/master/packages/babel-helper-regex
babel-helper-replace-supers 6.24.1 MIT https://github.com/babel/babel/tree/master/packages/babel-helper-replace-supers
babel-loader 8.0.6 MIT https://github.com/babel/babel-loader.git
babel-messages 6.23.0 MIT https://github.com/babel/babel/tree/master/packages/babel-messages
babel-plugin-check-es2015-constants 6.22.0 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-check-es2015-constants
babel-plugin-dynamic-import-node 2.3.3 MIT git+https://github.com/airbnb/babel-plugin-dynamic-import-node.git
babel-plugin-syntax-object-rest-spread 7.0.0-beta.3 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread
babel-plugin-transform-es2015-arrow-functions 6.22.0 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-arrow-functions
babel-plugin-transform-es2015-block-scoped-functions 6.22.0 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-block-scoped-functions
babel-plugin-transform-es2015-block-scoping 6.26.0 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-block-scoping
babel-plugin-transform-es2015-classes 6.24.1 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-classes
babel-plugin-transform-es2015-computed-properties 6.24.1 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-computed-properties
babel-plugin-transform-es2015-destructuring 6.23.0 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-destructuring
babel-plugin-transform-es2015-duplicate-keys 6.24.1 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-duplicate-keys
babel-plugin-transform-es2015-for-of 6.23.0 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-for-of
babel-plugin-transform-es2015-function-name 6.24.1 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-function-name
babel-plugin-transform-es2015-literals 6.22.0 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-literals
babel-plugin-transform-es2015-modules-amd 6.24.1 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-amd
babel-plugin-transform-es2015-modules-commonjs 6.26.2 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs
babel-plugin-transform-es2015-object-super 6.24.1 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-object-super
babel-plugin-transform-es2015-parameters 6.24.1 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-parameters
babel-plugin-transform-es2015-shorthand-properties 6.24.1 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-shorthand-properties
babel-plugin-transform-es2015-spread 6.22.0 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-spread
babel-plugin-transform-es2015-sticky-regex 6.24.1 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-sticky-regex
babel-plugin-transform-es2015-template-literals 6.22.0 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-template-literals
babel-plugin-transform-es2015-typeof-symbol 6.23.0 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-typeof-symbol
babel-plugin-transform-es2015-unicode-regex 6.24.1 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-unicode-regex
babel-plugin-transform-object-rest-spread 7.0.0-beta.3 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread
babel-plugin-transform-regenerator 6.26.0 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator
babel-plugin-transform-strict-mode 6.24.1 MIT https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-strict-mode
babel-preset-es2015-without-strict 0.0.4 MIT https://github.com/fancyboynet/babel-preset-es2015-without-strict.git
babel-runtime 6.26.0 MIT https://github.com/babel/babel/tree/master/packages/babel-runtime
babel-template 6.26.0 MIT https://github.com/babel/babel/tree/master/packages/babel-template
babel-traverse 6.26.0 MIT https://github.com/babel/babel/tree/master/packages/babel-traverse
babel-types 6.26.0 MIT https://github.com/babel/babel/tree/master/packages/babel-types
babelify 10.0.0 MIT https://github.com/babel/babelify.git
babylon 6.18.0 MIT https://github.com/babel/babylon
backbone 1.4.0 MIT https://github.com/jashkenas/backbone.git
backbone 1.2.3 MIT https://github.com/jashkenas/backbone.git
backbone 1.3.3 MIT https://github.com/jashkenas/backbone.git
backform 0.2.0 MIT https://github.com/AmiliaApp/backform
backgrid 0.3.8 MIT http://github.com/cloudflare/backgrid
backgrid-filter 0.3.7 MIT git://github.com/wyuenho/backgrid-text-cell.git
backgrid-select-all 0.3.5 MIT git://github.com/wyuenho/backgrid-select-all.git
backo2 1.0.2 MIT https://github.com/mokesmokes/backo.git
balanced-match 1.0.0 MIT git://github.com/juliangruber/balanced-match.git
base 0.11.2 MIT https://github.com/node-base/base.git
base64-arraybuffer 0.1.5 MIT https://github.com/niklasvh/base64-arraybuffer
base64-js 1.3.1 MIT git://github.com/beatgammit/base64-js.git
base64id 1.0.0 MIT https://github.com/faeldt/base64id.git
better-assert 1.0.2 MIT https://github.com/visionmedia/better-assert.git
bfj 6.1.2 MIT https://gitlab.com/philbooth/bfj.git
big.js 5.2.2 MIT https://github.com/MikeMcl/big.js.git
bignumber.js 8.1.1 MIT https://github.com/MikeMcl/bignumber.js.git
bignumber.js 7.2.1 MIT https://github.com/MikeMcl/bignumber.js.git
bin-build 3.0.0 MIT https://github.com/kevva/bin-build.git
bin-check 4.1.0 MIT https://github.com/kevva/bin-check.git
bin-version 3.1.0 MIT https://github.com/sindresorhus/bin-version.git
bin-version-check 4.0.0 MIT https://github.com/sindresorhus/bin-version-check.git
bin-wrapper 4.1.0 MIT https://github.com/kevva/bin-wrapper.git
binary-extensions 2.1.0 MIT https://github.com/sindresorhus/binary-extensions.git
binary-extensions 1.13.1 MIT https://github.com/sindresorhus/binary-extensions.git
bindings 1.5.0 MIT git://github.com/TooTallNate/node-bindings.git
bl 1.2.3 MIT https://github.com/rvagg/bl.git
blob 0.0.5 MIT git://github.com/webmodules/blob.git
bluebird 3.7.2 MIT git://github.com/petkaantonov/bluebird.git
bn.js 4.11.9 MIT git@github.com:indutny/bn.js
bn.js 5.1.3 MIT git@github.com:indutny/bn.js
body-parser 1.19.0 MIT https://github.com/expressjs/body-parser.git
bootstrap 4.5.2 MIT git+https://github.com/twbs/bootstrap.git
bootstrap4-toggle 3.4.0 MIT https://github.com/gitbrent/bootstrap4-toggle.git
bowser 2.1.2 MIT git+https://github.com/lancedikson/bowser.git
brace-expansion 1.1.11 MIT git://github.com/juliangruber/brace-expansion.git
braces 2.3.2 MIT https://github.com/micromatch/braces.git
braces 3.0.2 MIT https://github.com/micromatch/braces.git
brorand 1.1.0 MIT git@github.com:indutny/brorand
browser-pack 6.1.0 MIT git://github.com/browserify/browser-pack.git
browser-resolve 1.11.3 MIT git://github.com/shtylman/node-browser-resolve.git
browser-resolve 2.0.0 MIT git://github.com/browserify/browser-resolve.git
browserify 16.2.3 MIT http://github.com/browserify/browserify.git
browserify-aes 1.2.0 MIT git://github.com/crypto-browserify/browserify-aes.git
browserify-cipher 1.0.1 MIT git@github.com:crypto-browserify/browserify-cipher.git
browserify-des 1.0.2 MIT git+https://github.com/crypto-browserify/browserify-des.git
browserify-rsa 4.0.1 MIT git@github.com:crypto-browserify/browserify-rsa.git
browserify-zlib 0.2.0 MIT git+https://github.com/devongovett/browserify-zlib.git
browserslist 4.14.5 MIT https://github.com/browserslist/browserslist.git
buffer 4.9.2 MIT git://github.com/feross/buffer.git
buffer 5.6.0 MIT git://github.com/feross/buffer.git
buffer-alloc 1.2.0 MIT https://github.com/LinusU/buffer-alloc.git
buffer-alloc-unsafe 1.1.0 MIT https://github.com/LinusU/buffer-alloc-unsafe.git
buffer-crc32 0.2.13 MIT git://github.com/brianloveswords/buffer-crc32.git
buffer-fill 1.0.0 MIT https://github.com/LinusU/buffer-fill.git
buffer-from 1.1.1 MIT https://github.com/LinusU/buffer-from.git
buffer-xor 1.0.3 MIT https://github.com/crypto-browserify/buffer-xor.git
builtin-status-codes 3.0.0 MIT https://github.com/bendrucker/builtin-status-codes.git
bytes 3.1.0 MIT https://github.com/visionmedia/bytes.js.git
cache-base 1.0.1 MIT https://github.com/jonschlinkert/cache-base.git
cacheable-request 2.1.4 MIT git+https://github.com/lukechilds/cacheable-request.git
cached-path-relative 1.0.2 MIT git://github.com/ashaffer/cached-path-relative.git
caller-callsite 2.0.0 MIT https://github.com/sindresorhus/caller-callsite.git
caller-path 2.0.0 MIT https://github.com/sindresorhus/caller-path.git
callsites 3.1.0 MIT https://github.com/sindresorhus/callsites.git
callsites 2.0.0 MIT https://github.com/sindresorhus/callsites.git
camelcase 5.3.1 MIT https://github.com/sindresorhus/camelcase.git
camelcase 2.1.1 MIT https://github.com/sindresorhus/camelcase.git
camelcase-keys 2.1.0 MIT https://github.com/sindresorhus/camelcase-keys.git
caniuse-api 3.0.0 MIT https://github.com/nyalab/caniuse-api.git
caw 2.0.1 MIT https://github.com/kevva/caw.git
chalk 1.1.3 MIT https://github.com/chalk/chalk.git
chalk 2.4.2 MIT https://github.com/chalk/chalk.git
chalk 4.1.0 MIT https://github.com/chalk/chalk.git
chardet 0.7.0 MIT git@github.com:runk/node-chardet.git
chart.js 2.9.3 MIT https://github.com/chartjs/Chart.js.git
chartjs-color 2.4.1 MIT https://github.com/chartjs/chartjs-color.git
chartjs-color-string 0.6.0 MIT https://github.com/chartjs/chartjs-color-string.git
check-types 8.0.3 MIT https://gitlab.com/philbooth/check-types.js.git
cheerio 1.0.0-rc.3 MIT git://github.com/cheeriojs/cheerio.git
chokidar 2.1.8 MIT https://github.com/paulmillr/chokidar.git
chokidar 3.4.2 MIT git+https://github.com/paulmillr/chokidar.git
chrome-trace-event 1.0.2 MIT github.com:samccone/chrome-trace-event
cipher-base 1.0.4 MIT git+https://github.com/crypto-browserify/cipher-base.git
circular-json-es6 2.0.2 MIT git+https://github.com/yyx990803/circular-json-es6.git
class-utils 0.3.6 MIT https://github.com/jonschlinkert/class-utils.git
clean-stack 2.2.0 MIT https://github.com/sindresorhus/clean-stack.git
cli-cursor 2.1.0 MIT https://github.com/sindresorhus/cli-cursor.git
clone-deep 4.0.1 MIT https://github.com/jonschlinkert/clone-deep.git
clone-response 1.0.2 MIT git+https://github.com/lukechilds/clone-response.git
co 4.6.0 MIT https://github.com/tj/co.git
coa 2.0.2 MIT git://github.com/veged/coa.git
codemirror 5.58.1 MIT https://github.com/codemirror/CodeMirror.git
collection-visit 1.0.0 MIT https://github.com/jonschlinkert/collection-visit.git
color 3.1.2 MIT https://github.com/Qix-/color.git
color-convert 2.0.1 MIT https://github.com/Qix-/color-convert.git
color-convert 1.9.3 MIT https://github.com/Qix-/color-convert.git
color-name 1.1.4 MIT git@github.com:colorjs/color-name.git
color-name 1.1.3 MIT git@github.com:dfcreative/color-name.git
color-string 1.5.3 MIT https://github.com/Qix-/color-string.git
colorette 1.2.1 MIT https://github.com/jorgebucaran/colorette.git
colors 1.4.0 MIT http://github.com/Marak/colors.js.git
combine-source-map 0.8.0 MIT git://github.com/thlorenz/combine-source-map.git
commander 6.1.0 MIT https://github.com/tj/commander.js.git
commander 2.20.3 MIT https://github.com/tj/commander.js.git
commondir 1.0.1 MIT http://github.com/substack/node-commondir.git
component-emitter 1.2.1 MIT https://github.com/component/emitter.git
component-emitter 1.3.0 MIT https://github.com/component/emitter.git
concat-map 0.0.1 MIT git://github.com/substack/node-concat-map.git
concat-stream 1.6.2 MIT http://github.com/maxogden/concat-stream.git
config-chain 1.1.12 MIT https://github.com/dominictarr/config-chain.git
connect 3.7.0 MIT https://github.com/senchalabs/connect.git
console-browserify 1.2.0 MIT git://github.com/browserify/console-browserify.git
console-stream 0.1.1 MIT git://github.com/Raynos/console-stream.git
constants-browserify 1.0.0 MIT git://github.com/juliangruber/constants-browserify.git
content-disposition 0.5.3 MIT https://github.com/jshttp/content-disposition.git
content-type 1.0.4 MIT https://github.com/jshttp/content-type.git
convert-source-map 1.7.0 MIT git://github.com/thlorenz/convert-source-map.git
convert-source-map 1.1.3 MIT git://github.com/thlorenz/convert-source-map.git
cookie 0.4.0 MIT https://github.com/jshttp/cookie.git
cookie 0.3.1 MIT https://github.com/jshttp/cookie.git
cookie-signature 1.0.6 MIT https://github.com/visionmedia/node-cookie-signature.git
copy-descriptor 0.1.1 MIT https://github.com/jonschlinkert/copy-descriptor.git
copy-webpack-plugin 5.1.2 MIT https://github.com/webpack-contrib/copy-webpack-plugin.git
core-js 3.6.5 MIT https://github.com/zloirock/core-js.git
core-js 2.6.11 MIT https://github.com/zloirock/core-js.git
core-js-compat 3.6.5 MIT https://github.com/zloirock/core-js.git
core-util-is 1.0.2 MIT git://github.com/isaacs/core-util-is
cosmiconfig 5.2.1 MIT git+https://github.com/davidtheclark/cosmiconfig.git
create-ecdh 4.0.4 MIT https://github.com/crypto-browserify/createECDH.git
create-hash 1.2.0 MIT git@github.com:crypto-browserify/createHash.git
create-hmac 1.1.7 MIT https://github.com/crypto-browserify/createHmac.git
cross-env 5.2.1 MIT https://github.com/kentcdodds/cross-env.git
cross-spawn 6.0.5 MIT git@github.com:moxystudio/node-cross-spawn.git
cross-spawn 5.1.0 MIT git://github.com/IndigoUnited/node-cross-spawn.git
crypto-browserify 3.12.0 MIT git://github.com/crypto-browserify/crypto-browserify.git
css-color-names 0.0.4 MIT git://github.com/bahamas10/css-color-names.git
css-declaration-sorter 4.0.1 MIT https://github.com/Siilwyn/css-declaration-sorter.git
css-loader 2.1.0 MIT https://github.com/webpack-contrib/css-loader.git
css-select-base-adapter 0.1.1 MIT https://github.com/nrkn/css-select-base-adapter.git
css-tree 1.0.0-alpha.37 MIT https://github.com/csstree/csstree.git
css-tree 1.0.0-alpha.39 MIT https://github.com/csstree/csstree.git
cssesc 3.0.0 MIT https://github.com/mathiasbynens/cssesc.git
cssnano 4.1.10 MIT https://github.com/cssnano/cssnano.git
cssnano-preset-default 4.0.7 MIT https://github.com/cssnano/cssnano.git
cssnano-util-get-arguments 4.0.0 MIT https://github.com/cssnano/cssnano.git
cssnano-util-get-match 4.0.0 MIT https://github.com/cssnano/cssnano.git
cssnano-util-raw-cache 4.0.1 MIT https://github.com/cssnano/cssnano.git
cssnano-util-same-parent 4.0.1 MIT https://github.com/cssnano/cssnano.git
csso 4.0.3 MIT https://github.com/css/csso.git
cubic2quad 1.1.1 MIT https://github.com/fontello/cubic2quad.git
currently-unhandled 0.4.1 MIT https://github.com/jamestalmage/currently-unhandled.git
custom-event 1.0.1 MIT git://github.com/webmodules/custom-event.git
cwebp-bin 5.1.0 MIT https://github.com/imagemin/cwebp-bin.git
cyclist 1.0.1 MIT git://github.com/mafintosh/cyclist
date-format 2.1.0 MIT https://github.com/nomiddlename/date-format.git
debug 3.1.0 MIT git://github.com/visionmedia/debug.git
debug 3.2.6 MIT git://github.com/visionmedia/debug.git
debug 4.2.0 MIT git://github.com/visionmedia/debug.git
debug 2.6.9 MIT git://github.com/visionmedia/debug.git
decamelize 1.2.0 MIT https://github.com/sindresorhus/decamelize.git
decode-uri-component 0.2.0 MIT https://github.com/SamVerschueren/decode-uri-component.git
decompress 4.2.1 MIT https://github.com/kevva/decompress.git
decompress-response 3.3.0 MIT https://github.com/sindresorhus/decompress-response.git
decompress-tar 4.1.1 MIT https://github.com/kevva/decompress-tar.git
decompress-tarbz2 4.1.1 MIT https://github.com/kevva/decompress-tarbz2.git
decompress-targz 4.1.1 MIT https://github.com/kevva/decompress-targz.git
decompress-unzip 4.0.1 MIT https://github.com/kevva/decompress-unzip.git
deep-equal-ident 1.1.1 MIT http://github.com/fkling/deep-equal-ident.git
deep-is 0.1.3 MIT http://github.com/thlorenz/deep-is.git
define-properties 1.1.3 MIT git://github.com/ljharb/define-properties.git
define-property 0.2.5 MIT https://github.com/jonschlinkert/define-property.git
define-property 1.0.0 MIT https://github.com/jonschlinkert/define-property.git
define-property 2.0.2 MIT https://github.com/jonschlinkert/define-property.git
defined 1.0.0 MIT git://github.com/substack/defined.git
depd 1.1.2 MIT https://github.com/dougwilson/nodejs-depd.git
deps-sort 2.0.1 MIT git://github.com/substack/deps-sort.git
des.js 1.0.1 MIT git+ssh://git@github.com/indutny/des.js.git
destroy 1.0.4 MIT https://github.com/stream-utils/destroy.git
detect-file 1.0.0 MIT https://github.com/doowb/detect-file.git
detect-indent 4.0.0 MIT https://github.com/sindresorhus/detect-indent.git
detective 5.2.0 MIT git://github.com/browserify/detective.git
di 0.0.1 MIT git://github.com/vojtajina/node-di.git
diffie-hellman 5.0.3 MIT https://github.com/crypto-browserify/diffie-hellman.git
dir-glob 2.2.2 MIT https://github.com/kevva/dir-glob.git
discontinuous-range 1.0.0 MIT https://github.com/dtudury/discontinuous-range.git
dom-serialize 2.2.1 MIT git://github.com/webmodules/dom-serialize.git
dom-serializer 0.1.1 MIT git://github.com/cheeriojs/dom-renderer.git
domain-browser 1.2.0 MIT https://github.com/bevry/domain-browser.git
dot-prop 5.3.0 MIT https://github.com/sindresorhus/dot-prop.git
download 6.2.5 MIT https://github.com/kevva/download.git
download 7.1.0 MIT https://github.com/kevva/download.git
dropzone 5.7.2 MIT https://gitlab.com/meno/dropzone.git
duplexer 0.1.2 MIT git://github.com/Raynos/duplexer.git
duplexify 3.7.1 MIT git://github.com/mafintosh/duplexify
ee-first 1.1.1 MIT https://github.com/jonathanong/ee-first.git
elliptic 6.5.3 MIT git@github.com:indutny/elliptic
emoji-regex 7.0.3 MIT https://github.com/mathiasbynens/emoji-regex.git
emojis-list 3.0.0 MIT git+https://github.com/kikobeats/emojis-list.git
encodeurl 1.0.2 MIT https://github.com/pillarjs/encodeurl.git
end-of-stream 1.4.4 MIT git://github.com/mafintosh/end-of-stream.git
engine.io 3.2.1 MIT git@github.com:socketio/engine.io.git
engine.io-client 3.2.1 MIT https://github.com/socketio/engine.io-client.git
engine.io-parser 2.1.3 MIT git@github.com:socketio/engine.io-parser.git
enhanced-resolve 4.3.0 MIT git://github.com/webpack/enhanced-resolve.git
ent 2.2.0 MIT https://github.com/substack/node-ent.git
enzyme 3.11.0 MIT https://github.com/airbnb/enzyme.git
enzyme-adapter-react-16 1.15.5 MIT https://github.com/enzymejs/enzyme.git
enzyme-adapter-utils 1.13.1 MIT https://github.com/enzymejs/enzyme.git
enzyme-matchers 7.1.2 MIT git+https://github.com/FormidableLabs/enzyme-matchers.git
enzyme-shallow-equal 1.0.4 MIT https://github.com/enzymejs/enzyme.git
errno 0.1.7 MIT https://github.com/rvagg/node-errno.git
error-ex 1.3.2 MIT https://github.com/qix-/node-error-ex.git
es-abstract 1.17.7 MIT git://github.com/ljharb/es-abstract.git
es-abstract 1.18.0-next.1 MIT git://github.com/ljharb/es-abstract.git
es-to-primitive 1.2.1 MIT git://github.com/ljharb/es-to-primitive.git
escalade 3.1.0 MIT https://github.com/lukeed/escalade.git
escape-html 1.0.3 MIT https://github.com/component/escape-html.git
escape-string-regexp 1.0.5 MIT https://github.com/sindresorhus/escape-string-regexp.git
eslint 5.15.1 MIT https://github.com/eslint/eslint.git
eslint-plugin-react 7.21.3 MIT https://github.com/yannickcr/eslint-plugin-react
eslint-utils 1.4.3 MIT git+https://github.com/mysticatea/eslint-utils.git
etag 1.8.1 MIT https://github.com/jshttp/etag.git
eventemitter3 4.0.7 MIT git://github.com/primus/eventemitter3.git
events 2.1.0 MIT git://github.com/Gozala/events.git
events 3.2.0 MIT git://github.com/Gozala/events.git
evp_bytestokey 1.0.3 MIT https://github.com/crypto-browserify/EVP_BytesToKey.git
exec-buffer 3.2.0 MIT https://github.com/kevva/exec-buffer.git
execa 0.10.0 MIT https://github.com/sindresorhus/execa.git
execa 1.0.0 MIT https://github.com/sindresorhus/execa.git
execa 0.7.0 MIT https://github.com/sindresorhus/execa.git
executable 4.1.1 MIT https://github.com/kevva/executable.git
expand-brackets 2.1.4 MIT https://github.com/jonschlinkert/expand-brackets.git
expand-tilde 2.0.2 MIT https://github.com/jonschlinkert/expand-tilde.git
exports-loader 0.7.0 MIT https://github.com/webpack-contrib/exports-loader.git
express 4.17.1 MIT https://github.com/expressjs/express.git
ext-list 2.2.2 MIT https://github.com/kevva/ext-list.git
ext-name 5.0.0 MIT https://github.com/kevva/ext-name.git
extend 3.0.2 MIT https://github.com/justmoon/node-extend.git
extend-shallow 2.0.1 MIT https://github.com/jonschlinkert/extend-shallow.git
extend-shallow 3.0.2 MIT https://github.com/jonschlinkert/extend-shallow.git
external-editor 3.1.0 MIT git+https://github.com/mrkmg/node-external-editor.git
extglob 2.0.4 MIT https://github.com/micromatch/extglob.git
fast-deep-equal 3.1.3 MIT git+https://github.com/epoberezkin/fast-deep-equal.git
fast-deep-equal 1.1.0 MIT git+https://github.com/epoberezkin/fast-deep-equal.git
fast-json-stable-stringify 2.1.0 MIT git://github.com/epoberezkin/fast-json-stable-stringify.git
fast-levenshtein 2.0.6 MIT https://github.com/hiddentao/fast-levenshtein.git
fast-safe-stringify 2.0.7 MIT git+https://github.com/davidmarkclements/fast-safe-stringify.git
fd-slicer 1.1.0 MIT git://github.com/andrewrk/node-fd-slicer.git
figures 1.7.0 MIT https://github.com/sindresorhus/figures.git
figures 2.0.0 MIT https://github.com/sindresorhus/figures.git
file-entry-cache 5.0.1 MIT https://github.com/royriojas/file-entry-cache.git
file-loader 3.0.1 MIT https://github.com/webpack-contrib/file-loader.git
file-type 5.2.0 MIT https://github.com/sindresorhus/file-type.git
file-type 3.9.0 MIT https://github.com/sindresorhus/file-type.git
file-type 8.1.0 MIT https://github.com/sindresorhus/file-type.git
file-type 10.11.0 MIT https://github.com/sindresorhus/file-type.git
file-type 4.4.0 MIT https://github.com/sindresorhus/file-type.git
file-type 6.2.0 MIT https://github.com/sindresorhus/file-type.git
file-uri-to-path 1.0.0 MIT git://github.com/TooTallNate/file-uri-to-path.git
filename-reserved-regex 2.0.0 MIT https://github.com/sindresorhus/filename-reserved-regex.git
filenamify 2.1.0 MIT https://github.com/sindresorhus/filenamify.git
fill-range 4.0.0 MIT https://github.com/jonschlinkert/fill-range.git
fill-range 7.0.1 MIT https://github.com/jonschlinkert/fill-range.git
finalhandler 1.1.2 MIT https://github.com/pillarjs/finalhandler.git
find-cache-dir 3.3.1 MIT https://github.com/avajs/find-cache-dir.git
find-cache-dir 2.1.0 MIT https://github.com/avajs/find-cache-dir.git
find-up 3.0.0 MIT https://github.com/sindresorhus/find-up.git
find-up 1.1.2 MIT https://github.com/sindresorhus/find-up.git
find-up 4.1.0 MIT https://github.com/sindresorhus/find-up.git
find-versions 3.2.0 MIT https://github.com/sindresorhus/find-versions.git
findup-sync 3.0.0 MIT https://github.com/gulpjs/findup-sync.git
flat-cache 2.0.1 MIT https://github.com/royriojas/flat-cache.git
flush-write-stream 1.1.1 MIT https://github.com/mafintosh/flush-write-stream.git
follow-redirects 1.5.10 MIT git@github.com:follow-redirects/follow-redirects.git
for-in 1.0.2 MIT https://github.com/jonschlinkert/for-in.git
forwarded 0.1.2 MIT https://github.com/jshttp/forwarded.git
fragment-cache 0.2.1 MIT https://github.com/jonschlinkert/fragment-cache.git
fresh 0.5.2 MIT https://github.com/jshttp/fresh.git
from2 2.3.0 MIT git://github.com/hughsk/from2
fs-access 1.0.1 MIT https://github.com/sindresorhus/fs-access.git
fs-constants 1.0.0 MIT https://github.com/mafintosh/fs-constants.git
fs-extra 7.0.1 MIT https://github.com/jprichardson/node-fs-extra
fsevents 2.1.3 MIT https://github.com/fsevents/fsevents.git
fsevents 1.2.13 MIT https://github.com/strongloop/fsevents.git
function-bind 1.1.1 MIT git://github.com/Raynos/function-bind.git
function.prototype.name 1.1.2 MIT git://github.com/es-shims/Function.prototype.name.git
functional-red-black-tree 1.0.1 MIT git://github.com/mikolalysenko/functional-red-black-tree.git
functions-have-names 1.2.1 MIT git+https://github.com/ljharb/functions-have-names.git
gensync 1.0.0-beta.1 MIT Unknown
geometry-interfaces 1.1.4 MIT https://github.com/trusktr/geometry-interfaces.git
get-proxy 2.1.0 MIT https://github.com/kevva/get-proxy.git
get-stdin 4.0.1 MIT https://github.com/sindresorhus/get-stdin.git
get-stream 4.1.0 MIT https://github.com/sindresorhus/get-stream.git
get-stream 3.0.0 MIT https://github.com/sindresorhus/get-stream.git
get-stream 2.3.1 MIT https://github.com/sindresorhus/get-stream.git
get-value 2.0.6 MIT https://github.com/jonschlinkert/get-value.git
gifsicle 4.0.1 MIT https://github.com/imagemin/gifsicle-bin.git
global-modules 2.0.0 MIT https://github.com/jonschlinkert/global-modules.git
global-modules 1.0.0 MIT https://github.com/jonschlinkert/global-modules.git
global-prefix 1.0.2 MIT https://github.com/jonschlinkert/global-prefix.git
global-prefix 3.0.0 MIT https://github.com/jonschlinkert/global-prefix.git
globals 9.18.0 MIT https://github.com/sindresorhus/globals.git
globals 11.12.0 MIT https://github.com/sindresorhus/globals.git
globby 6.1.0 MIT https://github.com/sindresorhus/globby.git
globby 7.1.1 MIT https://github.com/sindresorhus/globby.git
got 7.1.0 MIT https://github.com/sindresorhus/got.git
got 8.3.2 MIT https://github.com/sindresorhus/got.git
gzip-size 5.1.1 MIT https://github.com/sindresorhus/gzip-size.git
has 1.0.3 MIT git://github.com/tarruda/has.git
has-ansi 2.0.0 MIT https://github.com/sindresorhus/has-ansi.git
has-binary2 1.0.3 MIT Unknown
has-cors 1.1.0 MIT git://github.com/component/has-cors.git
has-flag 3.0.0 MIT https://github.com/sindresorhus/has-flag.git
has-flag 4.0.0 MIT https://github.com/sindresorhus/has-flag.git
has-symbol-support-x 1.4.2 MIT https://github.com/Xotic750/has-symbol-support-x.git
has-symbols 1.0.1 MIT git://github.com/ljharb/has-symbols.git
has-to-string-tag-x 1.4.1 MIT https://github.com/Xotic750/has-to-string-tag-x.git
has-value 0.3.1 MIT https://github.com/jonschlinkert/has-value.git
has-value 1.0.0 MIT https://github.com/jonschlinkert/has-value.git
has-values 0.1.4 MIT https://github.com/jonschlinkert/has-values.git
has-values 1.0.0 MIT https://github.com/jonschlinkert/has-values.git
hash-base 3.1.0 MIT https://github.com/crypto-browserify/hash-base.git
hash.js 1.1.7 MIT git@github.com:indutny/hash.js
hat 0.0.3 MIT http://github.com/substack/node-hat.git
hex-color-regex 1.1.0 MIT https://github.com/regexps/hex-color-regex.git
hmac-drbg 1.0.1 MIT git+ssh://git@github.com/indutny/hmac-drbg.git
homedir-polyfill 1.0.3 MIT https://github.com/doowb/homedir-polyfill.git
hoopy 0.1.4 MIT git+https://gitlab.com/philbooth/hoopy.git
hsl-regex 1.0.0 MIT https://github.com/regexps/hsl-regex.git
hsla-regex 1.0.0 MIT https://github.com/regexps/hsla-regex.git
html-comment-regex 1.1.2 MIT https://github.com/stevemao/html-comment-regex.git
html-element-map 1.2.0 MIT git+https://github.com/ljharb/html-element-map.git
html-escaper 2.0.2 MIT https://github.com/WebReflection/html-escaper.git
htmlescape 1.1.1 MIT git://github.com/zertosh/htmlescape.git
htmlparser2 3.10.1 MIT git://github.com/fb55/htmlparser2.git
http-errors 1.7.2 MIT https://github.com/jshttp/http-errors.git
http-proxy 1.18.1 MIT https://github.com/http-party/node-http-proxy.git
https-browserify 1.0.0 MIT git://github.com/substack/https-browserify.git
iconfont-webpack-plugin 4.2.2 MIT https://github.com/jantimon/iconfont-webpack-plugin.git
iconv-lite 0.4.24 MIT git://github.com/ashtuchkin/iconv-lite.git
iferr 0.1.5 MIT https://github.com/shesek/iferr
ignore 4.0.6 MIT git@github.com:kaelzhang/node-ignore.git
ignore 3.3.10 MIT git@github.com:kaelzhang/node-ignore.git
image-webpack-loader 4.6.0 MIT git@github.com:tcoopman/image-webpack-loader.git
imagemin 5.3.1 MIT https://github.com/imagemin/imagemin.git
imagemin-gifsicle 6.0.1 MIT https://github.com/imagemin/imagemin-gifsicle.git
imagemin-mozjpeg 8.0.0 MIT https://github.com/imagemin/imagemin-mozjpeg.git
imagemin-optipng 6.0.0 MIT https://github.com/imagemin/imagemin-optipng.git
imagemin-pngquant 6.0.1 MIT https://github.com/imagemin/imagemin-pngquant.git
imagemin-svgo 7.1.0 MIT https://github.com/imagemin/imagemin-svgo.git
imagemin-webp 5.1.0 MIT https://github.com/imagemin/imagemin-webp.git
immutability-helper 3.1.1 MIT git+https://github.com/kolodny/immutability-helper.git
import-cwd 2.1.0 MIT https://github.com/sindresorhus/import-cwd.git
import-fresh 3.2.1 MIT https://github.com/sindresorhus/import-fresh.git
import-fresh 2.0.0 MIT https://github.com/sindresorhus/import-fresh.git
import-from 2.1.0 MIT https://github.com/sindresorhus/import-from.git
import-lazy 3.1.0 MIT https://github.com/sindresorhus/import-lazy.git
import-local 2.0.0 MIT https://github.com/sindresorhus/import-local.git
imports-loader 0.8.0 MIT https://github.com/webpack-contrib/imports-loader
imurmurhash 0.1.4 MIT https://github.com/jensyt/imurmurhash-js
indent-string 2.1.0 MIT https://github.com/sindresorhus/indent-string.git
indent-string 4.0.0 MIT https://github.com/sindresorhus/indent-string.git
indexes-of 1.0.1 MIT git://github.com/dominictarr/indexes-of.git
inline-source-map 0.6.2 MIT git://github.com/thlorenz/inline-source-map.git
inquirer 6.5.2 MIT https://github.com/SBoudrias/Inquirer.js.git
insert-module-globals 7.2.0 MIT git://github.com/browserify/insert-module-globals.git
internal-slot 1.0.2 MIT git+https://github.com/ljharb/internal-slot.git
interpret 1.4.0 MIT https://github.com/gulpjs/interpret.git
into-stream 3.1.0 MIT https://github.com/sindresorhus/into-stream.git
invariant 2.2.4 MIT https://github.com/zertosh/invariant
ip-address 5.9.4 MIT git://github.com/beaugunderson/ip-address.git
ipaddr.js 1.9.1 MIT git://github.com/whitequark/ipaddr.js
is-absolute-url 2.1.0 MIT https://github.com/sindresorhus/is-absolute-url.git
is-accessor-descriptor 0.1.6 MIT https://github.com/jonschlinkert/is-accessor-descriptor.git
is-accessor-descriptor 1.0.0 MIT https://github.com/jonschlinkert/is-accessor-descriptor.git
is-arrayish 0.2.1 MIT https://github.com/qix-/node-is-arrayish.git
is-arrayish 0.3.2 MIT https://github.com/qix-/node-is-arrayish.git
is-binary-path 2.1.0 MIT https://github.com/sindresorhus/is-binary-path.git
is-binary-path 1.0.1 MIT https://github.com/sindresorhus/is-binary-path.git
is-boolean-object 1.0.1 MIT git://github.com/ljharb/is-boolean-object.git
is-buffer 2.0.4 MIT git://github.com/feross/is-buffer.git
is-buffer 1.1.6 MIT git://github.com/feross/is-buffer.git
is-callable 1.2.2 MIT git://github.com/ljharb/is-callable.git
is-color-stop 1.1.0 MIT git+https://github.com/pigcan/is-color-stop.git
is-data-descriptor 0.1.4 MIT https://github.com/jonschlinkert/is-data-descriptor.git
is-data-descriptor 1.0.0 MIT https://github.com/jonschlinkert/is-data-descriptor.git
is-date-object 1.0.2 MIT git://github.com/ljharb/is-date-object.git
is-descriptor 0.1.6 MIT https://github.com/jonschlinkert/is-descriptor.git
is-descriptor 1.0.2 MIT https://github.com/jonschlinkert/is-descriptor.git
is-directory 0.3.1 MIT https://github.com/jonschlinkert/is-directory.git
is-docker 1.1.0 MIT https://github.com/sindresorhus/is-docker.git
is-extendable 0.1.1 MIT https://github.com/jonschlinkert/is-extendable.git
is-extendable 1.0.1 MIT https://github.com/jonschlinkert/is-extendable.git
is-extglob 2.1.1 MIT https://github.com/jonschlinkert/is-extglob.git
is-finite 1.1.0 MIT https://github.com/sindresorhus/is-finite.git
is-fullwidth-code-point 2.0.0 MIT https://github.com/sindresorhus/is-fullwidth-code-point.git
is-gif 3.0.0 MIT https://github.com/sindresorhus/is-gif.git
is-glob 4.0.1 MIT https://github.com/micromatch/is-glob.git
is-glob 3.1.0 MIT https://github.com/jonschlinkert/is-glob.git
is-jpg 2.0.0 MIT https://github.com/sindresorhus/is-jpg.git
is-natural-number 4.0.1 MIT https://github.com/shinnn/is-natural-number.js.git
is-negative-zero 2.0.0 MIT git://github.com/ljharb/is-negative-zero.git
is-number 7.0.0 MIT https://github.com/jonschlinkert/is-number.git
is-number 3.0.0 MIT https://github.com/jonschlinkert/is-number.git
is-number-object 1.0.4 MIT git://github.com/inspect-js/is-number-object.git
is-obj 2.0.0 MIT https://github.com/sindresorhus/is-obj.git
is-object 1.0.1 MIT git://github.com/ljharb/is-object.git
is-plain-obj 1.1.0 MIT https://github.com/sindresorhus/is-plain-obj.git
is-plain-object 2.0.4 MIT https://github.com/jonschlinkert/is-plain-object.git
is-png 1.1.0 MIT https://github.com/sindresorhus/is-png.git
is-regex 1.1.1 MIT git://github.com/ljharb/is-regex.git
is-retry-allowed 1.2.0 MIT https://github.com/floatdrop/is-retry-allowed.git
is-stream 1.1.0 MIT https://github.com/sindresorhus/is-stream.git
is-string 1.0.5 MIT git://github.com/ljharb/is-string.git
is-subset 0.1.1 MIT git@github.com:studio-b12/is-subset.git
is-svg 3.0.0 MIT https://github.com/sindresorhus/is-svg.git
is-svg 4.2.1 MIT https://github.com/sindresorhus/is-svg.git
is-symbol 1.0.3 MIT git://github.com/inspect-js/is-symbol.git
is-utf8 0.2.1 MIT https://github.com/wayfind/is-utf8.git
is-windows 1.0.2 MIT https://github.com/jonschlinkert/is-windows.git
is-wsl 1.1.0 MIT https://github.com/sindresorhus/is-wsl.git
isarray 1.0.0 MIT git://github.com/juliangruber/isarray.git
isarray 2.0.1 MIT git://github.com/juliangruber/isarray.git
isarray 0.0.1 MIT git://github.com/juliangruber/isarray.git
isbinaryfile 3.0.3 MIT https://github.com/gjtorikian/isBinaryFile
isobject 3.0.1 MIT https://github.com/jonschlinkert/isobject.git
isobject 2.1.0 MIT https://github.com/jonschlinkert/isobject.git
istanbul-instrumenter-loader 3.0.1 MIT https://github.com/webpack-contrib/istanbul-instrumenter-loader.git
isurl 1.0.0 MIT https://github.com/stevenvachon/isurl.git
jasmine-core 3.3.0 MIT https://github.com/jasmine/jasmine.git
jasmine-enzyme 7.1.2 MIT https://github.com/FormidableLabs/enzyme-matchers.git
jest-worker 25.5.0 MIT https://github.com/facebook/jest.git
jquery 3.5.1 MIT https://github.com/jquery/jquery.git
jquery-contextmenu 2.9.2 MIT git://github.com/swisnl/jQuery-contextMenu.git
jquery-ui 1.12.1 MIT git://github.com/jquery/jquery-ui.git
js-levenshtein 1.1.6 MIT https://github.com/gustf/js-levenshtein.git
js-string-escape 1.0.1 MIT https://github.com/joliss/js-string-escape
js-tokens 3.0.2 MIT https://github.com/lydell/js-tokens.git
js-tokens 4.0.0 MIT https://github.com/lydell/js-tokens.git
js-yaml 3.14.0 MIT https://github.com/nodeca/js-yaml.git
jsbn 1.1.0 MIT https://github.com/andyperlitch/jsbn.git
jsesc 0.5.0 MIT https://github.com/mathiasbynens/jsesc.git
jsesc 2.5.2 MIT https://github.com/mathiasbynens/jsesc.git
jsesc 1.3.0 MIT https://github.com/mathiasbynens/jsesc.git
json-bignumber 1.0.2 MIT git@github.com:wbuss/JSONBigNumber.git
json-buffer 3.0.0 MIT git://github.com/dominictarr/json-buffer.git
json-parse-better-errors 1.0.2 MIT https://github.com/zkat/json-parse-better-errors
json-schema-traverse 0.4.1 MIT git+https://github.com/epoberezkin/json-schema-traverse.git
json-schema-traverse 0.3.1 MIT git+https://github.com/epoberezkin/json-schema-traverse.git
json-stable-stringify 0.0.1 MIT git://github.com/substack/json-stable-stringify.git
json-stable-stringify-without-jsonify 1.0.1 MIT git://github.com/samn/json-stable-stringify.git
json5 1.0.1 MIT git+https://github.com/json5/json5.git
json5 2.1.3 MIT git+https://github.com/json5/json5.git
jsonfile 4.0.0 MIT git@github.com:jprichardson/node-jsonfile.git
jsonparse 1.3.1 MIT http://github.com/creationix/jsonparse.git
jsx-ast-utils 2.4.1 MIT https://github.com/evcohen/jsx-ast-utils
karma 4.4.1 MIT git://github.com/karma-runner/karma.git
karma-browserify 6.0.0 MIT git@github.com:nikku/karma-browserify.git
karma-chrome-launcher 2.2.0 MIT git://github.com/karma-runner/karma-chrome-launcher.git
karma-coverage 2.0.3 MIT git://github.com/karma-runner/karma-coverage.git
karma-jasmine 2.0.1 MIT git://github.com/karma-runner/karma-jasmine.git
karma-jasmine-html-reporter 1.5.4 MIT https://github.com/dfederm/karma-jasmine-html-reporter
karma-requirejs 1.1.0 MIT git://github.com/karma-runner/karma-requirejs.git
karma-source-map-support 1.4.0 MIT git://github.com/tschaub/karma-source-map-support.git
karma-sourcemap-loader 0.3.8 MIT git@github.com:demerzel3/karma-sourcemap-loader.git
karma-webpack 4.0.2 MIT https://github.com/webpack-contrib/karma-webpack.git
keyv 3.0.0 MIT git+https://github.com/lukechilds/keyv.git
kind-of 5.1.0 MIT https://github.com/jonschlinkert/kind-of.git
kind-of 3.2.2 MIT https://github.com/jonschlinkert/kind-of.git
kind-of 6.0.3 MIT https://github.com/jonschlinkert/kind-of.git
kind-of 4.0.0 MIT https://github.com/jonschlinkert/kind-of.git
labeled-stream-splicer 2.0.2 MIT git://github.com/browserify/labeled-stream-splicer.git
last-call-webpack-plugin 3.0.0 MIT http://github.com/NMFR/last-call-webpack-plugin.git
levn 0.3.0 MIT git://github.com/gkz/levn.git
load-json-file 1.1.0 MIT https://github.com/sindresorhus/load-json-file.git
loader-runner 2.4.0 MIT git+https://github.com/webpack/loader-runner.git
loader-utils 2.0.0 MIT https://github.com/webpack/loader-utils.git
loader-utils 1.4.0 MIT https://github.com/webpack/loader-utils.git
locate-path 5.0.0 MIT https://github.com/sindresorhus/locate-path.git
locate-path 3.0.0 MIT https://github.com/sindresorhus/locate-path.git
lodash 4.17.20 MIT https://github.com/lodash/lodash.git
lodash._baseisequal 3.0.7 MIT https://github.com/lodash/lodash.git
lodash._bindcallback 3.0.1 MIT https://github.com/lodash/lodash.git
lodash._getnative 3.9.1 MIT https://github.com/lodash/lodash.git
lodash.escape 4.0.1 MIT https://github.com/lodash/lodash.git
lodash.flattendeep 4.4.0 MIT https://github.com/lodash/lodash.git
lodash.isarguments 3.1.0 MIT https://github.com/lodash/lodash.git
lodash.isarray 3.0.4 MIT https://github.com/lodash/lodash.git
lodash.isequal 3.0.4 MIT https://github.com/lodash/lodash.git
lodash.isequal 4.5.0 MIT https://github.com/lodash/lodash.git
lodash.istypedarray 3.0.6 MIT https://github.com/lodash/lodash.git
lodash.keys 3.1.2 MIT https://github.com/lodash/lodash.git
lodash.memoize 4.1.2 MIT https://github.com/lodash/lodash.git
lodash.memoize 3.0.4 MIT https://github.com/lodash/lodash.git
lodash.uniq 4.5.0 MIT https://github.com/lodash/lodash.git
logalot 2.1.0 MIT https://github.com/imagemin/logalot.git
longest 1.0.1 MIT https://github.com/jonschlinkert/longest.git
loose-envify 1.4.0 MIT git://github.com/zertosh/loose-envify.git
loud-rejection 1.6.0 MIT https://github.com/sindresorhus/loud-rejection.git
lowercase-keys 1.0.1 MIT https://github.com/sindresorhus/lowercase-keys.git
lowercase-keys 1.0.0 MIT https://github.com/sindresorhus/lowercase-keys.git
lpad-align 1.1.2 MIT https://github.com/kevva/lpad-align.git
lunr 0.7.2 MIT https://github.com/olivernn/lunr.js.git
make-dir 3.1.0 MIT https://github.com/sindresorhus/make-dir.git
make-dir 1.3.0 MIT https://github.com/sindresorhus/make-dir.git
make-dir 2.1.0 MIT https://github.com/sindresorhus/make-dir.git
map-cache 0.2.2 MIT https://github.com/jonschlinkert/map-cache.git
map-obj 1.0.1 MIT https://github.com/sindresorhus/map-obj.git
map-visit 1.0.0 MIT https://github.com/jonschlinkert/map-visit.git
marked 1.2.0 MIT git://github.com/markedjs/marked.git
md5.js 1.3.5 MIT https://github.com/crypto-browserify/md5.js.git
media-typer 0.3.0 MIT https://github.com/jshttp/media-typer.git
memory-fs 0.5.0 MIT https://github.com/webpack/memory-fs.git
memory-fs 0.4.1 MIT https://github.com/webpack/memory-fs.git
meow 3.7.0 MIT https://github.com/sindresorhus/meow.git
merge-descriptors 1.0.1 MIT https://github.com/component/merge-descriptors.git
merge-stream 2.0.0 MIT https://github.com/grncdr/merge-stream.git
methods 1.1.2 MIT https://github.com/jshttp/methods.git
microbuffer 1.0.0 MIT https://github.com/fontello/microbuffer.git
micromatch 3.1.10 MIT https://github.com/micromatch/micromatch.git
miller-rabin 4.0.1 MIT git@github.com:indutny/miller-rabin
mime 2.4.6 MIT https://github.com/broofa/mime
mime 1.6.0 MIT https://github.com/broofa/node-mime
mime-db 1.45.0 MIT https://github.com/jshttp/mime-db.git
mime-db 1.44.0 MIT https://github.com/jshttp/mime-db.git
mime-types 2.1.27 MIT https://github.com/jshttp/mime-types.git
mimic-fn 1.2.0 MIT https://github.com/sindresorhus/mimic-fn.git
mimic-response 1.0.1 MIT https://github.com/sindresorhus/mimic-response.git
mini-css-extract-plugin 0.5.0 MIT https://github.com/webpack-contrib/mini-css-extract-plugin.git
minimalistic-crypto-utils 1.0.1 MIT git+ssh://git@github.com/indutny/minimalistic-crypto-utils.git
minimist 0.0.10 MIT git://github.com/substack/minimist.git
minimist 1.2.5 MIT git://github.com/substack/minimist.git
mixin-deep 1.3.2 MIT https://github.com/jonschlinkert/mixin-deep.git
mkdirp 0.5.5 MIT https://github.com/substack/node-mkdirp.git
module-deps 6.2.3 MIT git://github.com/browserify/module-deps.git
moment 2.29.1 MIT https://github.com/moment/moment.git
moment-timezone 0.5.31 MIT https://github.com/moment/moment-timezone.git
moment-timezone 0.4.1 MIT https://github.com/moment/moment-timezone.git
mozjpeg 6.0.1 MIT https://github.com/imagemin/mozjpeg-bin.git
ms 2.1.1 MIT https://github.com/zeit/ms.git
ms 2.0.0 MIT https://github.com/zeit/ms.git
ms 2.1.2 MIT https://github.com/zeit/ms.git
nan 2.14.1 MIT git://github.com/nodejs/nan.git
nanomatch 1.2.13 MIT https://github.com/micromatch/nanomatch.git
nanopop 2.1.0 MIT https://github.com/Simonwep/nanopop.git
natural-compare 1.4.0 MIT git://github.com/litejs/natural-compare-lite.git
nearley 2.19.7 MIT https://github.com/hardmath123/nearley.git
neatequal 1.0.0 MIT git@github.com:nfroidure/neatequal.git
negotiator 0.6.2 MIT https://github.com/jshttp/negotiator.git
neo-async 2.6.2 MIT git@github.com:suguru03/neo-async.git
nice-try 1.0.5 MIT https://github.com/electerious/nice-try.git
node-libs-browser 2.2.1 MIT git+https://github.com/webpack/node-libs-browser.git
node-releases 1.1.61 MIT git+https://github.com/chicoxyzzy/node-releases.git
normalize-path 3.0.0 MIT https://github.com/jonschlinkert/normalize-path.git
normalize-path 2.1.1 MIT https://github.com/jonschlinkert/normalize-path.git
normalize-range 0.1.2 MIT https://github.com/jamestalmage/normalize-range.git
normalize-url 3.3.0 MIT https://github.com/sindresorhus/normalize-url.git
normalize-url 2.0.1 MIT https://github.com/sindresorhus/normalize-url.git
npm-conf 1.1.3 MIT https://github.com/kevva/npm-conf.git
npm-run-path 2.0.2 MIT https://github.com/sindresorhus/npm-run-path.git
null-check 1.0.0 MIT https://github.com/sindresorhus/null-check.git
num2fraction 1.2.2 MIT git@github.com:yisibl/num2fraction.git
object-assign 4.1.1 MIT https://github.com/sindresorhus/object-assign.git
object-copy 0.1.0 MIT https://github.com/jonschlinkert/object-copy.git
object-inspect 1.8.0 MIT git://github.com/inspect-js/object-inspect.git
object-is 1.1.3 MIT git://github.com/es-shims/object-is.git
object-keys 1.1.1 MIT git://github.com/ljharb/object-keys.git
object-visit 1.0.1 MIT https://github.com/jonschlinkert/object-visit.git
object.assign 4.1.1 MIT git://github.com/ljharb/object.assign.git
object.entries 1.1.2 MIT git://github.com/es-shims/Object.entries.git
object.fromentries 2.0.2 MIT git://github.com/es-shims/Object.fromEntries.git
object.getownpropertydescriptors 2.1.0 MIT git://github.com/es-shims/object.getownpropertydescriptors.git
object.pick 1.3.0 MIT https://github.com/jonschlinkert/object.pick.git
object.values 1.1.1 MIT git://github.com/es-shims/Object.values.git
on-finished 2.3.0 MIT https://github.com/jshttp/on-finished.git
onetime 2.0.1 MIT https://github.com/sindresorhus/onetime.git
optimist 0.6.1 MIT http://github.com/substack/node-optimist.git
optimize-css-assets-webpack-plugin 5.0.4 MIT http://github.com/NMFR/optimize-css-assets-webpack-plugin.git
optionator 0.8.3 MIT git://github.com/gkz/optionator.git
optipng-bin 5.1.0 MIT https://github.com/imagemin/optipng-bin.git
os-browserify 0.3.0 MIT http://github.com/CoderPuppy/os-browserify.git
os-filter-obj 2.0.0 MIT https://github.com/kevva/os-filter-obj.git
os-shim 0.1.3 MIT https://github.com/h2non/node-os-shim.git
os-tmpdir 1.0.2 MIT https://github.com/sindresorhus/os-tmpdir.git
outpipe 1.1.1 MIT git://github.com/substack/outpipe.git
p-cancelable 0.4.1 MIT https://github.com/sindresorhus/p-cancelable.git
p-cancelable 0.3.0 MIT https://github.com/sindresorhus/p-cancelable.git
p-event 2.3.1 MIT https://github.com/sindresorhus/p-event.git
p-event 1.3.0 MIT https://github.com/sindresorhus/p-event.git
p-finally 1.0.0 MIT https://github.com/sindresorhus/p-finally.git
p-is-promise 1.1.0 MIT https://github.com/sindresorhus/p-is-promise.git
p-limit 2.3.0 MIT https://github.com/sindresorhus/p-limit.git
p-locate 4.1.0 MIT https://github.com/sindresorhus/p-locate.git
p-locate 3.0.0 MIT https://github.com/sindresorhus/p-locate.git
p-map 3.0.0 MIT https://github.com/sindresorhus/p-map.git
p-map-series 1.0.0 MIT https://github.com/sindresorhus/p-map-series.git
p-pipe 1.2.0 MIT https://github.com/sindresorhus/p-pipe.git
p-reduce 1.0.0 MIT https://github.com/sindresorhus/p-reduce.git
p-timeout 2.0.1 MIT https://github.com/sindresorhus/p-timeout.git
p-timeout 1.2.1 MIT https://github.com/sindresorhus/p-timeout.git
p-try 2.2.0 MIT https://github.com/sindresorhus/p-try.git
parallel-transform 1.2.0 MIT git://github.com/mafintosh/parallel-transform
parent-module 1.0.1 MIT https://github.com/sindresorhus/parent-module.git
parents 1.0.1 MIT git://github.com/substack/node-parents.git
parse-json 4.0.0 MIT https://github.com/sindresorhus/parse-json.git
parse-json 2.2.0 MIT https://github.com/sindresorhus/parse-json.git
parse-passwd 1.0.0 MIT https://github.com/doowb/parse-passwd.git
parse5 3.0.3 MIT git://github.com/inikulin/parse5.git
parseqs 0.0.5 MIT https://github.com/get/querystring.git
parseuri 0.0.5 MIT https://github.com/get/parseuri.git
parseurl 1.3.3 MIT https://github.com/pillarjs/parseurl.git
pascalcase 0.1.1 MIT https://github.com/jonschlinkert/pascalcase.git
path-browserify 0.0.1 MIT git://github.com/substack/path-browserify.git
path-dirname 1.0.2 MIT https://github.com/es128/path-dirname.git
path-exists 3.0.0 MIT https://github.com/sindresorhus/path-exists.git
path-exists 4.0.0 MIT https://github.com/sindresorhus/path-exists.git
path-exists 2.1.0 MIT https://github.com/sindresorhus/path-exists.git
path-is-absolute 1.0.1 MIT https://github.com/sindresorhus/path-is-absolute.git
path-key 2.0.1 MIT https://github.com/sindresorhus/path-key.git
path-parse 1.0.6 MIT https://github.com/jbgutierrez/path-parse.git
path-platform 0.11.15 MIT http://github.com/tjfontaine/node-path-platform.git
path-to-regexp 0.1.7 MIT https://github.com/component/path-to-regexp.git
path-type 1.1.0 MIT https://github.com/sindresorhus/path-type.git
path-type 3.0.0 MIT https://github.com/sindresorhus/path-type.git
pbkdf2 3.1.1 MIT https://github.com/crypto-browserify/pbkdf2.git
pend 1.2.0 MIT git://github.com/andrewrk/node-pend.git
performance-now 2.1.0 MIT git://github.com/braveg1rl/performance-now.git
picomatch 2.2.2 MIT https://github.com/micromatch/picomatch.git
pify 2.3.0 MIT https://github.com/sindresorhus/pify.git
pify 4.0.1 MIT https://github.com/sindresorhus/pify.git
pify 3.0.0 MIT https://github.com/sindresorhus/pify.git
pinkie 2.0.4 MIT https://github.com/floatdrop/pinkie.git
pinkie-promise 2.0.1 MIT https://github.com/floatdrop/pinkie-promise.git
pkg-dir 4.2.0 MIT https://github.com/sindresorhus/pkg-dir.git
pkg-dir 3.0.0 MIT https://github.com/sindresorhus/pkg-dir.git
pngquant-bin 5.0.2 MIT https://github.com/imagemin/pngquant-bin.git
popper.js 1.16.1 MIT git+https://github.com/FezVrasta/popper.js.git
posix-character-classes 0.1.1 MIT https://github.com/jonschlinkert/posix-character-classes.git
postcss 7.0.35 MIT https://github.com/postcss/postcss.git
postcss 7.0.27 MIT https://github.com/postcss/postcss.git
postcss-calc 7.0.5 MIT https://github.com/postcss/postcss-calc.git
postcss-colormin 4.0.3 MIT https://github.com/cssnano/cssnano.git
postcss-convert-values 4.0.1 MIT https://github.com/cssnano/cssnano.git
postcss-discard-comments 4.0.2 MIT https://github.com/cssnano/cssnano.git
postcss-discard-duplicates 4.0.2 MIT https://github.com/cssnano/cssnano.git
postcss-discard-empty 4.0.1 MIT https://github.com/cssnano/cssnano.git
postcss-discard-overridden 4.0.1 MIT https://github.com/cssnano/cssnano.git
postcss-load-config 2.1.2 MIT https://github.com/postcss/postcss-load-config.git
postcss-loader 3.0.0 MIT https://github.com/postcss/postcss-loader.git
postcss-merge-longhand 4.0.11 MIT https://github.com/cssnano/cssnano.git
postcss-merge-rules 4.0.3 MIT https://github.com/cssnano/cssnano.git
postcss-minify-font-values 4.0.2 MIT https://github.com/cssnano/cssnano.git
postcss-minify-gradients 4.0.2 MIT https://github.com/cssnano/cssnano.git
postcss-minify-params 4.0.2 MIT https://github.com/cssnano/cssnano.git
postcss-minify-selectors 4.0.2 MIT https://github.com/cssnano/cssnano.git
postcss-modules-local-by-default 2.0.6 MIT https://github.com/css-modules/postcss-modules-local-by-default.git
postcss-normalize-charset 4.0.1 MIT https://github.com/cssnano/cssnano.git
postcss-normalize-display-values 4.0.2 MIT https://github.com/cssnano/cssnano.git
postcss-normalize-positions 4.0.2 MIT https://github.com/cssnano/cssnano.git
postcss-normalize-repeat-style 4.0.2 MIT https://github.com/cssnano/cssnano.git
postcss-normalize-string 4.0.2 MIT https://github.com/cssnano/cssnano.git
postcss-normalize-timing-functions 4.0.2 MIT https://github.com/cssnano/cssnano.git
postcss-normalize-unicode 4.0.1 MIT https://github.com/cssnano/cssnano.git
postcss-normalize-url 4.0.1 MIT https://github.com/cssnano/cssnano.git
postcss-normalize-whitespace 4.0.2 MIT https://github.com/cssnano/cssnano.git
postcss-ordered-values 4.1.2 MIT https://github.com/cssnano/cssnano.git
postcss-reduce-initial 4.0.3 MIT https://github.com/cssnano/cssnano.git
postcss-reduce-transforms 4.0.2 MIT https://github.com/cssnano/cssnano.git
postcss-selector-parser 6.0.4 MIT https://github.com/postcss/postcss-selector-parser.git
postcss-selector-parser 3.1.2 MIT https://github.com/postcss/postcss-selector-parser.git
postcss-svgo 4.0.2 MIT https://github.com/cssnano/cssnano.git
postcss-unique-selectors 4.0.1 MIT https://github.com/cssnano/cssnano.git
postcss-value-parser 4.1.0 MIT https://github.com/TrySound/postcss-value-parser.git
postcss-value-parser 3.3.1 MIT https://github.com/TrySound/postcss-value-parser.git
prelude-ls 1.1.2 MIT git://github.com/gkz/prelude-ls.git
prepend-http 1.0.4 MIT https://github.com/sindresorhus/prepend-http.git
prepend-http 2.0.0 MIT https://github.com/sindresorhus/prepend-http.git
private 0.1.8 MIT git://github.com/benjamn/private.git
process 0.11.10 MIT git://github.com/shtylman/node-process.git
process-nextick-args 2.0.1 MIT https://github.com/calvinmetcalf/process-nextick-args.git
progress 2.0.3 MIT git://github.com/visionmedia/node-progress
prop-types 15.7.2 MIT https://github.com/facebook/prop-types.git
prop-types-exact 1.2.0 MIT git+https://github.com/airbnb/prop-types-exact.git
proxy-addr 2.0.6 MIT https://github.com/jshttp/proxy-addr.git
prr 1.0.1 MIT https://github.com/rvagg/prr.git
public-encrypt 4.0.3 MIT https://github.com/crypto-browserify/publicEncrypt.git
pump 3.0.0 MIT git://github.com/mafintosh/pump.git
pump 2.0.1 MIT git://github.com/mafintosh/pump.git
pumpify 1.5.1 MIT git://github.com/mafintosh/pumpify
punycode 1.3.2 MIT https://github.com/bestiejs/punycode.js.git
punycode 1.4.1 MIT https://github.com/bestiejs/punycode.js.git
punycode 2.1.1 MIT https://github.com/bestiejs/punycode.js.git
q 1.5.1 MIT git://github.com/kriskowal/q.git
qjobs 1.2.0 MIT git://github.com/franck34/qjobs.git
query-string 5.1.1 MIT https://github.com/sindresorhus/query-string.git
querystring 0.2.0 MIT git://github.com/Gozala/querystring.git
querystring-es3 0.2.1 MIT git://github.com/mike-spainhower/querystring.git
raf 3.4.1 MIT git://github.com/chrisdickinson/raf.git
randexp 0.4.6 MIT git://github.com/fent/randexp.js.git
randombytes 2.1.0 MIT git@github.com:crypto-browserify/randombytes.git
randomfill 1.0.4 MIT https://github.com/crypto-browserify/randomfill.git
range-parser 1.2.1 MIT https://github.com/jshttp/range-parser.git
raw-body 2.4.0 MIT https://github.com/stream-utils/raw-body.git
raw-loader 1.0.0 MIT https://github.com/webpack-contrib/raw-loader.git
react 16.13.1 MIT https://github.com/facebook/react.git
react-dom 16.13.1 MIT https://github.com/facebook/react.git
react-is 16.13.1 MIT https://github.com/facebook/react.git
react-test-renderer 16.13.1 MIT https://github.com/facebook/react.git
read-only-stream 2.0.0 MIT git://github.com/substack/read-only-stream.git
read-pkg 1.1.0 MIT https://github.com/sindresorhus/read-pkg.git
read-pkg-up 1.0.1 MIT https://github.com/sindresorhus/read-pkg-up.git
readable-stream 1.1.14 MIT git://github.com/isaacs/readable-stream
readable-stream 3.6.0 MIT git://github.com/nodejs/readable-stream
readable-stream 2.3.7 MIT git://github.com/nodejs/readable-stream
readdirp 2.2.1 MIT git://github.com/paulmillr/readdirp.git
readdirp 3.4.0 MIT git://github.com/paulmillr/readdirp.git
redent 1.0.0 MIT https://github.com/sindresorhus/redent.git
reflect.ownkeys 0.2.0 MIT https://github.com/glenjamin/Reflect.ownKeys.git
regenerate 1.4.1 MIT https://github.com/mathiasbynens/regenerate.git
regenerate-unicode-properties 8.2.0 MIT https://github.com/mathiasbynens/regenerate-unicode-properties.git
regenerator-runtime 0.13.7 MIT https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime
regenerator-runtime 0.11.1 MIT https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime
regenerator-transform 0.14.5 MIT https://github.com/facebook/regenerator/tree/master/packages/regenerator-transform
regex-not 1.0.2 MIT https://github.com/jonschlinkert/regex-not.git
regexp.prototype.flags 1.3.0 MIT git://github.com/es-shims/RegExp.prototype.flags.git
regexpp 2.0.1 MIT git+https://github.com/mysticatea/regexpp.git
regexpu-core 4.7.1 MIT https://github.com/mathiasbynens/regexpu-core.git
regexpu-core 2.0.0 MIT https://github.com/mathiasbynens/regexpu-core.git
regjsgen 0.2.0 MIT https://github.com/d10/regjsgen.git
regjsgen 0.5.2 MIT https://github.com/bnjmnt4n/regjsgen.git
repeat-element 1.1.3 MIT https://github.com/jonschlinkert/repeat-element.git
repeat-string 1.6.1 MIT https://github.com/jonschlinkert/repeat-string.git
repeating 2.0.1 MIT https://github.com/sindresorhus/repeating.git
replace-ext 1.0.1 MIT https://github.com/gulpjs/replace-ext.git