-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLICENSE
8039 lines (8036 loc) · 416 KB
/
LICENSE
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
Copyright (c) 2018-present, Christian Stewart All Rights Reserved
Here is a list of the packages that I used, their dependencies, and the path to their associated licenses:
├─ @babel/code-frame@7.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-code-frame
│ ├─ publisher: Sebastian McKenzie
│ ├─ email: sebmck@gmail.com
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/code-frame
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/code-frame/LICENSE
├─ @babel/core@7.5.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-core
│ ├─ publisher: Sebastian McKenzie
│ ├─ email: sebmck@gmail.com
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/core
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/core/LICENSE
├─ @babel/generator@7.5.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-generator
│ ├─ publisher: Sebastian McKenzie
│ ├─ email: sebmck@gmail.com
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/generator
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/generator/LICENSE
├─ @babel/helper-annotate-as-pure@7.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-annotate-as-pure
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/helper-annotate-as-pure
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/helper-annotate-as-pure/LICENSE
├─ @babel/helper-builder-binary-assignment-operator-visitor@7.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-builder-binary-assignment-operator-visitor
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/helper-builder-binary-assignment-operator-visitor
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/LICENSE
├─ @babel/helper-call-delegate@7.4.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-call-delegate
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/helper-call-delegate
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/helper-call-delegate/LICENSE
├─ @babel/helper-create-class-features-plugin@7.5.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-create-class-features-plugin
│ ├─ publisher: The Babel Team
│ ├─ url: https://babeljs.io/team
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/helper-create-class-features-plugin
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/helper-create-class-features-plugin/LICENSE
├─ @babel/helper-define-map@7.4.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-define-map
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/helper-define-map
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/helper-define-map/LICENSE
├─ @babel/helper-explode-assignable-expression@7.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-explode-assignable-expression
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/helper-explode-assignable-expression
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/helper-explode-assignable-expression/LICENSE
├─ @babel/helper-function-name@7.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-function-name
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/helper-function-name
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/helper-function-name/LICENSE
├─ @babel/helper-get-function-arity@7.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/helper-get-function-arity
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/helper-get-function-arity/LICENSE
├─ @babel/helper-hoist-variables@7.4.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-hoist-variables
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/helper-hoist-variables
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/helper-hoist-variables/LICENSE
├─ @babel/helper-member-expression-to-functions@7.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-member-expression-to-functions
│ ├─ publisher: Justin Ridgewell
│ ├─ email: justin@ridgewell.name
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/helper-member-expression-to-functions
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/helper-member-expression-to-functions/LICENSE
├─ @babel/helper-module-imports@7.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-module-imports
│ ├─ publisher: Logan Smyth
│ ├─ email: loganfsmyth@gmail.com
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/helper-module-imports
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/helper-module-imports/LICENSE
├─ @babel/helper-module-transforms@7.4.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-module-transforms
│ ├─ publisher: Logan Smyth
│ ├─ email: loganfsmyth@gmail.com
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/helper-module-transforms
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/helper-module-transforms/LICENSE
├─ @babel/helper-optimise-call-expression@7.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-optimise-call-expression
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/helper-optimise-call-expression
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/helper-optimise-call-expression/LICENSE
├─ @babel/helper-plugin-utils@7.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-plugin-utils
│ ├─ publisher: Logan Smyth
│ ├─ email: loganfsmyth@gmail.com
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/helper-plugin-utils
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/helper-plugin-utils/LICENSE
├─ @babel/helper-regex@7.4.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-regex
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/helper-regex
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/helper-regex/LICENSE
├─ @babel/helper-remap-async-to-generator@7.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-remap-async-to-generator
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/helper-remap-async-to-generator
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/helper-remap-async-to-generator/LICENSE
├─ @babel/helper-replace-supers@7.4.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-replace-supers
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/helper-replace-supers
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/helper-replace-supers/LICENSE
├─ @babel/helper-simple-access@7.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-simple-access
│ ├─ publisher: Logan Smyth
│ ├─ email: loganfsmyth@gmail.com
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/helper-simple-access
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/helper-simple-access/LICENSE
├─ @babel/helper-split-export-declaration@7.4.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/helper-split-export-declaration
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/helper-split-export-declaration/LICENSE
├─ @babel/helper-wrap-function@7.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-wrap-function
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/helper-wrap-function
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/helper-wrap-function/LICENSE
├─ @babel/helpers@7.5.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helpers
│ ├─ publisher: Sebastian McKenzie
│ ├─ email: sebmck@gmail.com
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/helpers
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/helpers/LICENSE
├─ @babel/highlight@7.5.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-highlight
│ ├─ publisher: suchipi
│ ├─ email: me@suchipi.com
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/highlight
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/highlight/LICENSE
├─ @babel/parser@7.5.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-parser
│ ├─ publisher: Sebastian McKenzie
│ ├─ email: sebmck@gmail.com
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/parser
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/parser/LICENSE
├─ @babel/plugin-proposal-async-generator-functions@7.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-async-generator-functions
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-proposal-async-generator-functions
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-proposal-async-generator-functions/LICENSE
├─ @babel/plugin-proposal-class-properties@7.5.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-class-properties
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-proposal-class-properties
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-proposal-class-properties/LICENSE
├─ @babel/plugin-proposal-decorators@7.4.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-decorators
│ ├─ publisher: Logan Smyth
│ ├─ email: loganfsmyth@gmail.com
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-proposal-decorators
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-proposal-decorators/LICENSE
├─ @babel/plugin-proposal-json-strings@7.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-json-strings
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-proposal-json-strings
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-proposal-json-strings/LICENSE
├─ @babel/plugin-proposal-object-rest-spread@7.5.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-object-rest-spread
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-proposal-object-rest-spread
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-proposal-object-rest-spread/LICENSE
├─ @babel/plugin-proposal-optional-catch-binding@7.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-optional-catch-binding
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-proposal-optional-catch-binding
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-proposal-optional-catch-binding/LICENSE
├─ @babel/plugin-proposal-unicode-property-regex@7.4.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-unicode-property-regex
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-proposal-unicode-property-regex
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-proposal-unicode-property-regex/LICENSE
├─ @babel/plugin-syntax-async-generators@7.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-syntax-async-generators
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-syntax-async-generators/LICENSE
├─ @babel/plugin-syntax-decorators@7.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-decorators
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-syntax-decorators
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-syntax-decorators/LICENSE
├─ @babel/plugin-syntax-dynamic-import@7.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-dynamic-import
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-syntax-dynamic-import
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-syntax-dynamic-import/LICENSE
├─ @babel/plugin-syntax-json-strings@7.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-json-strings
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-syntax-json-strings
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-syntax-json-strings/LICENSE
├─ @babel/plugin-syntax-jsx@7.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-jsx
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-syntax-jsx
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-syntax-jsx/LICENSE
├─ @babel/plugin-syntax-object-rest-spread@7.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-syntax-object-rest-spread
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-syntax-object-rest-spread/LICENSE
├─ @babel/plugin-syntax-optional-catch-binding@7.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-catch-binding
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-syntax-optional-catch-binding
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-syntax-optional-catch-binding/LICENSE
├─ @babel/plugin-transform-arrow-functions@7.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-arrow-functions
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-arrow-functions
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-arrow-functions/LICENSE
├─ @babel/plugin-transform-async-to-generator@7.5.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-async-to-generator
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-async-to-generator
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-async-to-generator/LICENSE
├─ @babel/plugin-transform-block-scoped-functions@7.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoped-functions
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-block-scoped-functions
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-block-scoped-functions/LICENSE
├─ @babel/plugin-transform-block-scoping@7.4.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoping
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-block-scoping
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-block-scoping/LICENSE
├─ @babel/plugin-transform-classes@7.4.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-classes
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-classes
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-classes/LICENSE
├─ @babel/plugin-transform-computed-properties@7.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-computed-properties
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-computed-properties
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-computed-properties/LICENSE
├─ @babel/plugin-transform-destructuring@7.5.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-destructuring
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-destructuring
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-destructuring/LICENSE
├─ @babel/plugin-transform-dotall-regex@7.4.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-dotall-regex
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-dotall-regex
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-dotall-regex/LICENSE
├─ @babel/plugin-transform-duplicate-keys@7.5.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-duplicate-keys
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-duplicate-keys
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-duplicate-keys/LICENSE
├─ @babel/plugin-transform-exponentiation-operator@7.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-exponentiation-operator
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-exponentiation-operator
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-exponentiation-operator/LICENSE
├─ @babel/plugin-transform-for-of@7.4.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-for-of
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-for-of
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-for-of/LICENSE
├─ @babel/plugin-transform-function-name@7.4.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-function-name
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-function-name
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-function-name/LICENSE
├─ @babel/plugin-transform-literals@7.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-literals
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-literals
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-literals/LICENSE
├─ @babel/plugin-transform-modules-amd@7.5.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-amd
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-modules-amd
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-modules-amd/LICENSE
├─ @babel/plugin-transform-modules-commonjs@7.5.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-commonjs
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-modules-commonjs
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-modules-commonjs/LICENSE
├─ @babel/plugin-transform-modules-systemjs@7.5.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-systemjs
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-modules-systemjs
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-modules-systemjs/LICENSE
├─ @babel/plugin-transform-modules-umd@7.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-umd
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-modules-umd
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-modules-umd/LICENSE
├─ @babel/plugin-transform-named-capturing-groups-regex@7.4.5
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-named-capturing-groups-regex
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-named-capturing-groups-regex
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-named-capturing-groups-regex/LICENSE
├─ @babel/plugin-transform-new-target@7.4.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-new-target
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-new-target
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-new-target/LICENSE
├─ @babel/plugin-transform-object-super@7.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-super
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-object-super
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-object-super/LICENSE
├─ @babel/plugin-transform-parameters@7.4.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-parameters
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-parameters
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-parameters/LICENSE
├─ @babel/plugin-transform-regenerator@7.4.5
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator
│ ├─ publisher: Ben Newman
│ ├─ email: bn@cs.stanford.edu
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-regenerator
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-regenerator/LICENSE
├─ @babel/plugin-transform-runtime@7.5.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-runtime
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-runtime
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-runtime/LICENSE
├─ @babel/plugin-transform-shorthand-properties@7.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-shorthand-properties
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-shorthand-properties
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-shorthand-properties/LICENSE
├─ @babel/plugin-transform-spread@7.2.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-spread
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-spread
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-spread/LICENSE
├─ @babel/plugin-transform-sticky-regex@7.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-sticky-regex
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-sticky-regex
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-sticky-regex/LICENSE
├─ @babel/plugin-transform-template-literals@7.4.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-template-literals
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-template-literals
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-template-literals/LICENSE
├─ @babel/plugin-transform-typeof-symbol@7.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-typeof-symbol
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-typeof-symbol
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-typeof-symbol/LICENSE
├─ @babel/plugin-transform-unicode-regex@7.4.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-unicode-regex
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-unicode-regex
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/plugin-transform-unicode-regex/LICENSE
├─ @babel/preset-env@7.3.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-preset-env
│ ├─ publisher: Henry Zhu
│ ├─ email: hi@henryzoo.com
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/preset-env
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/preset-env/LICENSE
├─ @babel/runtime-corejs2@7.5.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-runtime-corejs2
│ ├─ publisher: Sebastian McKenzie
│ ├─ email: sebmck@gmail.com
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/runtime-corejs2
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/runtime-corejs2/LICENSE
├─ @babel/runtime@7.5.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-runtime
│ ├─ publisher: Sebastian McKenzie
│ ├─ email: sebmck@gmail.com
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/runtime
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/runtime/LICENSE
├─ @babel/template@7.4.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-template
│ ├─ publisher: Sebastian McKenzie
│ ├─ email: sebmck@gmail.com
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/template
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/template/LICENSE
├─ @babel/traverse@7.5.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-traverse
│ ├─ publisher: Sebastian McKenzie
│ ├─ email: sebmck@gmail.com
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/traverse
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/traverse/LICENSE
├─ @babel/types@7.5.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-types
│ ├─ publisher: Sebastian McKenzie
│ ├─ email: sebmck@gmail.com
│ ├─ path: /var/www/html/dbs/client/node_modules/@babel/types
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@babel/types/LICENSE
├─ @hapi/address@2.0.0
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/hapijs/address
│ ├─ path: /var/www/html/dbs/client/node_modules/@hapi/address
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@hapi/address/LICENSE.md
├─ @hapi/hoek@6.2.4
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/hapijs/hoek
│ ├─ path: /var/www/html/dbs/client/node_modules/@hapi/hoek
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@hapi/hoek/LICENSE.md
├─ @hapi/hoek@8.0.2
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/hapijs/hoek
│ ├─ path: /var/www/html/dbs/client/node_modules/@hapi/topo/node_modules/@hapi/hoek
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@hapi/topo/node_modules/@hapi/hoek/LICENSE.md
├─ @hapi/joi@15.1.0
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/hapijs/joi
│ ├─ path: /var/www/html/dbs/client/node_modules/@hapi/joi
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@hapi/joi/LICENSE.md
├─ @hapi/marker@1.0.0
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/hapijs/marker
│ ├─ path: /var/www/html/dbs/client/node_modules/@hapi/marker
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@hapi/marker/LICENSE.md
├─ @hapi/topo@3.1.2
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/hapijs/topo
│ ├─ path: /var/www/html/dbs/client/node_modules/@hapi/topo
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@hapi/topo/LICENSE.md
├─ @intervolga/optimize-cssnano-plugin@1.0.6
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/intervolga/optimize-cssnano-plugin
│ ├─ publisher: Shkarupa Alex
│ ├─ path: /var/www/html/dbs/client/node_modules/@intervolga/optimize-cssnano-plugin
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@intervolga/optimize-cssnano-plugin/LICENSE
├─ @mrmlnc/readdir-enhanced@2.2.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/bigstickcarpet/readdir-enhanced
│ ├─ publisher: James Messinger
│ ├─ url: http://bigstickcarpet.com
│ ├─ path: /var/www/html/dbs/client/node_modules/@mrmlnc/readdir-enhanced
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@mrmlnc/readdir-enhanced/LICENSE
├─ @nodelib/fs.stat@1.1.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.stat
│ ├─ path: /var/www/html/dbs/client/node_modules/@nodelib/fs.stat
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@nodelib/fs.stat/README.md
├─ @soda/friendly-errors-webpack-plugin@1.7.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sodatea/friendly-errors-webpack-plugin
│ ├─ publisher: Geoffroy Warin
│ ├─ path: /var/www/html/dbs/client/node_modules/@soda/friendly-errors-webpack-plugin
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@soda/friendly-errors-webpack-plugin/LICENSE
├─ @types/events@3.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped
│ ├─ path: /var/www/html/dbs/client/node_modules/@types/events
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@types/events/LICENSE
├─ @types/glob@7.1.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped
│ ├─ path: /var/www/html/dbs/client/node_modules/@types/glob
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@types/glob/LICENSE
├─ @types/minimatch@3.0.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped
│ ├─ path: /var/www/html/dbs/client/node_modules/@types/minimatch
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@types/minimatch/LICENSE
├─ @types/node@12.6.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped
│ ├─ path: /var/www/html/dbs/client/node_modules/@types/node
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@types/node/LICENSE
├─ @types/normalize-package-data@2.4.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped
│ ├─ path: /var/www/html/dbs/client/node_modules/@types/normalize-package-data
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@types/normalize-package-data/LICENSE
├─ @types/q@1.5.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped
│ ├─ path: /var/www/html/dbs/client/node_modules/@types/q
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@types/q/LICENSE
├─ @vue/babel-helper-vue-jsx-merge-props@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/vuejs/jsx/tree/master/packages/babel-helper-vue-jsx-merge-props
│ ├─ publisher: Evan You
│ ├─ path: /var/www/html/dbs/client/node_modules/@vue/babel-helper-vue-jsx-merge-props
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@vue/babel-helper-vue-jsx-merge-props/README.md
├─ @vue/babel-plugin-transform-vue-jsx@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/vuejs/jsx/tree/master/packages/babel-plugin-transform-vue-jsx
│ ├─ publisher: Evan You
│ ├─ path: /var/www/html/dbs/client/node_modules/@vue/babel-plugin-transform-vue-jsx
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@vue/babel-plugin-transform-vue-jsx/README.md
├─ @vue/babel-preset-app@3.9.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/vuejs/vue-cli
│ ├─ publisher: Evan You
│ ├─ path: /var/www/html/dbs/client/node_modules/@vue/babel-preset-app
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@vue/babel-preset-app/LICENSE
├─ @vue/babel-preset-jsx@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/vuejs/jsx/tree/master/packages/babel-preset-jsx
│ ├─ publisher: Nick Messing
│ ├─ email: dot.nick.dot.messing@gmail.com
│ ├─ path: /var/www/html/dbs/client/node_modules/@vue/babel-preset-jsx
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@vue/babel-preset-jsx/README.md
├─ @vue/babel-sugar-functional-vue@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/vuejs/jsx/tree/master/packages/babel-sugar-functional-vue
│ ├─ publisher: Nick Messing
│ ├─ email: dot.nick.dot.messing@gmail.com
│ ├─ path: /var/www/html/dbs/client/node_modules/@vue/babel-sugar-functional-vue
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@vue/babel-sugar-functional-vue/README.md
├─ @vue/babel-sugar-inject-h@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/vuejs/jsx/tree/master/packages/babel-sugar-inject-h
│ ├─ publisher: Nick Messing
│ ├─ email: dot.nick.dot.messing@gmail.com
│ ├─ path: /var/www/html/dbs/client/node_modules/@vue/babel-sugar-inject-h
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@vue/babel-sugar-inject-h/README.md
├─ @vue/babel-sugar-v-model@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/vuejs/jsx/tree/master/packages/babel-sugar-v-model
│ ├─ publisher: Nick Messing
│ ├─ email: dot.nick.dot.messing@gmail.com
│ ├─ path: /var/www/html/dbs/client/node_modules/@vue/babel-sugar-v-model
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@vue/babel-sugar-v-model/README.md
├─ @vue/babel-sugar-v-on@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/vuejs/jsx/tree/master/packages/babel-sugar-v-on
│ ├─ publisher: Nick Messing
│ ├─ email: dot.nick.dot.messing@gmail.com
│ ├─ path: /var/www/html/dbs/client/node_modules/@vue/babel-sugar-v-on
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@vue/babel-sugar-v-on/README.md
├─ @vue/cli-overlay@3.9.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/vuejs/vue-cli
│ ├─ publisher: Evan You
│ ├─ path: /var/www/html/dbs/client/node_modules/@vue/cli-overlay
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@vue/cli-overlay/LICENSE
├─ @vue/cli-plugin-babel@3.9.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/vuejs/vue-cli
│ ├─ publisher: Evan You
│ ├─ path: /var/www/html/dbs/client/node_modules/@vue/cli-plugin-babel
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@vue/cli-plugin-babel/LICENSE
├─ @vue/cli-plugin-eslint@3.9.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/vuejs/vue-cli
│ ├─ publisher: Evan You
│ ├─ path: /var/www/html/dbs/client/node_modules/@vue/cli-plugin-eslint
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@vue/cli-plugin-eslint/LICENSE
├─ @vue/cli-plugin-unit-mocha@3.10.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/vuejs/vue-cli
│ ├─ publisher: Evan You
│ ├─ path: /var/www/html/dbs/client/node_modules/@vue/cli-plugin-unit-mocha
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@vue/cli-plugin-unit-mocha/LICENSE
├─ @vue/cli-service@3.9.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/vuejs/vue-cli
│ ├─ publisher: Evan You
│ ├─ path: /var/www/html/dbs/client/node_modules/@vue/cli-service
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@vue/cli-service/LICENSE
├─ @vue/cli-shared-utils@3.10.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/vuejs/vue-cli
│ ├─ publisher: Evan You
│ ├─ path: /var/www/html/dbs/client/node_modules/@vue/cli-plugin-unit-mocha/node_modules/@vue/cli-shared-utils
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@vue/cli-plugin-unit-mocha/node_modules/@vue/cli-shared-utils/LICENSE
├─ @vue/cli-shared-utils@3.9.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/vuejs/vue-cli
│ ├─ publisher: Evan You
│ ├─ path: /var/www/html/dbs/client/node_modules/@vue/cli-shared-utils
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@vue/cli-shared-utils/LICENSE
├─ @vue/component-compiler-utils@2.6.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/vuejs/component-compiler-utils
│ ├─ publisher: Evan You
│ ├─ path: /var/www/html/dbs/client/node_modules/@vue/component-compiler-utils
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@vue/component-compiler-utils/README.md
├─ @vue/eslint-config-standard@4.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/vuejs/vue-cli
│ ├─ publisher: Evan You
│ ├─ path: /var/www/html/dbs/client/node_modules/@vue/eslint-config-standard
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@vue/eslint-config-standard/README.md
├─ @vue/preload-webpack-plugin@1.1.0
│ ├─ licenses: Apache-2.0
│ ├─ repository: https://github.com/vuejs/preload-webpack-plugin
│ ├─ publisher: Addy Osmani
│ ├─ email: addy.osmani@gmail.com
│ ├─ url: https://github.com/addyosmani
│ ├─ path: /var/www/html/dbs/client/node_modules/@vue/preload-webpack-plugin
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@vue/preload-webpack-plugin/LICENSE
├─ @vue/test-utils@1.0.0-beta.29
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/vuejs/vue-test-utils
│ ├─ publisher: vuejs
│ ├─ path: /var/www/html/dbs/client/node_modules/@vue/test-utils
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@vue/test-utils/README.md
├─ @vue/web-component-wrapper@1.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/vuejs/web-component-wrapper
│ ├─ publisher: Evan You
│ ├─ path: /var/www/html/dbs/client/node_modules/@vue/web-component-wrapper
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@vue/web-component-wrapper/README.md
├─ @webassemblyjs/ast@1.7.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/xtuc/webassemblyjs
│ ├─ publisher: Sven Sauleau
│ ├─ path: /var/www/html/dbs/client/node_modules/@webassemblyjs/ast
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@webassemblyjs/ast/LICENSE
├─ @webassemblyjs/floating-point-hex-parser@1.7.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/xtuc/webassemblyjs
│ ├─ publisher: Mauro Bringolf
│ ├─ path: /var/www/html/dbs/client/node_modules/@webassemblyjs/floating-point-hex-parser
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@webassemblyjs/floating-point-hex-parser/LICENSE
├─ @webassemblyjs/helper-api-error@1.7.11
│ ├─ licenses: MIT
│ ├─ publisher: Sven Sauleau
│ ├─ path: /var/www/html/dbs/client/node_modules/@webassemblyjs/helper-api-error
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@webassemblyjs/helper-api-error/LICENSE
├─ @webassemblyjs/helper-buffer@1.7.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/xtuc/webassemblyjs
│ ├─ publisher: Sven Sauleau
│ ├─ path: /var/www/html/dbs/client/node_modules/@webassemblyjs/helper-buffer
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@webassemblyjs/helper-buffer/LICENSE
├─ @webassemblyjs/helper-code-frame@1.7.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/xtuc/webassemblyjs
│ ├─ publisher: Sven Sauleau
│ ├─ path: /var/www/html/dbs/client/node_modules/@webassemblyjs/helper-code-frame
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@webassemblyjs/helper-code-frame/LICENSE
├─ @webassemblyjs/helper-fsm@1.7.11
│ ├─ licenses: ISC
│ ├─ publisher: Mauro Bringolf
│ ├─ path: /var/www/html/dbs/client/node_modules/@webassemblyjs/helper-fsm
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@webassemblyjs/helper-fsm/LICENSE
├─ @webassemblyjs/helper-module-context@1.7.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/xtuc/webassemblyjs
│ ├─ publisher: Sven Sauleau
│ ├─ path: /var/www/html/dbs/client/node_modules/@webassemblyjs/helper-module-context
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@webassemblyjs/helper-module-context/LICENSE
├─ @webassemblyjs/helper-wasm-bytecode@1.7.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/xtuc/webassemblyjs
│ ├─ publisher: Sven Sauleau
│ ├─ path: /var/www/html/dbs/client/node_modules/@webassemblyjs/helper-wasm-bytecode
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@webassemblyjs/helper-wasm-bytecode/LICENSE
├─ @webassemblyjs/helper-wasm-section@1.7.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/xtuc/webassemblyjs
│ ├─ publisher: Sven Sauleau
│ ├─ path: /var/www/html/dbs/client/node_modules/@webassemblyjs/helper-wasm-section
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@webassemblyjs/helper-wasm-section/LICENSE
├─ @webassemblyjs/ieee754@1.7.11
│ ├─ licenses: MIT
│ ├─ path: /var/www/html/dbs/client/node_modules/@webassemblyjs/ieee754
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@webassemblyjs/ieee754/LICENSE
├─ @webassemblyjs/leb128@1.7.11
│ ├─ licenses: MIT
│ ├─ path: /var/www/html/dbs/client/node_modules/@webassemblyjs/leb128
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@webassemblyjs/leb128/LICENSE.txt
├─ @webassemblyjs/utf8@1.7.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/xtuc/webassemblyjs
│ ├─ publisher: Sven Sauleau
│ ├─ path: /var/www/html/dbs/client/node_modules/@webassemblyjs/utf8
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@webassemblyjs/utf8/LICENSE
├─ @webassemblyjs/wasm-edit@1.7.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/xtuc/webassemblyjs
│ ├─ publisher: Sven Sauleau
│ ├─ path: /var/www/html/dbs/client/node_modules/@webassemblyjs/wasm-edit
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@webassemblyjs/wasm-edit/LICENSE
├─ @webassemblyjs/wasm-gen@1.7.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/xtuc/webassemblyjs
│ ├─ publisher: Sven Sauleau
│ ├─ path: /var/www/html/dbs/client/node_modules/@webassemblyjs/wasm-gen
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@webassemblyjs/wasm-gen/LICENSE
├─ @webassemblyjs/wasm-opt@1.7.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/xtuc/webassemblyjs
│ ├─ publisher: Sven Sauleau
│ ├─ path: /var/www/html/dbs/client/node_modules/@webassemblyjs/wasm-opt
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@webassemblyjs/wasm-opt/LICENSE
├─ @webassemblyjs/wasm-parser@1.7.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/xtuc/webassemblyjs
│ ├─ publisher: Sven Sauleau
│ ├─ path: /var/www/html/dbs/client/node_modules/@webassemblyjs/wasm-parser
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@webassemblyjs/wasm-parser/LICENSE
├─ @webassemblyjs/wast-parser@1.7.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/xtuc/webassemblyjs
│ ├─ publisher: Sven Sauleau
│ ├─ path: /var/www/html/dbs/client/node_modules/@webassemblyjs/wast-parser
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@webassemblyjs/wast-parser/LICENSE
├─ @webassemblyjs/wast-printer@1.7.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/xtuc/webassemblyjs
│ ├─ publisher: Sven Sauleau
│ ├─ path: /var/www/html/dbs/client/node_modules/@webassemblyjs/wast-printer
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@webassemblyjs/wast-printer/LICENSE
├─ @xtuc/ieee754@1.2.0
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/feross/ieee754
│ ├─ publisher: Feross Aboukhadijeh
│ ├─ email: feross@feross.org
│ ├─ url: http://feross.org
│ ├─ path: /var/www/html/dbs/client/node_modules/@xtuc/ieee754
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@xtuc/ieee754/LICENSE
├─ @xtuc/long@4.2.1
│ ├─ licenses: Apache-2.0
│ ├─ repository: https://github.com/dcodeIO/long.js
│ ├─ publisher: Daniel Wirtz
│ ├─ email: dcode@dcode.io
│ ├─ path: /var/www/html/dbs/client/node_modules/@xtuc/long
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/@xtuc/long/LICENSE
├─ abab@2.0.0
│ ├─ licenses: BSD*
│ ├─ repository: https://github.com/jsdom/abab
│ ├─ publisher: Jeff Carpenter
│ ├─ email: gcarpenterv@gmail.com
│ ├─ path: /var/www/html/dbs/client/node_modules/abab
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/abab/LICENSE.md
├─ accepts@1.3.7
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jshttp/accepts
│ ├─ path: /var/www/html/dbs/client/node_modules/accepts
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/accepts/LICENSE
├─ acorn-dynamic-import@3.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/kesne/acorn-dynamic-import
│ ├─ publisher: Jordan Gensler
│ ├─ email: jordangens@gmail.com
│ ├─ path: /var/www/html/dbs/client/node_modules/acorn-dynamic-import
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/acorn-dynamic-import/LICENSE
├─ acorn-globals@4.3.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/ForbesLindesay/acorn-globals
│ ├─ publisher: ForbesLindesay
│ ├─ path: /var/www/html/dbs/client/node_modules/acorn-globals
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/acorn-globals/LICENSE
├─ acorn-jsx@3.0.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/RReverser/acorn-jsx
│ ├─ path: /var/www/html/dbs/client/node_modules/acorn-jsx
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/acorn-jsx/LICENSE
├─ acorn-jsx@5.0.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/RReverser/acorn-jsx
│ ├─ path: /var/www/html/dbs/client/node_modules/eslint-plugin-vue/node_modules/acorn-jsx
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/eslint-plugin-vue/node_modules/acorn-jsx/LICENSE
├─ acorn-walk@6.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/acornjs/acorn
│ ├─ path: /var/www/html/dbs/client/node_modules/acorn-walk
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/acorn-walk/LICENSE
├─ acorn@3.3.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/ternjs/acorn
│ ├─ path: /var/www/html/dbs/client/node_modules/acorn-jsx/node_modules/acorn
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/acorn-jsx/node_modules/acorn/LICENSE
├─ acorn@5.7.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/acornjs/acorn
│ ├─ path: /var/www/html/dbs/client/node_modules/acorn
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/acorn/LICENSE
├─ acorn@6.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/acornjs/acorn
│ ├─ path: /var/www/html/dbs/client/node_modules/eslint-plugin-vue/node_modules/acorn
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/eslint-plugin-vue/node_modules/acorn/LICENSE
├─ acorn@6.2.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/acornjs/acorn
│ ├─ path: /var/www/html/dbs/client/node_modules/acorn-globals/node_modules/acorn
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/acorn-globals/node_modules/acorn/LICENSE
├─ address@1.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/node-modules/address
│ ├─ publisher: fengmk2
│ ├─ email: fengmk2@gmail.com
│ ├─ path: /var/www/html/dbs/client/node_modules/address
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/address/LICENSE.txt
├─ ajv-errors@1.0.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/epoberezkin/ajv-errors
│ ├─ path: /var/www/html/dbs/client/node_modules/ajv-errors
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/ajv-errors/LICENSE
├─ ajv-keywords@2.1.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/epoberezkin/ajv-keywords
│ ├─ publisher: Evgeny Poberezkin
│ ├─ path: /var/www/html/dbs/client/node_modules/table/node_modules/ajv-keywords
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/table/node_modules/ajv-keywords/LICENSE
├─ ajv-keywords@3.4.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/epoberezkin/ajv-keywords
│ ├─ publisher: Evgeny Poberezkin
│ ├─ path: /var/www/html/dbs/client/node_modules/ajv-keywords
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/ajv-keywords/LICENSE
├─ ajv@5.5.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/epoberezkin/ajv
│ ├─ publisher: Evgeny Poberezkin
│ ├─ path: /var/www/html/dbs/client/node_modules/table/node_modules/ajv
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/table/node_modules/ajv/LICENSE
├─ ajv@6.10.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/epoberezkin/ajv
│ ├─ publisher: Evgeny Poberezkin
│ ├─ path: /var/www/html/dbs/client/node_modules/ajv
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/ajv/LICENSE
├─ alphanum-sort@1.0.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/TrySound/alphanum-sort
│ ├─ publisher: Bogdan Chadkin
│ ├─ email: trysound@yandex.ru
│ ├─ path: /var/www/html/dbs/client/node_modules/alphanum-sort
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/alphanum-sort/LICENSE
├─ ansi-colors@3.2.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/doowb/ansi-colors
│ ├─ publisher: Brian Woodward
│ ├─ url: https://github.com/doowb
│ ├─ path: /var/www/html/dbs/client/node_modules/ansi-colors
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/ansi-colors/LICENSE
├─ ansi-escapes@3.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sindresorhus/ansi-escapes
│ ├─ publisher: Sindre Sorhus
│ ├─ email: sindresorhus@gmail.com
│ ├─ url: sindresorhus.com
│ ├─ path: /var/www/html/dbs/client/node_modules/ansi-escapes
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/ansi-escapes/license
├─ ansi-html@0.0.7
│ ├─ licenses: Apache-2.0
│ ├─ repository: https://github.com/Tjatse/ansi-html
│ ├─ publisher: Tjatse
│ ├─ path: /var/www/html/dbs/client/node_modules/ansi-html
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/ansi-html/LICENSE
├─ ansi-regex@2.1.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/chalk/ansi-regex
│ ├─ publisher: Sindre Sorhus
│ ├─ email: sindresorhus@gmail.com
│ ├─ url: sindresorhus.com
│ ├─ path: /var/www/html/dbs/client/node_modules/renderkid/node_modules/ansi-regex
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/renderkid/node_modules/ansi-regex/license
├─ ansi-regex@3.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/chalk/ansi-regex
│ ├─ publisher: Sindre Sorhus
│ ├─ email: sindresorhus@gmail.com
│ ├─ url: sindresorhus.com
│ ├─ path: /var/www/html/dbs/client/node_modules/string-width/node_modules/ansi-regex
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/string-width/node_modules/ansi-regex/license
├─ ansi-regex@4.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/chalk/ansi-regex
│ ├─ publisher: Sindre Sorhus
│ ├─ email: sindresorhus@gmail.com
│ ├─ url: sindresorhus.com
│ ├─ path: /var/www/html/dbs/client/node_modules/ansi-regex
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/ansi-regex/license
├─ ansi-styles@2.2.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/chalk/ansi-styles
│ ├─ publisher: Sindre Sorhus
│ ├─ email: sindresorhus@gmail.com
│ ├─ url: sindresorhus.com
│ ├─ path: /var/www/html/dbs/client/node_modules/babel-code-frame/node_modules/ansi-styles
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/babel-code-frame/node_modules/ansi-styles/license
├─ ansi-styles@3.2.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/chalk/ansi-styles
│ ├─ publisher: Sindre Sorhus
│ ├─ email: sindresorhus@gmail.com
│ ├─ url: sindresorhus.com
│ ├─ path: /var/www/html/dbs/client/node_modules/ansi-styles
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/ansi-styles/license
├─ any-promise@1.3.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/kevinbeaty/any-promise
│ ├─ publisher: Kevin Beaty
│ ├─ path: /var/www/html/dbs/client/node_modules/any-promise
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/any-promise/LICENSE
├─ anymatch@2.0.0
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/micromatch/anymatch
│ ├─ publisher: Elan Shanker
│ ├─ url: http://github.com/es128
│ ├─ path: /var/www/html/dbs/client/node_modules/anymatch
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/anymatch/LICENSE
├─ aproba@1.2.0
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/iarna/aproba
│ ├─ publisher: Rebecca Turner
│ ├─ email: me@re-becca.org
│ ├─ path: /var/www/html/dbs/client/node_modules/aproba
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/aproba/LICENSE
├─ arch@2.1.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/feross/arch
│ ├─ publisher: Feross Aboukhadijeh
│ ├─ email: feross@feross.org
│ ├─ url: http://feross.org/
│ ├─ path: /var/www/html/dbs/client/node_modules/arch
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/arch/LICENSE
├─ argparse@1.0.10
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/nodeca/argparse
│ ├─ path: /var/www/html/dbs/client/node_modules/argparse
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/argparse/LICENSE
├─ arr-diff@4.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jonschlinkert/arr-diff
│ ├─ publisher: Jon Schlinkert
│ ├─ url: https://github.com/jonschlinkert
│ ├─ path: /var/www/html/dbs/client/node_modules/arr-diff
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/arr-diff/LICENSE
├─ arr-flatten@1.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jonschlinkert/arr-flatten
│ ├─ publisher: Jon Schlinkert
│ ├─ url: https://github.com/jonschlinkert
│ ├─ path: /var/www/html/dbs/client/node_modules/arr-flatten
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/arr-flatten/LICENSE
├─ arr-union@3.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jonschlinkert/arr-union
│ ├─ publisher: Jon Schlinkert
│ ├─ url: https://github.com/jonschlinkert
│ ├─ path: /var/www/html/dbs/client/node_modules/arr-union
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/arr-union/LICENSE
├─ array-equal@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/component/array-equal
│ ├─ publisher: Jonathan Ong
│ ├─ email: me@jongleberry.com
│ ├─ url: http://jongleberry.com
│ ├─ path: /var/www/html/dbs/client/node_modules/array-equal
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/array-equal/LICENSE
├─ array-filter@0.0.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/juliangruber/array-filter
│ ├─ publisher: Julian Gruber
│ ├─ email: mail@juliangruber.com
│ ├─ url: http://juliangruber.com
│ ├─ path: /var/www/html/dbs/client/node_modules/array-filter
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/array-filter/README.md
├─ array-flatten@1.1.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/blakeembrey/array-flatten
│ ├─ publisher: Blake Embrey
│ ├─ email: hello@blakeembrey.com
│ ├─ url: http://blakeembrey.me
│ ├─ path: /var/www/html/dbs/client/node_modules/array-flatten
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/array-flatten/LICENSE
├─ array-flatten@2.1.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/blakeembrey/array-flatten
│ ├─ publisher: Blake Embrey
│ ├─ email: hello@blakeembrey.com
│ ├─ url: http://blakeembrey.me
│ ├─ path: /var/www/html/dbs/client/node_modules/bonjour/node_modules/array-flatten
│ └─ licenseFile: /var/www/html/dbs/client/node_modules/bonjour/node_modules/array-flatten/LICENSE
├─ array-includes@3.0.3
│ ├─ licenses: MIT