-
Notifications
You must be signed in to change notification settings - Fork 256
/
NOTICE.txt
1624 lines (1614 loc) · 248 KB
/
NOTICE.txt
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 2019 Battelle Energy Alliance, LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
################################################
################################################
CSETWeb_API Attributions and Dependencies
################################################
The following attributions are referenced and/or derivative works distributed with this source.
Diagram 10.7.5 DrawIO https://www.draw.io Apache License Version 2.0, January 2004 http://www.apache.org/licenses/
mathjax MathJax Consortium http://www.mathjax.org Apache License Version 2.0, January 2004 http://www.apache.org/licenses/
nts.js (Name that Color Javascript) Chirag Mehta http://chir.ag/projects/ntc Creative Commons License: Attribution 2.5 http://creativecommons.org/licenses/by/2.5/
The following dependencies are made available as nuget packages referenced within CSETWeb_API project files.
They are not distributed with this source.
Antlr 3.5.0.2 ANTLRv3 http://www.antlr3.org/license.html
bootstrap 4.3.1 Bootstrap CSS Copyright 2017-2019 (ProjectDir)\CSETWebApi\CSETWeb_Api\packages\bootstrap.4.3.1\LICENSE.txt
Castle.Core 4.4.0 Castle.Core Copyright (c) 2004-2019 Castle Project - http://www.castleproject.org/ http://www.apache.org/licenses/LICENSE-2.0.html
elmah.corelibrary 1.2.2 ELMAH Core Library (no config) http://www.apache.org/licenses/LICENSE-2.0
Elmah.Mvc 2.1.2 Elmah.Mvc alexander.beletsky@gmail.com, Licence Apache 2.0
jQuery 3.4.1 jQuery http://jquery.org/license
Lucene.Net 3.0.3 Lucene.Net Copyright 2006-2012 The Apache Software Foundation http://www.apache.org/licenses/LICENSE-2.0.html
Lucene.Net.Contrib 3.0.3 Lucene.Net Contrib http://www.apache.org/licenses/LICENSE-2.0.html
Modernizr 2.8.3 Modernizr http://www.modernizr.com/license/
Namotion.Reflection 1.0.6 Namotion.Reflection MIT
Newtonsoft.Json 12.0.2 Json.NET Copyright © James Newton-King 2008 MIT
NJsonSchema 10.0.23 NJsonSchema Copyright © Rico Suter, 2018 https://github.com/RicoSuter/NJsonSchema/blob/master/LICENSE.md
Owin 1.0 OWIN https://github.com/owin-contrib/owin-hosting/blob/master/LICENSE.txt
popper.js 1.14.3 popper.js
Remotion.Linq 2.2.0 Remotion.Linq Copyright (c) rubicon IT GmbH, www.rubicon.eu - Licensed under Apache License, Version 2.0 http://opensource.org/licenses/Apache-2.0
Respond 1.4.2 Respond JS 2012: Scott Jehl, Paul Irish, Nicholas Zakas https://github.com/scottjehl/Respond/blob/master/LICENSE-MIT
SharpZipLib 1.1.0 SharpZipLib Copyright © 2000-2018 SharpZipLib Contributors https://github.com/icsharpcode/SharpZipLib/blob/master/LICENSE.txt
Swashbuckle 5.6.0 Swashbuckle - Swagger for WebApi Copyright 2013 http://opensource.org/licenses/BSD-3-Clause
Swashbuckle.Core 5.6.0 Swashbuckle.Core - Swagger for WebApi Copyright 2013 http://opensource.org/licenses/BSD-3-Clause
TinyMapper 2.0.8 TinyMapper https://github.com/TinyMapper/TinyMapper/blob/master/LICENSE
WebActivatorEx 2.2.0 WebActivatorEx http://opensource.org/licenses/Apache-2.0
################################################
CSETWebNg Attributions and Dependencies
################################################
The following dependencies are made available as node packages referenced within CSETWebNg package.json files.
They are not distributed with this source.
@angular-devkit/architect@0.13.8 MIT https://github.com/angular/angular-cli https://github.com/angular/angular-cli/raw/master/LICENSE node_modules\@angular-devkit\architect\LICENSE
@angular-devkit/build-angular@0.13.8 MIT https://github.com/angular/angular-cli https://github.com/angular/angular-cli/raw/master/LICENSE node_modules\@angular-devkit\build-angular\LICENSE
@angular-devkit/build-optimizer@0.13.8 MIT https://github.com/angular/angular-cli https://github.com/angular/angular-cli/raw/master/LICENSE node_modules\@angular-devkit\build-optimizer\LICENSE
@angular-devkit/build-webpack@0.13.8 MIT https://github.com/angular/angular-cli https://github.com/angular/angular-cli/raw/master/LICENSE node_modules\@angular-devkit\build-webpack\LICENSE
@angular-devkit/core@7.3.8 MIT https://github.com/angular/angular-cli https://github.com/angular/angular-cli/raw/master/LICENSE node_modules\@angular-devkit\core\LICENSE
@angular-devkit/schematics@7.3.8 MIT https://github.com/angular/angular-cli https://github.com/angular/angular-cli/raw/master/LICENSE node_modules\@angular-devkit\schematics\LICENSE
@angular/animations@7.2.3 MIT https://github.com/angular/angular https://github.com/angular/angular
@angular/cdk@6.4.7 MIT https://github.com/angular/material2 https://github.com/angular/material2/raw/master/LICENSE node_modules\@angular\cdk\LICENSE
@angular/cli@7.3.8 MIT https://github.com/angular/angular-cli https://github.com/angular/angular-cli/raw/master/LICENSE node_modules\@angular\cli\LICENSE
@angular/common@7.1.0 MIT https://github.com/angular/angular https://github.com/angular/angular
@angular/compiler-cli@7.2.13 MIT https://github.com/angular/angular https://github.com/angular/angular
@angular/compiler@7.1.0 MIT https://github.com/angular/angular https://github.com/angular/angular
@angular/core@7.1.0 MIT https://github.com/angular/angular https://github.com/angular/angular
@angular/elements@7.1.0 MIT https://github.com/angular/angular https://github.com/angular/angular
@angular/flex-layout@6.0.0-beta.18 MIT https://github.com/angular/flex-layout https://github.com/angular/flex-layout/raw/master/LICENSE node_modules\@angular\flex-layout\LICENSE
@angular/forms@7.1.0 MIT https://github.com/angular/angular https://github.com/angular/angular
@angular/http@7.1.0 MIT https://github.com/angular/angular https://github.com/angular/angular
@angular/language-service@7.1.0 MIT https://github.com/angular/angular https://github.com/angular/angular
@angular/material@6.4.7 MIT https://github.com/angular/material2 https://github.com/angular/material2/raw/master/LICENSE node_modules\@angular\material\LICENSE
@angular/platform-browser-dynamic@7.1.0 MIT https://github.com/angular/angular https://github.com/angular/angular
@angular/platform-browser@7.1.0 MIT https://github.com/angular/angular https://github.com/angular/angular
@angular/platform-server@7.1.0 MIT https://github.com/angular/angular https://github.com/angular/angular
@angular/router@7.1.0 MIT https://github.com/angular/angular https://github.com/angular/angular
@fortawesome/angular-fontawesome@0.4.0 MIT https://github.com/FortAwesome/angular-fontawesome https://github.com/FortAwesome/angular-fontawesome
@fortawesome/fontawesome-free@5.9.0 (CC-BY-4.0 AND OFL-1.1 AND MIT) https://github.com/FortAwesome/Font-Awesome https://github.com/FortAwesome/Font-Awesome/raw/master/LICENSE.txt node_modules\@fortawesome\fontawesome-free\LICENSE.txt
@kolkov/angular-editor@0.18.4 MIT https://github.com/kolkov/angular-editor https://github.com/kolkov/angular-editor
@ng-bootstrap/ng-bootstrap@4.0.0 MIT https://github.com/ng-bootstrap/ng-bootstrap https://github.com/ng-bootstrap/ng-bootstrap/raw/master/LICENSE node_modules\@ng-bootstrap\ng-bootstrap\LICENSE
@ng-select/ng-select@2.12.1 MIT https://github.com/ng-select/ng-select https://github.com/ng-select/ng-select
@ngstack/code-editor@0.4.3 MIT https://github.com/ngstack/code-editor https://github.com/ngstack/code-editor/raw/master/LICENSE node_modules\@ngstack\code-editor\LICENSE
@ngtools/webpack@7.3.8 MIT https://github.com/angular/angular-cli https://github.com/angular/angular-cli/raw/master/LICENSE node_modules\@ngtools\webpack\LICENSE
@schematics/angular@7.3.8 MIT https://github.com/angular/angular-cli https://github.com/angular/angular-cli/raw/master/LICENSE node_modules\@schematics\angular\LICENSE
@schematics/update@0.13.8 MIT https://github.com/angular/angular-cli https://github.com/angular/angular-cli/raw/master/LICENSE node_modules\@schematics\update\LICENSE
@types/chart.js@2.7.40 MIT https://github.com/DefinitelyTyped/DefinitelyTyped https://github.com/DefinitelyTyped/DefinitelyTyped/raw/master/LICENSE node_modules\@types\chart.js\LICENSE
@types/file-saver@1.3.1 MIT https://github.com/DefinitelyTyped/DefinitelyTyped https://github.com/DefinitelyTyped/DefinitelyTyped/raw/master/LICENSE node_modules\@types\file-saver\LICENSE
@types/jasmine@2.8.12 MIT https://github.com/DefinitelyTyped/DefinitelyTyped https://github.com/DefinitelyTyped/DefinitelyTyped/raw/master/LICENSE node_modules\@types\jasmine\LICENSE
@types/jasminewd2@2.0.6 MIT https://github.com/DefinitelyTyped/DefinitelyTyped https://github.com/DefinitelyTyped/DefinitelyTyped/raw/master/LICENSE node_modules\@types\jasminewd2\LICENSE
@types/jquery@2.0.49 MIT https://wwwhub.com/DefinitelyTyped/DefinitelyTyped https://wwwhub.com/DefinitelyTyped/DefinitelyTyped node_modules\ng2-ion-range-slider\node_modules\@types\jquery\LICENSE
@types/jquery@3.3.22 MIT https://github.com/DefinitelyTyped/DefinitelyTyped https://github.com/DefinitelyTyped/DefinitelyTyped/raw/master/LICENSE node_modules\@types\jquery\LICENSE
@types/lodash@4.14.118 MIT https://github.com/DefinitelyTyped/DefinitelyTyped https://github.com/DefinitelyTyped/DefinitelyTyped/raw/master/LICENSE node_modules\@types\lodash\LICENSE
@types/mousetrap@1.6.0 MIT https://wwwhub.com/DefinitelyTyped/DefinitelyTyped https://wwwhub.com/DefinitelyTyped/DefinitelyTyped node_modules\@types\mousetrap\LICENSE
@types/node@10.12.10 MIT https://github.com/DefinitelyTyped/DefinitelyTyped https://github.com/DefinitelyTyped/DefinitelyTyped/raw/master/LICENSE node_modules\@types\node\LICENSE
@types/node@6.14.2 MIT https://github.com/DefinitelyTyped/DefinitelyTyped https://github.com/DefinitelyTyped/DefinitelyTyped/raw/master/LICENSE node_modules\protractor\node_modules\@types\node\LICENSE
@types/q@0.0.32 MIT https://wwwhub.com/DefinitelyTyped/DefinitelyTyped https://wwwhub.com/DefinitelyTyped/DefinitelyTyped
@types/screenfull@3.3.2 MIT https://github.com/DefinitelyTyped/DefinitelyTyped https://github.com/DefinitelyTyped/DefinitelyTyped/raw/master/LICENSE node_modules\@types\screenfull\LICENSE
@types/selenium-webdriver@3.0.13 MIT https://github.com/DefinitelyTyped/DefinitelyTyped https://github.com/DefinitelyTyped/DefinitelyTyped/raw/master/LICENSE node_modules\@types\selenium-webdriver\LICENSE
@types/sizzle@2.3.2 MIT https://github.com/DefinitelyTyped/DefinitelyTyped https://github.com/DefinitelyTyped/DefinitelyTyped/raw/master/LICENSE node_modules\@types\sizzle\LICENSE
@types/source-list-map@0.1.2 MIT https://wwwhub.com/DefinitelyTyped/DefinitelyTyped https://wwwhub.com/DefinitelyTyped/DefinitelyTyped node_modules\@types\source-list-map\LICENSE
@types/strip-bom@3.0.0 MIT https://wwwhub.com/DefinitelyTyped/DefinitelyTyped https://wwwhub.com/DefinitelyTyped/DefinitelyTyped
@types/strip-json-comments@0.0.30 MIT https://wwwhub.com/DefinitelyTyped/DefinitelyTyped https://wwwhub.com/DefinitelyTyped/DefinitelyTyped node_modules\@types\strip-json-comments\LICENSE
@types/webpack-sources@0.1.5 MIT https://github.com/DefinitelyTyped/DefinitelyTyped https://github.com/DefinitelyTyped/DefinitelyTyped/raw/master/LICENSE node_modules\@types\webpack-sources\LICENSE
@webassemblyjs/ast@1.7.11 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\@webassemblyjs\ast\LICENSE
@webassemblyjs/ast@1.8.5 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\webpack\node_modules\@webassemblyjs\ast\LICENSE
@webassemblyjs/floating-point-hex-parser@1.7.11 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\@webassemblyjs\floating-point-hex-parser\LICENSE
@webassemblyjs/floating-point-hex-parser@1.8.5 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\webpack\node_modules\@webassemblyjs\floating-point-hex-parser\LICENSE
@webassemblyjs/helper-api-error@1.7.11 MIT node_modules\@webassemblyjs\helper-api-error\LICENSE
@webassemblyjs/helper-api-error@1.8.5 MIT node_modules\webpack\node_modules\@webassemblyjs\helper-api-error\LICENSE
@webassemblyjs/helper-buffer@1.7.11 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\@webassemblyjs\helper-buffer\LICENSE
@webassemblyjs/helper-buffer@1.8.5 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\webpack\node_modules\@webassemblyjs\helper-buffer\LICENSE
@webassemblyjs/helper-code-frame@1.7.11 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\@webassemblyjs\helper-code-frame\LICENSE
@webassemblyjs/helper-code-frame@1.8.5 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\webpack\node_modules\@webassemblyjs\helper-code-frame\LICENSE
@webassemblyjs/helper-fsm@1.7.11 ISC node_modules\@webassemblyjs\helper-fsm\LICENSE
@webassemblyjs/helper-fsm@1.8.5 ISC node_modules\webpack\node_modules\@webassemblyjs\helper-fsm\LICENSE
@webassemblyjs/helper-module-context@1.7.11 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\@webassemblyjs\helper-module-context\LICENSE
@webassemblyjs/helper-module-context@1.8.5 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\webpack\node_modules\@webassemblyjs\helper-module-context\LICENSE
@webassemblyjs/helper-wasm-bytecode@1.7.11 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\@webassemblyjs\helper-wasm-bytecode\LICENSE
@webassemblyjs/helper-wasm-bytecode@1.8.5 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\webpack\node_modules\@webassemblyjs\helper-wasm-bytecode\LICENSE
@webassemblyjs/helper-wasm-section@1.7.11 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\@webassemblyjs\helper-wasm-section\LICENSE
@webassemblyjs/helper-wasm-section@1.8.5 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\webpack\node_modules\@webassemblyjs\helper-wasm-section\LICENSE
@webassemblyjs/ieee754@1.7.11 MIT node_modules\@webassemblyjs\ieee754\LICENSE
@webassemblyjs/ieee754@1.8.5 MIT node_modules\webpack\node_modules\@webassemblyjs\ieee754\LICENSE
@webassemblyjs/leb128@1.7.11 MIT node_modules\@webassemblyjs\leb128\LICENSE.txt
@webassemblyjs/leb128@1.8.5 MIT node_modules\webpack\node_modules\@webassemblyjs\leb128\LICENSE.txt
@webassemblyjs/utf8@1.7.11 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\@webassemblyjs\utf8\LICENSE
@webassemblyjs/utf8@1.8.5 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\webpack\node_modules\@webassemblyjs\utf8\LICENSE
@webassemblyjs/wasm-edit@1.7.11 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\@webassemblyjs\wasm-edit\LICENSE
@webassemblyjs/wasm-edit@1.8.5 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\webpack\node_modules\@webassemblyjs\wasm-edit\LICENSE
@webassemblyjs/wasm-gen@1.7.11 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\@webassemblyjs\wasm-gen\LICENSE
@webassemblyjs/wasm-gen@1.8.5 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\webpack\node_modules\@webassemblyjs\wasm-gen\LICENSE
@webassemblyjs/wasm-opt@1.7.11 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\@webassemblyjs\wasm-opt\LICENSE
@webassemblyjs/wasm-opt@1.8.5 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\webpack\node_modules\@webassemblyjs\wasm-opt\LICENSE
@webassemblyjs/wasm-parser@1.7.11 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\@webassemblyjs\wasm-parser\LICENSE
@webassemblyjs/wasm-parser@1.8.5 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\webpack\node_modules\@webassemblyjs\wasm-parser\LICENSE
@webassemblyjs/wast-parser@1.7.11 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\@webassemblyjs\wast-parser\LICENSE
@webassemblyjs/wast-parser@1.8.5 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\webpack\node_modules\@webassemblyjs\wast-parser\LICENSE
@webassemblyjs/wast-printer@1.7.11 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\@webassemblyjs\wast-printer\LICENSE
@webassemblyjs/wast-printer@1.8.5 MIT https://github.com/xtuc/webassemblyjs https://github.com/xtuc/webassemblyjs/raw/master/LICENSE node_modules\webpack\node_modules\@webassemblyjs\wast-printer\LICENSE
@webcomponents/webcomponentsjs@2.2.1 BSD-3-Clause https://github.com/webcomponents/webcomponentsjs https://github.com/webcomponents/webcomponentsjs/raw/master/LICENSE.md node_modules\@webcomponents\webcomponentsjs\LICENSE.md
@xtuc/ieee754@1.2.0 BSD-3-Clause https://github.com/feross/ieee754 https://github.com/feross/ieee754/raw/master/LICENSE node_modules\@xtuc\ieee754\LICENSE
@xtuc/long@4.2.1 Apache-2.0 https://github.com/dcodeIO/long.js https://github.com/dcodeIO/long.js/raw/master/LICENSE node_modules\@xtuc\long\LICENSE
@xtuc/long@4.2.2 Apache-2.0 https://github.com/dcodeIO/long.js https://github.com/dcodeIO/long.js/raw/master/LICENSE node_modules\webpack\node_modules\@xtuc\long\LICENSE
@yarnpkg/lockfile@1.1.0 BSD-2-Clause https://github.com/yarnpkg/yarn/blob/master/packages/lockfile https://github.com/yarnpkg/yarn/blob/master/packages/lockfile
JSONStream@1.3.5 (MIT OR Apache-2.0) https://github.com/dominictarr/JSONStream https://github.com/dominictarr/JSONStream/raw/master/LICENSE.APACHE2 node_modules\JSONStream\LICENSE.MIT
abbrev@1.1.1 ISC https://github.com/isaacs/abbrev-js https://github.com/isaacs/abbrev-js/raw/master/LICENSE node_modules\abbrev\LICENSE
accepts@1.3.5 MIT https://github.com/jshttp/accepts https://github.com/jshttp/accepts/raw/master/LICENSE node_modules\accepts\LICENSE
acorn-dynamic-import@4.0.0 MIT https://github.com/kesne/acorn-dynamic-import https://github.com/kesne/acorn-dynamic-import/raw/master/LICENSE node_modules\acorn-dynamic-import\LICENSE
acorn@6.1.1 MIT https://github.com/acornjs/acorn https://github.com/acornjs/acorn/raw/master/LICENSE node_modules\acorn\LICENSE
adm-zip@0.4.13 MIT https://github.com/cthackers/adm-zip https://github.com/cthackers/adm-zip/raw/master/MIT-LICENSE.txt node_modules\adm-zip\MIT-LICENSE.txt
after@0.8.2 MIT https://github.com/Raynos/after https://github.com/Raynos/after/raw/master/LICENCE node_modules\after\LICENCE
agent-base@4.2.1 MIT https://github.com/TooTallNate/node-agent-base https://github.com/TooTallNate/node-agent-base
agentkeepalive@3.4.1 MIT https://github.com/node-modules/agentkeepalive https://github.com/node-modules/agentkeepalive
agentkeepalive@3.5.2 MIT https://github.com/node-modules/agentkeepalive https://github.com/node-modules/agentkeepalive
ajv-errors@1.0.0 MIT https://github.com/epoberezkin/ajv-errors https://github.com/epoberezkin/ajv-errors/raw/master/LICENSE node_modules\ajv-errors\LICENSE
ajv-keywords@3.2.0 MIT https://github.com/epoberezkin/ajv-keywords https://github.com/epoberezkin/ajv-keywords/raw/master/LICENSE node_modules\ajv-keywords\LICENSE
ajv@5.5.2 MIT https://github.com/epoberezkin/ajv https://github.com/epoberezkin/ajv/raw/master/LICENSE node_modules\har-validator\node_modules\ajv\LICENSE
ajv@6.4.0 MIT https://github.com/epoberezkin/ajv https://github.com/epoberezkin/ajv/raw/master/LICENSE node_modules\ajv\LICENSE
ajv@6.9.1 MIT https://github.com/epoberezkin/ajv https://github.com/epoberezkin/ajv/raw/master/LICENSE node_modules\@angular-devkit\core\node_modules\ajv\LICENSE
align-text@0.1.4 MIT https://github.com/jonschlinkert/align-text https://github.com/jonschlinkert/align-text/raw/master/LICENSE node_modules\align-text\LICENSE
amdefine@1.0.1 BSD-3-Clause OR MIT https://github.com/jrburke/amdefine https://github.com/jrburke/amdefine/raw/master/LICENSE node_modules\amdefine\LICENSE
angular2-hotkeys@2.1.4 MIT https://github.com/brtnshrdr/angular2-hotkeys https://github.com/brtnshrdr/angular2-hotkeys/raw/master/LICENSE node_modules\angular2-hotkeys\LICENSE
ansi-align@2.0.0 ISC https://github.com/nexdrew/ansi-align https://github.com/nexdrew/ansi-align/raw/master/LICENSE node_modules\npm\node_modules\ansi-align\LICENSE
ansi-bgblack@0.1.1 MIT https://github.com/jonschlinkert/ansi-bgblack https://github.com/jonschlinkert/ansi-bgblack/raw/master/LICENSE node_modules\ansi-bgblack\LICENSE
ansi-bgblue@0.1.1 MIT https://github.com/jonschlinkert/ansi-bgblue https://github.com/jonschlinkert/ansi-bgblue/raw/master/LICENSE node_modules\ansi-bgblue\LICENSE
ansi-bgcyan@0.1.1 MIT https://github.com/jonschlinkert/ansi-bgcyan https://github.com/jonschlinkert/ansi-bgcyan/raw/master/LICENSE node_modules\ansi-bgcyan\LICENSE
ansi-bggreen@0.1.1 MIT https://github.com/jonschlinkert/ansi-bggreen https://github.com/jonschlinkert/ansi-bggreen/raw/master/LICENSE node_modules\ansi-bggreen\LICENSE
ansi-bgmagenta@0.1.1 MIT https://github.com/jonschlinkert/ansi-bgmagenta https://github.com/jonschlinkert/ansi-bgmagenta/raw/master/LICENSE node_modules\ansi-bgmagenta\LICENSE
ansi-bgred@0.1.1 MIT https://github.com/jonschlinkert/ansi-bgred https://github.com/jonschlinkert/ansi-bgred/raw/master/LICENSE node_modules\ansi-bgred\LICENSE
ansi-bgwhite@0.1.1 MIT https://github.com/jonschlinkert/ansi-bgwhite https://github.com/jonschlinkert/ansi-bgwhite/raw/master/LICENSE node_modules\ansi-bgwhite\LICENSE
ansi-bgyellow@0.1.1 MIT https://github.com/jonschlinkert/ansi-bgyellow https://github.com/jonschlinkert/ansi-bgyellow/raw/master/LICENSE node_modules\ansi-bgyellow\LICENSE
ansi-black@0.1.1 MIT https://github.com/jonschlinkert/ansi-black https://github.com/jonschlinkert/ansi-black/raw/master/LICENSE node_modules\ansi-black\LICENSE
ansi-blue@0.1.1 MIT https://github.com/jonschlinkert/ansi-blue https://github.com/jonschlinkert/ansi-blue/raw/master/LICENSE node_modules\ansi-blue\LICENSE
ansi-bold@0.1.1 MIT https://github.com/jonschlinkert/ansi-bold https://github.com/jonschlinkert/ansi-bold/raw/master/LICENSE node_modules\ansi-bold\LICENSE
ansi-colors@0.1.0 MIT https://github.com/doowb/ansi-colors https://github.com/doowb/ansi-colors/raw/master/LICENSE node_modules\base-runtimes\node_modules\ansi-colors\LICENSE
ansi-colors@0.2.0 MIT https://github.com/doowb/ansi-colors https://github.com/doowb/ansi-colors/raw/master/LICENSE node_modules\log-utils\node_modules\ansi-colors\LICENSE
ansi-colors@3.2.4 MIT https://github.com/doowb/ansi-colors https://github.com/doowb/ansi-colors/raw/master/LICENSE node_modules\ansi-colors\LICENSE
ansi-cyan@0.1.1 MIT https://github.com/jonschlinkert/ansi-cyan https://github.com/jonschlinkert/ansi-cyan/raw/master/LICENSE node_modules\ansi-cyan\LICENSE
ansi-dim@0.1.1 MIT https://github.com/jonschlinkert/ansi-dim https://github.com/jonschlinkert/ansi-dim/raw/master/LICENSE node_modules\ansi-dim\LICENSE
ansi-escapes@1.4.0 MIT https://github.com/sindresorhus/ansi-escapes https://github.com/sindresorhus/ansi-escapes/raw/master/license node_modules\ansi-escapes\license
ansi-escapes@3.2.0 MIT https://github.com/sindresorhus/ansi-escapes https://github.com/sindresorhus/ansi-escapes/raw/master/license node_modules\inquirer\node_modules\ansi-escapes\license
ansi-gray@0.1.1 MIT https://github.com/jonschlinkert/ansi-gray https://github.com/jonschlinkert/ansi-gray/raw/master/LICENSE node_modules\ansi-gray\LICENSE
ansi-green@0.1.1 MIT https://github.com/jonschlinkert/ansi-green https://github.com/jonschlinkert/ansi-green/raw/master/LICENSE node_modules\ansi-green\LICENSE
ansi-grey@0.1.1 MIT https://github.com/jonschlinkert/ansi-grey https://github.com/jonschlinkert/ansi-grey/raw/master/LICENSE node_modules\ansi-grey\LICENSE
ansi-hidden@0.1.1 MIT https://github.com/jonschlinkert/ansi-hidden https://github.com/jonschlinkert/ansi-hidden/raw/master/LICENSE node_modules\ansi-hidden\LICENSE
ansi-html@0.0.7 Apache-2.0 https://github.com/Tjatse/ansi-html https://github.com/Tjatse/ansi-html/raw/master/LICENSE node_modules\ansi-html\LICENSE
ansi-inverse@0.1.1 MIT https://github.com/jonschlinkert/ansi-inverse https://github.com/jonschlinkert/ansi-inverse/raw/master/LICENSE node_modules\ansi-inverse\LICENSE
ansi-italic@0.1.1 MIT https://github.com/jonschlinkert/ansi-italic https://github.com/jonschlinkert/ansi-italic/raw/master/LICENSE node_modules\ansi-italic\LICENSE
ansi-magenta@0.1.1 MIT https://github.com/jonschlinkert/ansi-magenta https://github.com/jonschlinkert/ansi-magenta/raw/master/LICENSE node_modules\ansi-magenta\LICENSE
ansi-red@0.1.1 MIT https://github.com/jonschlinkert/ansi-red https://github.com/jonschlinkert/ansi-red/raw/master/LICENSE node_modules\ansi-red\LICENSE
ansi-regex@2.1.1 MIT https://github.com/chalk/ansi-regex https://github.com/chalk/ansi-regex/raw/master/license node_modules\ansi-regex\license
ansi-regex@3.0.0 MIT https://github.com/chalk/ansi-regex https://github.com/chalk/ansi-regex/raw/master/license node_modules\inquirer\node_modules\ansi-regex\license
ansi-regex@4.1.0 MIT https://github.com/chalk/ansi-regex https://github.com/chalk/ansi-regex/raw/master/license node_modules\inquirer\node_modules\strip-ansi\node_modules\ansi-regex\license
ansi-reset@0.1.1 MIT https://github.com/jonschlinkert/ansi-reset https://github.com/jonschlinkert/ansi-reset/raw/master/LICENSE node_modules\ansi-reset\LICENSE
ansi-strikethrough@0.1.1 MIT https://github.com/jonschlinkert/ansi-strikethrough https://github.com/jonschlinkert/ansi-strikethrough/raw/master/LICENSE node_modules\ansi-strikethrough\LICENSE
ansi-styles@2.2.1 MIT https://github.com/chalk/ansi-styles https://github.com/chalk/ansi-styles/raw/master/license node_modules\node-sass\node_modules\ansi-styles\license
ansi-styles@3.2.1 MIT https://github.com/chalk/ansi-styles https://github.com/chalk/ansi-styles/raw/master/license node_modules\ansi-styles\license
ansi-underline@0.1.1 MIT https://github.com/jonschlinkert/ansi-underline https://github.com/jonschlinkert/ansi-underline/raw/master/LICENSE node_modules\ansi-underline\LICENSE
ansi-white@0.1.1 MIT https://github.com/jonschlinkert/ansi-white https://github.com/jonschlinkert/ansi-white/raw/master/LICENSE node_modules\ansi-white\LICENSE
ansi-wrap@0.1.0 MIT https://github.com/jonschlinkert/ansi-wrap https://github.com/jonschlinkert/ansi-wrap/blob/master/LICENSE node_modules\ansi-wrap\LICENSE
ansi-yellow@0.1.1 MIT https://github.com/jonschlinkert/ansi-yellow https://github.com/jonschlinkert/ansi-yellow/raw/master/LICENSE node_modules\ansi-yellow\LICENSE
ansicolors@0.3.2 MIT https://github.com/thlorenz/ansicolors https://github.com/thlorenz/ansicolors/raw/master/LICENSE node_modules\npm\node_modules\ansicolors\LICENSE
ansistyles@0.1.3 MIT https://github.com/thlorenz/ansistyles https://github.com/thlorenz/ansistyles/raw/master/LICENSE node_modules\npm\node_modules\ansistyles\LICENSE
anymatch@2.0.0 ISC https://github.com/micromatch/anymatch https://github.com/micromatch/anymatch/raw/master/LICENSE node_modules\anymatch\LICENSE
app-root-path@2.1.0 MIT https://github.com/inxilpro/node-app-root-path https://github.com/inxilpro/node-app-root-path/raw/master/LICENSE node_modules\app-root-path\LICENSE
append-transform@0.4.0 MIT https://github.com/jamestalmage/append-transform https://github.com/jamestalmage/append-transform/raw/master/license node_modules\istanbul-api\node_modules\append-transform\license
aproba@1.2.0 ISC https://github.com/iarna/aproba https://github.com/iarna/aproba/raw/master/LICENSE node_modules\aproba\LICENSE
aproba@2.0.0 ISC https://github.com/iarna/aproba https://github.com/iarna/aproba/raw/master/LICENSE node_modules\npm\node_modules\aproba\LICENSE
archy@1.0.0 MIT https://github.com/substack/node-archy https://github.com/substack/node-archy/raw/master/LICENSE node_modules\npm\node_modules\archy\LICENSE
are-we-there-yet@1.1.4 ISC https://github.com/iarna/are-we-there-yet https://github.com/iarna/are-we-there-yet/raw/master/LICENSE node_modules\npm\node_modules\are-we-there-yet\LICENSE
are-we-there-yet@1.1.5 ISC https://github.com/iarna/are-we-there-yet https://github.com/iarna/are-we-there-yet/raw/master/LICENSE node_modules\are-we-there-yet\LICENSE
argparse@1.0.10 MIT https://github.com/nodeca/argparse https://github.com/nodeca/argparse/raw/master/LICENSE node_modules\argparse\LICENSE
arr-diff@2.0.0 MIT https://github.com/jonschlinkert/arr-diff https://github.com/jonschlinkert/arr-diff/raw/master/LICENSE node_modules\glob-stream\node_modules\arr-diff\LICENSE
arr-diff@4.0.0 MIT https://github.com/jonschlinkert/arr-diff https://github.com/jonschlinkert/arr-diff/raw/master/LICENSE node_modules\arr-diff\LICENSE
arr-flatten@1.1.0 MIT https://github.com/jonschlinkert/arr-flatten https://github.com/jonschlinkert/arr-flatten/raw/master/LICENSE node_modules\arr-flatten\LICENSE
arr-map@2.0.2 MIT https://github.com/jonschlinkert/arr-map https://github.com/jonschlinkert/arr-map/raw/master/LICENSE node_modules\arr-map\LICENSE
arr-pluck@0.1.0 MIT https://github.com/jonschlinkert/arr-pluck https://github.com/jonschlinkert/arr-pluck/blob/master/LICENSE node_modules\arr-pluck\LICENSE
arr-union@3.1.0 MIT https://github.com/jonschlinkert/arr-union https://github.com/jonschlinkert/arr-union/raw/master/LICENSE node_modules\arr-union\LICENSE
array-find-index@1.0.2 MIT https://github.com/sindresorhus/array-find-index https://github.com/sindresorhus/array-find-index/raw/master/license node_modules\array-find-index\license
array-flatten@1.1.1 MIT https://github.com/blakeembrey/array-flatten https://github.com/blakeembrey/array-flatten/raw/master/LICENSE node_modules\express\node_modules\array-flatten\LICENSE
array-flatten@2.1.2 MIT https://github.com/blakeembrey/array-flatten https://github.com/blakeembrey/array-flatten/raw/master/LICENSE node_modules\array-flatten\LICENSE
array-sort@0.1.4 MIT https://github.com/jonschlinkert/array-sort https://github.com/jonschlinkert/array-sort/raw/master/LICENSE node_modules\array-sort\LICENSE
array-union@1.0.2 MIT https://github.com/sindresorhus/array-union https://github.com/sindresorhus/array-union/raw/master/license node_modules\array-union\license
array-uniq@1.0.3 MIT https://github.com/sindresorhus/array-uniq https://github.com/sindresorhus/array-uniq/raw/master/license node_modules\array-uniq\license
array-unique@0.2.1 MIT https://github.com/jonschlinkert/array-unique https://github.com/jonschlinkert/array-unique/blob/master/LICENSE node_modules\glob-stream\node_modules\array-unique\LICENSE
array-unique@0.3.2 MIT https://github.com/jonschlinkert/array-unique https://github.com/jonschlinkert/array-unique/raw/master/LICENSE node_modules\array-unique\LICENSE
array.prototype.fill@1.0.2 MIT https://github.com/ahutchings/Array.prototype.fill https://github.com/ahutchings/Array.prototype.fill
arraybuffer.slice@0.0.7 MIT https://github.com/rase-/arraybuffer.slice https://github.com/rase-/arraybuffer.slice/raw/master/LICENCE node_modules\arraybuffer.slice\LICENCE
arrayify-compact@0.2.0 MIT https://github.com/jonschlinkert/arrayify-compact https://github.com/jonschlinkert/arrayify-compact/raw/master/LICENSE node_modules\arrayify-compact\LICENSE
arrify@1.0.1 MIT https://github.com/sindresorhus/arrify https://github.com/sindresorhus/arrify/raw/master/license node_modules\arrify\license
asap@2.0.6 MIT https://github.com/kriskowal/asap https://github.com/kriskowal/asap/raw/master/LICENSE.md node_modules\npm\node_modules\asap\LICENSE.md
asn1.js@4.10.1 MIT https://github.com/indutny/asn1.js https://github.com/indutny/asn1.js
asn1@0.2.4 MIT https://github.com/joyent/node-asn1 https://github.com/joyent/node-asn1/raw/master/LICENSE node_modules\asn1\LICENSE
assemble-core@0.25.0 MIT https://github.com/assemble/assemble-core https://github.com/assemble/assemble-core/raw/master/LICENSE node_modules\assemble-core\LICENSE
assemble-fs@0.6.0 MIT https://github.com/assemble/assemble-fs https://github.com/assemble/assemble-fs/raw/master/LICENSE node_modules\assemble-fs\LICENSE
assemble-handle@0.1.4 MIT https://github.com/assemble/assemble-handle https://github.com/assemble/assemble-handle/raw/master/LICENSE node_modules\assemble-handle\LICENSE
assemble-loader@0.6.1 MIT https://github.com/assemble/assemble-loader https://github.com/assemble/assemble-loader/raw/master/LICENSE node_modules\assemble-loader\LICENSE
assemble-render-file@0.7.2 MIT https://github.com/assemble/assemble-render-file https://github.com/assemble/assemble-render-file/raw/master/LICENSE node_modules\assemble-render-file\LICENSE
assemble-streams@0.6.0 MIT https://github.com/assemble/assemble-streams https://github.com/assemble/assemble-streams/raw/master/LICENSE node_modules\assemble-streams\LICENSE
assert-plus@1.0.0 MIT https://github.com/mcavage/node-assert-plus https://github.com/mcavage/node-assert-plus
assert@1.4.1 MIT https://github.com/defunctzombie/commonjs-assert https://github.com/defunctzombie/commonjs-assert/raw/master/LICENSE node_modules\assert\LICENSE
assign-deep@0.4.7 MIT https://github.com/jonschlinkert/assign-deep https://github.com/jonschlinkert/assign-deep/raw/master/LICENSE node_modules\assign-deep\LICENSE
assign-symbols@0.1.1 MIT https://github.com/jonschlinkert/assign-symbols https://github.com/jonschlinkert/assign-symbols/raw/master/LICENSE node_modules\assign-deep\node_modules\assign-symbols\LICENSE
assign-symbols@1.0.0 MIT https://github.com/jonschlinkert/assign-symbols https://github.com/jonschlinkert/assign-symbols/raw/master/LICENSE node_modules\assign-symbols\LICENSE
async-array-reduce@0.2.1 MIT https://github.com/jonschlinkert/async-array-reduce https://github.com/jonschlinkert/async-array-reduce/raw/master/LICENSE node_modules\async-array-reduce\LICENSE
async-done@0.4.0 MIT https://github.com/phated/async-done https://github.com/phated/async-done/raw/master/LICENSE node_modules\async-settle\node_modules\async-done\LICENSE
async-done@1.3.1 MIT https://github.com/gulpjs/async-done https://github.com/gulpjs/async-done/raw/master/LICENSE node_modules\async-done\LICENSE
async-each-series@1.1.0 MIT https://github.com/jb55/async-each-series https://github.com/jb55/async-each-series
async-each@1.0.1 MIT https://github.com/paulmillr/async-each https://github.com/paulmillr/async-each
async-foreach@0.1.3 MIT* https://github.com/cowboy/javascript-sync-async-foreach https://github.com/cowboy/javascript-sync-async-foreach/raw/master/LICENSE-MIT node_modules\async-foreach\README.md
async-helpers@0.3.17 MIT https://github.com/doowb/async-helpers https://github.com/doowb/async-helpers/raw/master/LICENSE node_modules\async-helpers\LICENSE
async-limiter@1.0.0 MIT https://github.com/strml/async-limiter https://github.com/strml/async-limiter/raw/master/LICENSE node_modules\async-limiter\LICENSE
async-settle@0.2.1 MIT https://github.com/phated/async-settle https://github.com/phated/async-settle/raw/master/LICENSE node_modules\async-settle\LICENSE
async@1.5.2 MIT https://github.com/caolan/async https://github.com/caolan/async/raw/master/LICENSE node_modules\async\LICENSE
async@2.6.2 MIT https://github.com/caolan/async https://github.com/caolan/async/raw/master/LICENSE node_modules\handlebars\node_modules\async\LICENSE
asynckit@0.4.0 MIT https://github.com/alexindigo/asynckit https://github.com/alexindigo/asynckit/raw/master/LICENSE node_modules\asynckit\LICENSE
atob@2.1.2 (MIT OR Apache-2.0) git://git.coolaj86.com/coolaj86/atob.js https://git.coolaj86.com/coolaj86/atob.js node_modules\atob\LICENSE.DOCS
autoprefixer@9.4.6 MIT https://github.com/postcss/autoprefixer https://github.com/postcss/autoprefixer/raw/master/LICENSE node_modules\autoprefixer\LICENSE
aws-sign2@0.7.0 Apache-2.0 https://github.com/mikeal/aws-sign https://github.com/mikeal/aws-sign/raw/master/LICENSE node_modules\aws-sign2\LICENSE
aws4@1.8.0 MIT https://github.com/mhart/aws4 https://github.com/mhart/aws4/raw/master/LICENSE node_modules\aws4\LICENSE
babel-code-frame@6.26.0 MIT https://github.com/babel/babel/tree/master/packages/babel-code-frame 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 https://github.com/babel/babel/tree/master/packages/babel-generator
babel-messages@6.23.0 MIT https://github.com/babel/babel/tree/master/packages/babel-messages https://github.com/babel/babel/tree/master/packages/babel-messages
babel-runtime@6.26.0 MIT https://github.com/babel/babel/tree/master/packages/babel-runtime 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 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 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 https://github.com/babel/babel/tree/master/packages/babel-types
babylon@6.18.0 MIT https://github.com/babel/babylon https://github.com/babel/babylon/raw/master/LICENSE node_modules\babylon\LICENSE
bach@0.5.0 MIT https://github.com/gulpjs/bach https://github.com/gulpjs/bach/raw/master/LICENSE node_modules\bach\LICENSE
backo2@1.0.2 MIT https://github.com/mokesmokes/backo https://github.com/mokesmokes/backo
balanced-match@1.0.0 MIT https://github.com/juliangruber/balanced-match https://github.com/juliangruber/balanced-match/raw/master/LICENSE.md node_modules\balanced-match\LICENSE.md
base-argv@0.4.5 MIT https://github.com/node-base/base-argv https://github.com/node-base/base-argv/raw/master/LICENSE node_modules\base-argv\LICENSE
base-cli-process@0.1.19 MIT https://github.com/node-base/base-cli-process https://github.com/node-base/base-cli-process
base-cli-schema@0.1.19 MIT https://github.com/jonschlinkert/base-cli-schema https://github.com/jonschlinkert/base-cli-schema/raw/master/LICENSE node_modules\base-cli-schema\LICENSE
base-cli@0.5.0 MIT https://github.com/node-base/base-cli https://github.com/node-base/base-cli/raw/master/LICENSE node_modules\base-cli\LICENSE
base-compose@0.2.1 MIT https://github.com/node-base/base-compose https://github.com/node-base/base-compose/raw/master/LICENSE node_modules\base-compose\LICENSE
base-config-process@0.1.9 MIT https://github.com/jonschlinkert/base-config-process https://github.com/jonschlinkert/base-config-process
base-config-schema@0.1.24 MIT https://github.com/node-base/base-config-schema https://github.com/node-base/base-config-schema/raw/master/LICENSE node_modules\base-config-schema\LICENSE
base-config@0.5.2 MIT https://github.com/node-base/base-config https://github.com/node-base/base-config/raw/master/LICENSE node_modules\base-config\LICENSE
base-cwd@0.3.4 MIT https://github.com/node-base/base-cwd https://github.com/node-base/base-cwd/raw/master/LICENSE node_modules\base-cwd\LICENSE
base-data@0.6.2 MIT https://github.com/node-base/base-data https://github.com/node-base/base-data/raw/master/LICENSE node_modules\base-data\LICENSE
base-engines@0.2.1 MIT https://github.com/node-base/base-engines https://github.com/node-base/base-engines/raw/master/LICENSE node_modules\base-engines\LICENSE
base-env@0.3.1 MIT https://github.com/base/base-env https://github.com/base/base-env/raw/master/LICENSE node_modules\base-env\LICENSE
base-generators@0.4.6 MIT https://github.com/node-base/base-generators https://github.com/node-base/base-generators/raw/master/LICENSE node_modules\base-generators\LICENSE
base-helpers@0.1.1 MIT https://github.com/node-base/base-helpers https://github.com/node-base/base-helpers/raw/master/LICENSE node_modules\base-helpers\LICENSE
base-namespace@0.2.0 MIT https://github.com/jonschlinkert/base-namespace https://github.com/jonschlinkert/base-namespace/raw/master/LICENSE node_modules\base-namespace\LICENSE
base-option@0.8.4 MIT https://github.com/node-base/base-option https://github.com/node-base/base-option/raw/master/LICENSE node_modules\base-option\LICENSE
base-pkg@0.2.5 MIT https://github.com/node-base/base-pkg https://github.com/node-base/base-pkg/raw/master/LICENSE node_modules\base-pkg\LICENSE
base-plugins@0.4.13 MIT https://github.com/node-base/base-plugins https://github.com/node-base/base-plugins/raw/master/LICENSE node_modules\base-plugins\LICENSE
base-questions@0.7.4 MIT https://github.com/node-base/base-questions https://github.com/node-base/base-questions/raw/master/LICENSE node_modules\base-questions\LICENSE
base-routes@0.2.2 MIT https://github.com/node-base/base-routes https://github.com/node-base/base-routes/raw/master/LICENSE node_modules\base-routes\LICENSE
base-runtimes@0.2.0 MIT https://github.com/node-base/base-runtimes https://github.com/node-base/base-runtimes/raw/master/LICENSE node_modules\base-runtimes\LICENSE
base-store@0.4.4 MIT https://github.com/node-base/base-store https://github.com/node-base/base-store/raw/master/LICENSE node_modules\base-store\LICENSE
base-task@0.6.2 MIT https://github.com/node-base/base-task https://github.com/node-base/base-task/raw/master/LICENSE node_modules\base-task\LICENSE
base64-arraybuffer@0.1.5 MIT https://github.com/niklasvh/base64-arraybuffer https://github.com/niklasvh/base64-arraybuffer/blob/master/LICENSE-MIT node_modules\base64-arraybuffer\LICENSE-MIT
base64-js@1.3.0 MIT https://github.com/beatgammit/base64-js https://github.com/beatgammit/base64-js/raw/master/LICENSE node_modules\base64-js\LICENSE
base64id@1.0.0 MIT https://github.com/faeldt/base64id https://github.com/faeldt/base64id/raw/master/LICENSE node_modules\base64id\LICENSE
base@0.11.2 MIT https://github.com/node-base/base https://github.com/node-base/base/raw/master/LICENSE node_modules\base\LICENSE
base@0.8.1 MIT https://github.com/node-base/base https://github.com/node-base/base/raw/master/LICENSE node_modules\vinyl-item\node_modules\base\LICENSE
batch@0.6.1 MIT https://github.com/visionmedia/batch https://github.com/visionmedia/batch/raw/master/LICENSE node_modules\batch\LICENSE
bcrypt-pbkdf@1.0.2 BSD-3-Clause https://github.com/joyent/node-bcrypt-pbkdf https://github.com/joyent/node-bcrypt-pbkdf/raw/master/LICENSE node_modules\npm\node_modules\bcrypt-pbkdf\LICENSE
better-assert@1.0.2 MIT* https://github.com/visionmedia/better-assert https://github.com/visionmedia/better-assert/raw/master/Readme.md node_modules\better-assert\Readme.md
big.js@3.2.0 MIT https://github.com/MikeMcl/big.js https://github.com/MikeMcl/big.js/raw/master/LICENCE node_modules\big.js\LICENCE
big.js@5.2.2 MIT https://github.com/MikeMcl/big.js https://github.com/MikeMcl/big.js/raw/master/LICENCE node_modules\@angular-devkit\build-optimizer\node_modules\big.js\LICENCE
bin-links@1.1.2 Artistic-2.0 https://github.com/npm/bin-links https://github.com/npm/bin-links/raw/master/LICENSE node_modules\npm\node_modules\bin-links\LICENSE
binary-extensions@1.11.0 MIT https://github.com/sindresorhus/binary-extensions https://github.com/sindresorhus/binary-extensions/raw/master/license node_modules\binary-extensions\license
blob@0.0.5 MIT https://github.com/webmodules/blob https://github.com/webmodules/blob/raw/master/LICENSE node_modules\blob\LICENSE
block-stream@0.0.9 ISC https://github.com/isaacs/block-stream https://github.com/isaacs/block-stream/raw/master/LICENCE node_modules\block-stream\LICENSE
blocking-proxy@1.0.1 MIT https://github.com/angular/jasminewd https://github.com/angular/jasminewd/raw/master/LICENSE node_modules\blocking-proxy\LICENSE
bluebird@3.5.2 MIT https://github.com/petkaantonov/bluebird https://github.com/petkaantonov/bluebird/raw/master/LICENSE node_modules\bluebird\LICENSE
bluebird@3.5.3 MIT https://github.com/petkaantonov/bluebird https://github.com/petkaantonov/bluebird/raw/master/LICENSE node_modules\npm\node_modules\bluebird\LICENSE
bluebird@3.5.4 MIT https://github.com/petkaantonov/bluebird https://github.com/petkaantonov/bluebird/raw/master/LICENSE node_modules\pacote\node_modules\bluebird\LICENSE
bn.js@4.11.8 MIT https://github.com/indutny/bn.js https://github.com/indutny/bn.js
body-parser@1.18.3 MIT https://github.com/expressjs/body-parser https://github.com/expressjs/body-parser/raw/master/LICENSE node_modules\body-parser\LICENSE
bonjour@3.5.0 MIT https://github.com/watson/bonjour https://github.com/watson/bonjour/raw/master/LICENSE node_modules\bonjour\LICENSE
bootstrap@4.1.3 MIT https://github.com/twbs/bootstrap https://github.com/twbs/bootstrap/raw/master/LICENSE node_modules\bootstrap\LICENSE
boxen@1.3.0 MIT https://github.com/sindresorhus/boxen https://github.com/sindresorhus/boxen/raw/master/license node_modules\npm\node_modules\boxen\license
brace-expansion@1.1.11 MIT https://github.com/juliangruber/brace-expansion https://github.com/juliangruber/brace-expansion/raw/master/LICENSE node_modules\brace-expansion\LICENSE
braces@1.8.5 MIT https://github.com/jonschlinkert/braces https://github.com/jonschlinkert/braces/raw/master/LICENSE node_modules\glob-stream\node_modules\braces\LICENSE
braces@2.3.2 MIT https://github.com/micromatch/braces https://github.com/micromatch/braces/raw/master/LICENSE node_modules\braces\LICENSE
brorand@1.1.0 MIT https://github.com/indutny/brorand https://github.com/indutny/brorand
browserify-aes@1.2.0 MIT https://github.com/crypto-browserify/browserify-aes https://github.com/crypto-browserify/browserify-aes/raw/master/LICENSE node_modules\browserify-aes\LICENSE
browserify-cipher@1.0.1 MIT https://github.com/crypto-browserify/browserify-cipher https://github.com/crypto-browserify/browserify-cipher/raw/master/LICENSE node_modules\browserify-cipher\LICENSE
browserify-des@1.0.2 MIT https://github.com/crypto-browserify/browserify-des https://github.com/crypto-browserify/browserify-des/raw/master/license node_modules\browserify-des\license
browserify-rsa@4.0.1 MIT https://github.com/crypto-browserify/browserify-rsa https://github.com/crypto-browserify/browserify-rsa/raw/master/LICENSE node_modules\browserify-rsa\LICENSE
browserify-sign@4.0.4 ISC https://github.com/crypto-browserify/browserify-sign https://github.com/crypto-browserify/browserify-sign/raw/master/LICENSE node_modules\browserify-sign\LICENSE
browserify-zlib@0.2.0 MIT https://github.com/devongovett/browserify-zlib https://github.com/devongovett/browserify-zlib/raw/master/LICENSE node_modules\browserify-zlib\LICENSE
browserslist@4.5.5 MIT https://github.com/browserslist/browserslist https://github.com/browserslist/browserslist/raw/master/LICENSE node_modules\browserslist\LICENSE
browserstack@1.5.1 MIT* https://github.com/scottgonzalez/node-browserstack https://github.com/scottgonzalez/node-browserstack/raw/master/LICENSE-MIT.txt node_modules\browserstack\readme.md
buffer-alloc-unsafe@1.1.0 MIT https://github.com/LinusU/buffer-alloc-unsafe https://github.com/LinusU/buffer-alloc-unsafe
buffer-alloc@1.2.0 MIT https://github.com/LinusU/buffer-alloc https://github.com/LinusU/buffer-alloc
buffer-fill@1.0.0 MIT https://github.com/LinusU/buffer-fill https://github.com/LinusU/buffer-fill
buffer-from@1.0.0 MIT https://github.com/LinusU/buffer-from https://github.com/LinusU/buffer-from
buffer-from@1.1.1 MIT https://github.com/LinusU/buffer-from https://github.com/LinusU/buffer-from/raw/master/LICENSE node_modules\buffer-from\LICENSE
buffer-indexof@1.1.1 MIT https://github.com/soldair/node-buffer-indexof https://github.com/soldair/node-buffer-indexof/raw/master/LICENSE node_modules\buffer-indexof\LICENSE
buffer-xor@1.0.3 MIT https://github.com/crypto-browserify/buffer-xor https://github.com/crypto-browserify/buffer-xor/raw/master/LICENSE node_modules\buffer-xor\LICENSE
buffer@4.9.1 MIT https://github.com/feross/buffer https://github.com/feross/buffer/raw/master/LICENSE node_modules\buffer\LICENSE
builtin-modules@1.1.1 MIT https://github.com/sindresorhus/builtin-modules https://github.com/sindresorhus/builtin-modules/raw/master/license node_modules\builtin-modules\license
builtin-status-codes@3.0.0 MIT https://github.com/bendrucker/builtin-status-codes https://github.com/bendrucker/builtin-status-codes/raw/master/license node_modules\builtin-status-codes\license
builtins@1.0.3 MIT https://github.com/juliangruber/builtins https://github.com/juliangruber/builtins/raw/master/License node_modules\builtins\License
byline@5.0.0 MIT https://github.com/jahewson/node-byline https://github.com/jahewson/node-byline/raw/master/LICENSE node_modules\npm\node_modules\byline\LICENSE
byte-size@5.0.1 MIT https://github.com/75lb/byte-size https://github.com/75lb/byte-size/raw/master/LICENSE node_modules\npm\node_modules\byte-size\LICENSE
bytes@3.0.0 MIT https://github.com/visionmedia/bytes.js https://github.com/visionmedia/bytes.js/raw/master/LICENSE node_modules\bytes\LICENSE
cacache@10.0.4 ISC https://github.com/zkat/cacache https://github.com/zkat/cacache/raw/master/LICENSE.md node_modules\cacache\LICENSE.md
cacache@11.3.2 ISC https://github.com/zkat/cacache https://github.com/zkat/cacache/raw/master/LICENSE.md node_modules\pacote\node_modules\cacache\LICENSE.md
cache-base@0.8.5 MIT https://github.com/jonschlinkert/cache-base https://github.com/jonschlinkert/cache-base/raw/master/LICENSE node_modules\vinyl-item\node_modules\cache-base\LICENSE
cache-base@1.0.1 MIT https://github.com/jonschlinkert/cache-base https://github.com/jonschlinkert/cache-base/raw/master/LICENSE node_modules\cache-base\LICENSE
call-limit@1.1.0 ISC https://github.com/iarna/call-limit https://github.com/iarna/call-limit
callsite@1.0.0 MIT* node_modules\callsite\Readme.md
camel-case@3.0.0 MIT https://github.com/blakeembrey/camel-case https://github.com/blakeembrey/camel-case/raw/master/LICENSE node_modules\camel-case\LICENSE
camelcase-keys@2.1.0 MIT https://github.com/sindresorhus/camelcase-keys https://github.com/sindresorhus/camelcase-keys/raw/master/license node_modules\camelcase-keys\license
camelcase@2.1.1 MIT https://github.com/sindresorhus/camelcase https://github.com/sindresorhus/camelcase/raw/master/license node_modules\camelcase\license
camelcase@3.0.0 MIT https://github.com/sindresorhus/camelcase https://github.com/sindresorhus/camelcase/raw/master/license node_modules\yargs\node_modules\camelcase\license
camelcase@4.1.0 MIT https://github.com/sindresorhus/camelcase https://github.com/sindresorhus/camelcase/raw/master/license node_modules\npm\node_modules\camelcase\license
caniuse-lite@1.0.30000960 CC-BY-4.0 https://github.com/ben-eb/caniuse-lite https://github.com/ben-eb/caniuse-lite/raw/master/LICENSE node_modules\caniuse-lite\LICENSE
canonical-path@1.0.0 MIT https://github.com/petebacondarwin/node-canonical-path https://github.com/petebacondarwin/node-canonical-path/raw/master/LICENSE.md node_modules\canonical-path\LICENSE.md
capture-stack-trace@1.0.0 MIT https://github.com/floatdrop/capture-stack-trace https://github.com/floatdrop/capture-stack-trace
caseless@0.12.0 Apache-2.0 https://github.com/mikeal/caseless https://github.com/mikeal/caseless/raw/master/LICENSE node_modules\caseless\LICENSE
chalk@1.1.3 MIT https://github.com/chalk/chalk https://github.com/chalk/chalk/raw/master/license node_modules\node-sass\node_modules\chalk\license
chalk@2.4.1 MIT https://github.com/chalk/chalk https://github.com/chalk/chalk/raw/master/license node_modules\chalk\license
chalk@2.4.2 MIT https://github.com/chalk/chalk https://github.com/chalk/chalk/raw/master/license node_modules\postcss\node_modules\chalk\license
chardet@0.7.0 MIT https://github.com/runk/node-chardet https://github.com/runk/node-chardet/raw/master/LICENSE node_modules\chardet\LICENSE
chart.js@2.8.0 MIT https://github.com/chartjs/Chart.js https://github.com/chartjs/Chart.js/raw/master/LICENSE.md node_modules\chart.js\LICENSE.md
chartjs-color-string@0.6.0 MIT https://github.com/chartjs/chartjs-color-string https://github.com/chartjs/chartjs-color-string/raw/master/LICENSE node_modules\chartjs-color-string\LICENSE
chartjs-color@2.3.0 MIT https://github.com/chartjs/chartjs-color https://github.com/chartjs/chartjs-color/raw/master/LICENSE node_modules\chartjs-color\LICENSE
chokidar@2.0.4 MIT https://github.com/paulmillr/chokidar https://github.com/paulmillr/chokidar
chokidar@2.1.5 MIT https://github.com/paulmillr/chokidar https://github.com/paulmillr/chokidar
chownr@1.0.1 ISC https://github.com/isaacs/chownr https://github.com/isaacs/chownr/raw/master/LICENSE node_modules\chownr\LICENSE
chownr@1.1.1 ISC https://github.com/isaacs/chownr https://github.com/isaacs/chownr/raw/master/LICENSE node_modules\pacote\node_modules\chownr\LICENSE
chrome-trace-event@1.0.0 MIT github.com:samccone/chrome-trace-event github.com:samccone/chrome-trace-event/raw/master/LICENSE.txt node_modules\chrome-trace-event\LICENSE.txt
ci-info@1.6.0 MIT https://github.com/watson/ci-info https://github.com/watson/ci-info/raw/master/LICENSE node_modules\npm\node_modules\is-ci\node_modules\ci-info\LICENSE
ci-info@2.0.0 MIT https://github.com/watson/ci-info https://github.com/watson/ci-info/raw/master/LICENSE node_modules\npm\node_modules\ci-info\LICENSE
cidr-regex@2.0.10 BSD-2-Clause https://github.com/silverwind/cidr-regex https://github.com/silverwind/cidr-regex/raw/master/LICENSE node_modules\npm\node_modules\cidr-regex\LICENSE
cipher-base@1.0.4 MIT https://github.com/crypto-browserify/cipher-base https://github.com/crypto-browserify/cipher-base/raw/master/LICENSE node_modules\cipher-base\LICENSE
circular-dependency-plugin@5.0.2 ISC https://github.com/aackerman/circular-dependency-plugin https://github.com/aackerman/circular-dependency-plugin/raw/master/LICENSE node_modules\circular-dependency-plugin\LICENSE
class-utils@0.3.6 MIT https://github.com/jonschlinkert/class-utils https://github.com/jonschlinkert/class-utils/raw/master/LICENSE node_modules\class-utils\LICENSE
clean-css@4.2.1 MIT https://github.com/jakubpawlowicz/clean-css https://github.com/jakubpawlowicz/clean-css/raw/master/LICENSE node_modules\clean-css\LICENSE
cli-boxes@1.0.0 MIT https://github.com/sindresorhus/cli-boxes https://github.com/sindresorhus/cli-boxes/raw/master/license node_modules\npm\node_modules\cli-boxes\license
cli-columns@3.1.2 MIT https://github.com/shannonmoeller/cli-columns https://github.com/shannonmoeller/cli-columns/raw/master/LICENSE node_modules\npm\node_modules\cli-columns\LICENSE
cli-cursor@1.0.2 MIT https://github.com/sindresorhus/cli-cursor https://github.com/sindresorhus/cli-cursor/raw/master/license node_modules\cli-cursor\license
cli-cursor@2.1.0 MIT https://github.com/sindresorhus/cli-cursor https://github.com/sindresorhus/cli-cursor/raw/master/license node_modules\inquirer\node_modules\cli-cursor\license
cli-table3@0.5.1 MIT https://github.com/cli-table/cli-table3 https://github.com/cli-table/cli-table3/raw/master/LICENSE node_modules\npm\node_modules\cli-table3\LICENSE
cli-width@1.1.1 ISC https://github.com/knownasilya/cli-width https://github.com/knownasilya/cli-width/raw/master/LICENSE node_modules\cli-width\LICENSE
cli-width@2.2.0 ISC https://github.com/knownasilya/cli-width https://github.com/knownasilya/cli-width/raw/master/LICENSE node_modules\inquirer\node_modules\cli-width\LICENSE
cliui@3.2.0 ISC https://github.com/yargs/cliui https://github.com/yargs/cliui/raw/master/LICENSE.txt node_modules\cliui\LICENSE.txt
cliui@4.1.0 ISC https://github.com/yargs/cliui https://github.com/yargs/cliui/raw/master/LICENSE.txt node_modules\npm\node_modules\cliui\LICENSE.txt
clone-buffer@1.0.0 MIT https://github.com/gulpjs/clone-buffer https://github.com/gulpjs/clone-buffer/raw/master/LICENSE node_modules\clone-buffer\LICENSE
clone-deep@0.2.4 MIT https://github.com/jonschlinkert/clone-deep https://github.com/jonschlinkert/clone-deep/raw/master/LICENSE node_modules\merge-deep\node_modules\clone-deep\LICENSE
clone-deep@2.0.2 MIT https://github.com/jonschlinkert/clone-deep https://github.com/jonschlinkert/clone-deep/raw/master/LICENSE node_modules\clone-deep\LICENSE
clone-stats@0.0.1 MIT https://github.com/hughsk/clone-stats https://github.com/hughsk/clone-stats/raw/master/LICENSE.md node_modules\clone-stats\LICENSE.md
clone-stats@1.0.0 MIT https://github.com/hughsk/clone-stats https://github.com/hughsk/clone-stats/raw/master/LICENSE.md node_modules\vinyl-item\node_modules\clone-stats\LICENSE.md
clone@1.0.4 MIT https://github.com/pvorb/node-clone https://github.com/pvorb/node-clone/raw/master/LICENSE node_modules\npm\node_modules\clone\LICENSE
clone@2.1.2 MIT https://github.com/pvorb/node-clone https://github.com/pvorb/node-clone/raw/master/LICENSE node_modules\base-config-schema\node_modules\clone\LICENSE
cloneable-readable@1.1.2 MIT https://github.com/mcollina/cloneable-readable https://github.com/mcollina/cloneable-readable/raw/master/LICENSE node_modules\cloneable-readable\LICENSE
cmd-shim@2.0.2 BSD-2-Clause https://github.com/ForbesLindesay/cmd-shim https://github.com/ForbesLindesay/cmd-shim/raw/master/LICENSE node_modules\npm\node_modules\cmd-shim\LICENSE
co@4.6.0 MIT https://github.com/tj/co https://github.com/tj/co/raw/master/LICENSE node_modules\co\LICENSE
code-point-at@1.1.0 MIT https://github.com/sindresorhus/code-point-at https://github.com/sindresorhus/code-point-at/raw/master/license node_modules\code-point-at\license
codelyzer@4.5.0 MIT https://github.com/mgechev/codelyzer https://github.com/mgechev/codelyzer
collection-visit@0.2.3 MIT https://github.com/jonschlinkert/collection-visit https://github.com/jonschlinkert/collection-visit/raw/master/LICENSE node_modules\engine\node_modules\collection-visit\LICENSE
collection-visit@1.0.0 MIT https://github.com/jonschlinkert/collection-visit https://github.com/jonschlinkert/collection-visit/raw/master/LICENSE node_modules\collection-visit\LICENSE
color-convert@0.5.3 UNKNOWN https://github.com/harthur/color-convert https://github.com/harthur/color-convert/raw/master/LICENSE node_modules\chartjs-color\node_modules\color-convert\LICENSE
color-convert@1.9.1 MIT https://github.com/Qix-/color-convert https://github.com/Qix-/color-convert/raw/master/LICENSE node_modules\npm\node_modules\color-convert\LICENSE
color-convert@1.9.3 MIT https://github.com/Qix-/color-convert https://github.com/Qix-/color-convert/raw/master/LICENSE node_modules\color-convert\LICENSE
color-name@1.1.3 MIT https://github.com/dfcreative/color-name https://github.com/dfcreative/color-name/raw/master/LICENSE node_modules\color-name\LICENSE
colors@1.1.2 MIT https://github.com/Marak/colors.js https://github.com/Marak/colors.js/raw/master/LICENSE node_modules\colors\LICENSE
colors@1.3.3 MIT https://github.com/Marak/colors.js https://github.com/Marak/colors.js/raw/master/LICENSE node_modules\npm\node_modules\colors\LICENSE
columnify@1.5.4 MIT https://github.com/timoxley/columnify https://github.com/timoxley/columnify/raw/master/LICENSE node_modules\npm\node_modules\columnify\LICENSE
combined-stream@1.0.6 MIT https://github.com/felixge/node-combined-stream https://github.com/felixge/node-combined-stream/raw/master/License node_modules\combined-stream\License
commander@2.17.1 MIT https://github.com/tj/commander.js https://github.com/tj/commander.js/raw/master/LICENSE node_modules\commander\LICENSE
commander@2.20.0 MIT https://github.com/tj/commander.js https://github.com/tj/commander.js/raw/master/LICENSE node_modules\terser\node_modules\commander\LICENSE
common-config@0.1.0 MIT https://github.com/jonschlinkert/common-config https://github.com/jonschlinkert/common-config/raw/master/LICENSE node_modules\common-config\LICENSE
commondir@1.0.1 MIT https://github.com/substack/node-commondir https://github.com/substack/node-commondir/raw/master/LICENSE node_modules\commondir\LICENSE
component-bind@1.0.0 MIT* https://github.com/component/bind https://github.com/component/bind/raw/master/Readme.md node_modules\component-bind\Readme.md
component-emitter@1.2.1 MIT https://github.com/component/emitter https://github.com/component/emitter/raw/master/LICENSE node_modules\component-emitter\LICENSE
component-inherit@0.0.3 MIT* https://github.com/component/inherit https://github.com/component/inherit/raw/master/Readme.md node_modules\component-inherit\Readme.md
composer@0.13.0 MIT https://github.com/doowb/composer https://github.com/doowb/composer/raw/master/LICENSE node_modules\composer\LICENSE
compressible@2.0.16 MIT https://github.com/jshttp/compressible https://github.com/jshttp/compressible/raw/master/LICENSE node_modules\compressible\LICENSE
compression@1.7.4 MIT https://github.com/expressjs/compression https://github.com/expressjs/compression/raw/master/LICENSE node_modules\compression\LICENSE
concat-map@0.0.1 MIT https://github.com/substack/node-concat-map https://github.com/substack/node-concat-map/raw/master/LICENSE node_modules\concat-map\LICENSE
concat-stream@1.6.2 MIT https://github.com/maxogden/concat-stream https://github.com/maxogden/concat-stream/raw/master/LICENSE node_modules\concat-stream\LICENSE
config-chain@1.1.12 MIT https://github.com/dominictarr/config-chain https://raw.githubusercontent.com/dominictarr/config-chain/master/LICENCE node_modules\npm\node_modules\config-chain\LICENCE
configstore@3.1.2 BSD-2-Clause https://github.com/yeoman/configstore https://github.com/yeoman/configstore/raw/master/license node_modules\npm\node_modules\configstore\license
connect-history-api-fallback@1.6.0 MIT https://github.com/bripkens/connect-history-api-fallback https://github.com/bripkens/connect-history-api-fallback/raw/master/LICENSE node_modules\connect-history-api-fallback\LICENSE
connect@3.6.6 MIT https://github.com/senchalabs/connect https://github.com/senchalabs/connect/raw/master/LICENSE node_modules\connect\LICENSE
console-browserify@1.1.0 MIT https://github.com/Raynos/console-browserify http://github.com/Raynos/console-browserify/raw/master/LICENSE node_modules\console-browserify\LICENCE
console-control-strings@1.1.0 ISC https://github.com/iarna/console-control-strings https://github.com/iarna/console-control-strings/raw/master/LICENSE node_modules\console-control-strings\LICENSE
constants-browserify@1.0.0 MIT https://github.com/juliangruber/constants-browserify https://github.com/juliangruber/constants-browserify
contains-path@0.1.0 MIT https://github.com/jonschlinkert/contains-path https://github.com/jonschlinkert/contains-path/raw/master/LICENSE node_modules\contains-path\LICENSE
content-disposition@0.5.2 MIT https://github.com/jshttp/content-disposition https://github.com/jshttp/content-disposition/raw/master/LICENSE node_modules\content-disposition\LICENSE
content-type@1.0.4 MIT https://github.com/jshttp/content-type https://github.com/jshttp/content-type/raw/master/LICENSE node_modules\content-type\LICENSE
convert-source-map@1.6.0 MIT https://github.com/thlorenz/convert-source-map https://github.com/thlorenz/convert-source-map/raw/master/LICENSE node_modules\convert-source-map\LICENSE
cookie-signature@1.0.6 MIT https://github.com/visionmedia/node-cookie-signature https://github.com/visionmedia/node-cookie-signature
cookie@0.3.1 MIT https://github.com/jshttp/cookie https://github.com/jshttp/cookie/raw/master/LICENSE node_modules\cookie\LICENSE
copy-concurrently@1.0.5 ISC https://github.com/npm/copy-concurrently https://github.com/npm/copy-concurrently/raw/master/LICENSE node_modules\copy-concurrently\LICENSE
copy-descriptor@0.1.1 MIT https://github.com/jonschlinkert/copy-descriptor https://github.com/jonschlinkert/copy-descriptor/raw/master/LICENSE node_modules\copy-descriptor\LICENSE
copy-task@0.1.0 MIT https://github.com/doowb/copy-task https://github.com/doowb/copy-task/raw/master/LICENSE node_modules\copy-task\LICENSE
copy-webpack-plugin@4.6.0 MIT https://github.com/webpack-contrib/copy-webpack-plugin https://github.com/webpack-contrib/copy-webpack-plugin/raw/master/LICENSE node_modules\copy-webpack-plugin\LICENSE
core-js@2.3.0 MIT https://github.com/zloirock/core-js https://github.com/zloirock/core-js/raw/master/LICENSE node_modules\jszip\node_modules\core-js\LICENSE
core-js@2.5.7 MIT https://github.com/zloirock/core-js https://github.com/zloirock/core-js/raw/master/LICENSE node_modules\core-js\LICENSE
core-util-is@1.0.2 MIT https://github.com/isaacs/core-util-is https://github.com/isaacs/core-util-is/raw/master/LICENSE node_modules\core-util-is\LICENSE
cosmiconfig@4.0.0 MIT https://github.com/davidtheclark/cosmiconfig https://github.com/davidtheclark/cosmiconfig/raw/master/LICENSE node_modules\cosmiconfig\LICENSE
create-ecdh@4.0.3 MIT https://github.com/crypto-browserify/createECDH https://github.com/crypto-browserify/createECDH/raw/master/LICENSE node_modules\create-ecdh\LICENSE
create-error-class@3.0.2 MIT https://github.com/floatdrop/create-error-class https://github.com/floatdrop/create-error-class/raw/master/license node_modules\npm\node_modules\create-error-class\license
create-hash@1.2.0 MIT https://github.com/crypto-browserify/createHash https://github.com/crypto-browserify/createHash/raw/master/LICENSE node_modules\create-hash\LICENSE
create-hmac@1.1.7 MIT https://github.com/crypto-browserify/createHmac https://github.com/crypto-browserify/createHmac/raw/master/LICENSE node_modules\create-hmac\LICENSE
cross-spawn@3.0.1 MIT https://github.com/IndigoUnited/node-cross-spawn https://github.com/IndigoUnited/node-cross-spawn/raw/master/LICENSE node_modules\cross-spawn\LICENSE
cross-spawn@5.1.0 MIT https://github.com/IndigoUnited/node-cross-spawn https://github.com/IndigoUnited/node-cross-spawn/raw/master/LICENSE node_modules\npm\node_modules\cross-spawn\LICENSE
cross-spawn@6.0.5 MIT https://github.com/moxystudio/node-cross-spawn https://github.com/moxystudio/node-cross-spawn/raw/master/LICENSE node_modules\execa\node_modules\cross-spawn\LICENSE
crypto-browserify@3.12.0 MIT https://github.com/crypto-browserify/crypto-browserify https://github.com/crypto-browserify/crypto-browserify/raw/master/LICENSE node_modules\crypto-browserify\LICENSE
crypto-random-string@1.0.0 MIT https://github.com/sindresorhus/crypto-random-string https://github.com/sindresorhus/crypto-random-string/raw/master/license node_modules\npm\node_modules\crypto-random-string\license
csetweb-ng@9.0.0 MIT License.txt
css-parse@1.7.0 MIT https://github.com/visionmedia/css-parse https://github.com/visionmedia/css-parse
css-selector-tokenizer@0.7.1 MIT https://github.com/css-modules/css-selector-tokenizer https://github.com/css-modules/css-selector-tokenizer/raw/master/LICENSE node_modules\css-selector-tokenizer\LICENSE
cssauron@1.4.0 MIT https://github.com/chrisdickinson/cssauron https://github.com/chrisdickinson/cssauron
cssesc@0.1.0 MIT https://github.com/mathiasbynens/cssesc http://mths.be/mit node_modules\cssesc\LICENSE-MIT.txt
currently-unhandled@0.4.1 MIT https://github.com/jamestalmage/currently-unhandled https://github.com/jamestalmage/currently-unhandled/raw/master/license node_modules\currently-unhandled\license
custom-event@1.0.1 MIT https://github.com/webmodules/custom-event https://github.com/webmodules/custom-event/raw/master/LICENSE node_modules\custom-event\LICENSE
cwd@0.10.0 MIT https://github.com/jonschlinkert/cwd https://github.com/jonschlinkert/cwd/raw/master/LICENSE node_modules\base-env\node_modules\cwd\LICENSE
cwd@0.9.1 MIT https://github.com/jonschlinkert/cwd https://github.com/jonschlinkert/cwd/raw/master/LICENSE node_modules\cwd\LICENSE
cyclist@0.2.2 MIT* https://github.com/mafintosh/cyclist https://github.com/mafintosh/cyclist/raw/master/README.md node_modules\cyclist\README.md
dashdash@1.14.1 MIT https://github.com/trentm/node-dashdash https://github.com/trentm/node-dashdash/raw/master/LICENSE.txt node_modules\dashdash\LICENSE.txt
data-store@0.16.1 MIT https://github.com/jonschlinkert/data-store https://github.com/jonschlinkert/data-store/raw/master/LICENSE node_modules\data-store\LICENSE
datalist-polyfill@1.23.2 MIT https://github.com/mfranzke/datalist-polyfill https://github.com/mfranzke/datalist-polyfill/raw/master/LICENSE node_modules\datalist-polyfill\LICENSE
date-format@2.0.0 MIT https://github.com/nomiddlename/date-format https://github.com/nomiddlename/date-format/raw/master/LICENSE node_modules\date-format\LICENSE
date-now@0.1.4 MIT https://github.com/Colingo/date-now http://github.com/Colingo/date-now/raw/master/LICENSE node_modules\date-now\LICENCE
debug@2.6.9 MIT https://github.com/visionmedia/debug https://github.com/visionmedia/debug/raw/master/LICENSE node_modules\debug\LICENSE
debug@3.1.0 MIT https://github.com/visionmedia/debug https://github.com/visionmedia/debug/raw/master/LICENSE node_modules\http-proxy-agent\node_modules\debug\LICENSE
debug@3.2.6 MIT https://github.com/visionmedia/debug https://github.com/visionmedia/debug/raw/master/LICENSE node_modules\istanbul-api\node_modules\debug\LICENSE
debug@4.1.1 MIT https://github.com/visionmedia/debug https://github.com/visionmedia/debug/raw/master/LICENSE node_modules\log4js\node_modules\debug\LICENSE
debuglog@1.0.1 MIT https://github.com/sam-github/node-debuglog https://github.com/sam-github/node-debuglog/raw/master/LICENSE node_modules\npm\node_modules\debuglog\LICENSE
decamelize@1.2.0 MIT https://github.com/sindresorhus/decamelize https://github.com/sindresorhus/decamelize/raw/master/license node_modules\decamelize\license
decamelize@2.0.0 MIT https://github.com/sindresorhus/decamelize https://github.com/sindresorhus/decamelize/raw/master/license node_modules\webpack-dev-server\node_modules\decamelize\license
decode-uri-component@0.2.0 MIT https://github.com/SamVerschueren/decode-uri-component https://github.com/SamVerschueren/decode-uri-component/raw/master/license node_modules\decode-uri-component\license
deep-bind@0.3.0 MIT https://github.com/jonschlinkert/deep-bind https://github.com/jonschlinkert/deep-bind/raw/master/LICENSE node_modules\deep-bind\LICENSE
deep-equal@1.0.1 MIT https://github.com/substack/node-deep-equal https://github.com/substack/node-deep-equal/raw/master/LICENSE node_modules\deep-equal\LICENSE
deep-extend@0.5.1 MIT https://github.com/unclechu/node-deep-extend https://github.com/unclechu/node-deep-extend/raw/master/LICENSE node_modules\npm\node_modules\deep-extend\LICENSE
default-compare@1.0.0 MIT https://github.com/doowb/default-compare https://github.com/doowb/default-compare/raw/master/LICENSE node_modules\default-compare\LICENSE
default-gateway@2.7.2 BSD-2-Clause https://github.com/silverwind/default-gateway https://github.com/silverwind/default-gateway/raw/master/LICENSE node_modules\default-gateway\LICENSE
default-require-extensions@1.0.0 MIT https://github.com/jamestalmage/default-require-extensions https://github.com/jamestalmage/default-require-extensions/raw/master/license node_modules\istanbul-api\node_modules\default-require-extensions\license
defaults-deep@0.2.4 MIT https://github.com/jonschlinkert/defaults-deep https://github.com/jonschlinkert/defaults-deep/raw/master/LICENSE node_modules\defaults-deep\LICENSE
defaults@1.0.3 MIT https://github.com/tmpvar/defaults https://github.com/tmpvar/defaults/raw/master/LICENSE node_modules\npm\node_modules\defaults\LICENSE
define-property@0.2.5 MIT https://github.com/jonschlinkert/define-property https://github.com/jonschlinkert/define-property/raw/master/LICENSE node_modules\class-utils\node_modules\define-property\LICENSE
define-property@1.0.0 MIT https://github.com/jonschlinkert/define-property https://github.com/jonschlinkert/define-property/raw/master/LICENSE node_modules\base\node_modules\define-property\LICENSE
define-property@2.0.2 MIT https://github.com/jonschlinkert/define-property https://github.com/jonschlinkert/define-property/raw/master/LICENSE node_modules\define-property\LICENSE
del@2.2.2 MIT https://github.com/sindresorhus/del https://github.com/sindresorhus/del/raw/master/license node_modules\protractor\node_modules\del\license
del@3.0.0 MIT https://github.com/sindresorhus/del https://github.com/sindresorhus/del/raw/master/license node_modules\del\license
delayed-stream@1.0.0 MIT https://github.com/felixge/node-delayed-stream https://github.com/felixge/node-delayed-stream/raw/master/License node_modules\delayed-stream\License
delegates@1.0.0 MIT https://github.com/visionmedia/node-delegates https://github.com/visionmedia/node-delegates/raw/master/License node_modules\delegates\License
delimiter-regex@1.3.1 MIT https://github.com/jonschlinkert/delimiter-regex https://github.com/jonschlinkert/delimiter-regex/blob/master/LICENSE node_modules\layouts\node_modules\delimiter-regex\LICENSE
delimiter-regex@2.0.0 MIT https://github.com/jonschlinkert/delimiter-regex https://github.com/jonschlinkert/delimiter-regex/raw/master/LICENSE node_modules\delimiter-regex\LICENSE
depd@1.1.2 MIT https://github.com/dougwilson/nodejs-depd https://github.com/dougwilson/nodejs-depd/raw/master/LICENSE node_modules\depd\LICENSE
dependency-graph@0.7.2 MIT https://github.com/jriecken/dependency-graph http://github.com/jriecken/dependency-graph/raw/master/LICENSE node_modules\dependency-graph\LICENSE
des.js@1.0.0 MIT https://github.com/indutny/des.js https://github.com/indutny/des.js
destroy@1.0.4 MIT https://github.com/stream-utils/destroy https://github.com/stream-utils/destroy/raw/master/LICENSE node_modules\destroy\LICENSE
detect-indent@4.0.0 MIT https://github.com/sindresorhus/detect-indent https://github.com/sindresorhus/detect-indent/raw/master/license node_modules\detect-indent\license
detect-indent@5.0.0 MIT https://github.com/sindresorhus/detect-indent https://github.com/sindresorhus/detect-indent/raw/master/license node_modules\npm\node_modules\detect-indent\license
detect-newline@2.1.0 MIT https://github.com/sindresorhus/detect-newline https://github.com/sindresorhus/detect-newline/raw/master/license node_modules\npm\node_modules\detect-newline\license
detect-node@2.0.4 ISC https://github.com/iliakan/detect-node https://github.com/iliakan/detect-node/raw/master/LICENSE node_modules\detect-node\LICENSE
dezalgo@1.0.3 ISC https://github.com/npm/dezalgo https://github.com/npm/dezalgo/raw/master/LICENSE node_modules\npm\node_modules\dezalgo\LICENSE
di@0.0.1 MIT https://github.com/vojtajina/node-di https://github.com/vojtajina/node-di/raw/master/LICENSE node_modules\di\LICENSE
diff@3.5.0 BSD-3-Clause https://github.com/kpdecker/jsdiff https://github.com/kpdecker/jsdiff/raw/master/LICENSE node_modules\diff\LICENSE
diffie-hellman@5.0.3 MIT https://github.com/crypto-browserify/diffie-hellman https://github.com/crypto-browserify/diffie-hellman/raw/master/LICENSE node_modules\diffie-hellman\LICENSE
dir-glob@2.2.2 MIT https://github.com/kevva/dir-glob https://github.com/kevva/dir-glob/raw/master/license node_modules\dir-glob\license
dns-equal@1.0.0 MIT https://github.com/watson/dns-equal https://github.com/watson/dns-equal/raw/master/LICENSE node_modules\dns-equal\LICENSE
dns-packet@1.3.1 MIT https://github.com/mafintosh/dns-packet https://github.com/mafintosh/dns-packet/raw/master/LICENSE node_modules\dns-packet\LICENSE
dns-txt@2.0.2 MIT https://github.com/watson/dns-txt https://github.com/watson/dns-txt/raw/master/LICENSE node_modules\dns-txt\LICENSE
document-register-element@1.13.1 ISC https://github.com/WebReflection/document-register-element https://github.com/WebReflection/document-register-element/raw/master/LICENSE.txt node_modules\document-register-element\LICENSE.txt
dom-serialize@2.2.1 MIT https://github.com/webmodules/dom-serialize https://github.com/webmodules/dom-serialize
domain-browser@1.2.0 MIT https://github.com/bevry/domain-browser https://github.com/bevry/domain-browser/raw/master/LICENSE.md node_modules\domain-browser\LICENSE.md
domino@2.1.0 BSD-2-Clause https://github.com/fgnass/domino https://github.com/fgnass/domino/raw/master/LICENSE node_modules\domino\LICENSE
dot-prop@4.2.0 MIT https://github.com/sindresorhus/dot-prop https://github.com/sindresorhus/dot-prop/raw/master/license node_modules\npm\node_modules\dot-prop\license
dotenv@5.0.1 BSD-2-Clause https://github.com/motdotla/dotenv https://github.com/motdotla/dotenv/raw/master/LICENSE node_modules\npm\node_modules\dotenv\LICENSE
duplexer3@0.1.4 BSD-3-Clause https://github.com/floatdrop/duplexer3 https://github.com/floatdrop/duplexer3/raw/master/LICENSE.md node_modules\npm\node_modules\duplexer3\LICENSE.md
duplexer@0.1.1 MIT https://github.com/Raynos/duplexer http://github.com/Raynos/duplexer/raw/master/LICENSE node_modules\duplexer\LICENCE
duplexify@3.6.0 MIT https://github.com/mafintosh/duplexify https://github.com/mafintosh/duplexify/raw/master/LICENSE node_modules\duplexify\LICENSE
ecc-jsbn@0.1.2 MIT https://github.com/quartzjer/ecc-jsbn https://github.com/quartzjer/ecc-jsbn/raw/master/LICENSE node_modules\npm\node_modules\ecc-jsbn\LICENSE
editor@1.0.0 MIT https://github.com/substack/node-editor https://github.com/substack/node-editor/raw/master/LICENSE node_modules\npm\node_modules\editor\LICENSE
ee-first@1.1.1 MIT https://github.com/jonathanong/ee-first https://github.com/jonathanong/ee-first/raw/master/LICENSE node_modules\ee-first\LICENSE
electron-to-chromium@1.3.124 ISC https://github.com/kilian/electron-to-chromium https://github.com/kilian/electron-to-chromium/raw/master/LICENSE node_modules\electron-to-chromium\LICENSE
elliptic@6.4.1 MIT https://github.com/indutny/elliptic https://github.com/indutny/elliptic
emojis-list@2.1.0 MIT https://github.com/kikobeats/emojis-list https://github.com/kikobeats/emojis-list/raw/master/LICENSE.md node_modules\emojis-list\LICENSE.md
empty-dir@0.2.1 MIT https://github.com/js-cli/js-empty-dir https://github.com/js-cli/js-empty-dir/raw/master/LICENSE node_modules\empty-dir\LICENSE
en-route@0.7.5 MIT https://github.com/jonschlinkert/en-route https://github.com/jonschlinkert/en-route/raw/master/LICENSE node_modules\en-route\LICENSE
encodeurl@1.0.2 MIT https://github.com/pillarjs/encodeurl https://github.com/pillarjs/encodeurl/raw/master/LICENSE node_modules\encodeurl\LICENSE
encoding@0.1.12 MIT https://github.com/andris9/encoding https://github.com/andris9/encoding/raw/master/LICENSE node_modules\encoding\LICENSE
end-of-stream@0.1.5 MIT https://github.com/mafintosh/end-of-stream https://github.com/mafintosh/end-of-stream
end-of-stream@1.4.1 MIT https://github.com/mafintosh/end-of-stream https://github.com/mafintosh/end-of-stream/raw/master/LICENSE node_modules\end-of-stream\LICENSE
engine-base@0.1.3 MIT https://github.com/jonschlinkert/engine-base https://github.com/jonschlinkert/engine-base/raw/master/LICENSE node_modules\engine-base\LICENSE
engine-cache@0.19.4 MIT https://github.com/jonschlinkert/engine-cache https://github.com/jonschlinkert/engine-cache/raw/master/LICENSE node_modules\engine-cache\LICENSE
engine-utils@0.1.1 MIT https://github.com/jonschlinkert/engine-utils https://github.com/jonschlinkert/engine-utils/blob/master/LICENSE node_modules\engine-utils\LICENSE
engine.io-client@3.2.1 MIT https://github.com/socketio/engine.io-client https://github.com/socketio/engine.io-client/raw/master/LICENSE node_modules\engine.io-client\LICENSE
engine.io-parser@2.1.3 MIT https://github.com/socketio/engine.io-parser https://github.com/socketio/engine.io-parser/raw/master/LICENSE node_modules\engine.io-parser\LICENSE
engine.io@3.2.1 MIT https://github.com/socketio/engine.io https://github.com/socketio/engine.io/raw/master/LICENSE node_modules\engine.io\LICENSE
engine@0.1.12 MIT https://github.com/jonschlinkert/engine https://github.com/jonschlinkert/engine/raw/master/LICENSE node_modules\engine\LICENSE
enhanced-resolve@4.1.0 MIT https://github.com/webpack/enhanced-resolve http://www.opensource.org/licenses/mit-license.php node_modules\enhanced-resolve\LICENSE
ent@2.2.0 MIT https://github.com/substack/node-ent https://github.com/substack/node-ent/raw/master/LICENSE node_modules\ent\LICENSE
err-code@1.1.2 MIT https://github.com/IndigoUnited/js-err-code https://github.com/IndigoUnited/js-err-code
errno@0.1.7 MIT https://github.com/rvagg/node-errno https://github.com/rvagg/node-errno
error-ex@1.3.2 MIT https://github.com/qix-/node-error-ex https://github.com/qix-/node-error-ex/raw/master/LICENSE node_modules\error-ex\LICENSE
error-symbol@0.1.0 MIT https://github.com/jonschlinkert/error-symbol https://github.com/jonschlinkert/error-symbol/raw/master/LICENSE node_modules\error-symbol\LICENSE
es6-promise@3.0.2 MIT https://github.com/jakearchibald/ES6-Promises https://github.com/jakearchibald/ES6-Promises/raw/master/LICENSE node_modules\jszip\node_modules\es6-promise\LICENSE
es6-promise@4.2.4 MIT https://github.com/stefanpenner/es6-promise https://github.com/stefanpenner/es6-promise/raw/master/LICENSE node_modules\es6-promise\LICENSE
es6-promise@4.2.6 MIT https://github.com/stefanpenner/es6-promise https://github.com/stefanpenner/es6-promise/raw/master/LICENSE node_modules\npm\node_modules\es6-promise\LICENSE
es6-promisify@5.0.0 MIT https://github.com/digitaldesignlabs/es6-promisify https://github.com/digitaldesignlabs/es6-promisify
escape-html@1.0.3 MIT https://github.com/component/escape-html https://github.com/component/escape-html/raw/master/LICENSE node_modules\escape-html\LICENSE
escape-string-regexp@1.0.5 MIT https://github.com/sindresorhus/escape-string-regexp https://github.com/sindresorhus/escape-string-regexp/raw/master/license node_modules\escape-string-regexp\license
eslint-scope@4.0.0 BSD-2-Clause https://github.com/eslint/eslint-scope https://github.com/eslint/eslint-scope/raw/master/LICENSE node_modules\eslint-scope\LICENSE
esprima@4.0.1 BSD-2-Clause https://github.com/jquery/esprima https://github.com/jquery/esprima/raw/master/LICENSE.BSD node_modules\esprima\LICENSE.BSD
esrecurse@4.2.1 BSD-2-Clause https://github.com/estools/esrecurse https://github.com/estools/esrecurse
estraverse@4.2.0 BSD-2-Clause https://github.com/estools/estraverse https://github.com/estools/estraverse/raw/master/LICENSE.BSD node_modules\esrecurse\node_modules\estraverse\LICENSE.BSD
esutils@2.0.2 BSD https://github.com/estools/esutils http://github.com/estools/esutils/raw/master/LICENSE.BSD node_modules\esutils\LICENSE.BSD
etag@1.8.1 MIT https://github.com/jshttp/etag https://github.com/jshttp/etag/raw/master/LICENSE node_modules\etag\LICENSE
eventemitter3@3.1.0 MIT https://github.com/primus/eventemitter3 https://github.com/primus/eventemitter3/raw/master/LICENSE node_modules\eventemitter3\LICENSE
events@1.1.1 MIT https://github.com/Gozala/events https://github.com/Gozala/events/raw/master/LICENSE node_modules\events\LICENSE
eventsource@1.0.7 MIT https://github.com/EventSource/eventsource https://github.com/EventSource/eventsource/raw/master/LICENSE node_modules\eventsource\LICENSE
evp_bytestokey@1.0.3 MIT https://github.com/crypto-browserify/EVP_BytesToKey https://github.com/crypto-browserify/EVP_BytesToKey/raw/master/LICENSE node_modules\evp_bytestokey\LICENSE
execa@0.10.0 MIT https://github.com/sindresorhus/execa https://github.com/sindresorhus/execa/raw/master/license node_modules\execa\license
execa@0.7.0 MIT https://github.com/sindresorhus/execa https://github.com/sindresorhus/execa/raw/master/license node_modules\npm\node_modules\execa\license
execa@1.0.0 MIT https://github.com/sindresorhus/execa https://github.com/sindresorhus/execa/raw/master/license node_modules\webpack-dev-server\node_modules\execa\license
exit-hook@1.1.1 MIT https://github.com/sindresorhus/exit-hook https://github.com/sindresorhus/exit-hook
exit@0.1.2 MIT https://github.com/cowboy/node-exit https://github.com/cowboy/node-exit/blob/master/LICENSE-MIT node_modules\exit\LICENSE-MIT
expand-args@0.4.3 MIT https://github.com/jonschlinkert/expand-args https://github.com/jonschlinkert/expand-args/raw/master/LICENSE node_modules\expand-args\LICENSE
expand-brackets@0.1.5 MIT https://github.com/jonschlinkert/expand-brackets https://github.com/jonschlinkert/expand-brackets/raw/master/LICENSE node_modules\glob-stream\node_modules\expand-brackets\LICENSE
expand-brackets@2.1.4 MIT https://github.com/jonschlinkert/expand-brackets https://github.com/jonschlinkert/expand-brackets/raw/master/LICENSE node_modules\expand-brackets\LICENSE
expand-object@0.4.2 MIT https://github.com/jonschlinkert/expand-object https://github.com/jonschlinkert/expand-object/raw/master/LICENSE node_modules\expand-object\LICENSE
expand-pkg@0.1.9 MIT https://github.com/jonschlinkert/expand-pkg https://github.com/jonschlinkert/expand-pkg/raw/master/LICENSE node_modules\expand-pkg\LICENSE
expand-range@1.8.2 MIT https://github.com/jonschlinkert/expand-range https://github.com/jonschlinkert/expand-range/raw/master/LICENSE node_modules\expand-range\LICENSE
expand-tilde@1.2.2 MIT https://github.com/jonschlinkert/expand-tilde https://github.com/jonschlinkert/expand-tilde/raw/master/LICENSE node_modules\resolve-dir\node_modules\expand-tilde\LICENSE
expand-tilde@2.0.2 MIT https://github.com/jonschlinkert/expand-tilde https://github.com/jonschlinkert/expand-tilde/raw/master/LICENSE node_modules\expand-tilde\LICENSE
export-files@2.1.1 MIT https://github.com/jonschlinkert/export-files https://github.com/jonschlinkert/export-files/raw/master/LICENSE node_modules\export-files\LICENSE
express@4.16.4 MIT https://github.com/expressjs/express https://github.com/expressjs/express/raw/master/LICENSE node_modules\express\LICENSE
extend-shallow@1.1.4 MIT https://github.com/jonschlinkert/extend-shallow https://github.com/jonschlinkert/extend-shallow/raw/master/LICENSE node_modules\rethrow\node_modules\extend-shallow\LICENSE
extend-shallow@2.0.1 MIT https://github.com/jonschlinkert/extend-shallow https://github.com/jonschlinkert/extend-shallow/raw/master/LICENSE node_modules\braces\node_modules\extend-shallow\LICENSE
extend-shallow@3.0.2 MIT https://github.com/jonschlinkert/extend-shallow https://github.com/jonschlinkert/extend-shallow/raw/master/LICENSE node_modules\extend-shallow\LICENSE
extend@3.0.2 MIT https://github.com/justmoon/node-extend https://github.com/justmoon/node-extend/raw/master/LICENSE node_modules\extend\LICENSE
external-editor@3.0.3 MIT https://github.com/mrkmg/node-external-editor https://github.com/mrkmg/node-external-editor/raw/master/LICENSE node_modules\external-editor\LICENSE
extglob@0.3.2 MIT https://github.com/jonschlinkert/extglob https://github.com/jonschlinkert/extglob/raw/master/LICENSE node_modules\glob-stream\node_modules\extglob\LICENSE
extglob@2.0.4 MIT https://github.com/micromatch/extglob https://github.com/micromatch/extglob/raw/master/LICENSE node_modules\extglob\LICENSE
extsprintf@1.3.0 MIT https://github.com/davepacheco/node-extsprintf https://github.com/davepacheco/node-extsprintf/raw/master/LICENSE node_modules\extsprintf\LICENSE
falsey@0.3.2 MIT https://github.com/jonschlinkert/falsey https://github.com/jonschlinkert/falsey/raw/master/LICENSE node_modules\falsey\LICENSE
fast-deep-equal@1.1.0 MIT https://github.com/epoberezkin/fast-deep-equal https://github.com/epoberezkin/fast-deep-equal/raw/master/LICENSE node_modules\fast-deep-equal\LICENSE
fast-deep-equal@2.0.1 MIT https://github.com/epoberezkin/fast-deep-equal https://github.com/epoberezkin/fast-deep-equal/raw/master/LICENSE node_modules\@angular-devkit\core\node_modules\fast-deep-equal\LICENSE
fast-json-stable-stringify@2.0.0 MIT https://github.com/epoberezkin/fast-json-stable-stringify https://github.com/epoberezkin/fast-json-stable-stringify/raw/master/LICENSE node_modules\fast-json-stable-stringify\LICENSE
fastparse@1.1.2 MIT https://github.com/webpack/fastparse https://github.com/webpack/fastparse/raw/master/LICENSE node_modules\fastparse\LICENSE
faye-websocket@0.10.0 MIT https://github.com/faye/faye-websocket-node https://github.com/faye/faye-websocket-node
faye-websocket@0.11.1 MIT https://github.com/faye/faye-websocket-node https://github.com/faye/faye-websocket-node
figgy-pudding@3.5.1 ISC https://github.com/zkat/figgy-pudding https://github.com/zkat/figgy-pudding/raw/master/LICENSE.md node_modules\figgy-pudding\LICENSE.md
figures@1.7.0 MIT https://github.com/sindresorhus/figures https://github.com/sindresorhus/figures/raw/master/license node_modules\figures\license
figures@2.0.0 MIT https://github.com/sindresorhus/figures https://github.com/sindresorhus/figures/raw/master/license node_modules\inquirer\node_modules\figures\license
file-contents@0.2.4 MIT https://github.com/jonschlinkert/file-contents https://github.com/jonschlinkert/file-contents/raw/master/LICENSE node_modules\file-contents\LICENSE
file-contents@1.0.1 MIT https://github.com/jonschlinkert/file-contents https://github.com/jonschlinkert/file-contents/raw/master/LICENSE node_modules\base-config-schema\node_modules\file-contents\LICENSE
file-is-binary@1.0.0 MIT https://github.com/jonschlinkert/file-is-binary https://github.com/jonschlinkert/file-is-binary/raw/master/LICENSE node_modules\file-is-binary\LICENSE
file-loader@3.0.1 MIT https://github.com/webpack-contrib/file-loader https://github.com/webpack-contrib/file-loader/raw/master/LICENSE node_modules\file-loader\LICENSE
file-name@0.1.0 MIT https://github.com/jonschlinkert/file-name https://github.com/jonschlinkert/file-name/raw/master/LICENSE node_modules\file-name\LICENSE
file-saver@1.3.8 MIT https://github.com/eligrey/FileSaver.js https://github.com/eligrey/FileSaver.js/raw/master/LICENSE.md node_modules\file-saver\LICENSE.md
file-stat@0.1.3 MIT https://github.com/jonschlinkert/file-stat https://github.com/jonschlinkert/file-stat/raw/master/LICENSE node_modules\file-stat\LICENSE
filename-regex@2.0.1 MIT https://github.com/regexhq/filename-regex https://github.com/regexhq/filename-regex/raw/master/LICENSE node_modules\filename-regex\LICENSE
fileset@2.0.3 MIT https://github.com/mklabs/node-fileset https://github.com/mklabs/node-fileset/raw/master/LICENSE-MIT node_modules\fileset\LICENSE-MIT
fill-range@2.2.4 MIT https://github.com/jonschlinkert/fill-range https://github.com/jonschlinkert/fill-range/raw/master/LICENSE node_modules\expand-range\node_modules\fill-range\LICENSE
fill-range@4.0.0 MIT https://github.com/jonschlinkert/fill-range https://github.com/jonschlinkert/fill-range/raw/master/LICENSE node_modules\fill-range\LICENSE
finalhandler@1.1.0 MIT https://github.com/pillarjs/finalhandler https://github.com/pillarjs/finalhandler/raw/master/LICENSE node_modules\connect\node_modules\finalhandler\LICENSE
finalhandler@1.1.1 MIT https://github.com/pillarjs/finalhandler https://github.com/pillarjs/finalhandler/raw/master/LICENSE node_modules\finalhandler\LICENSE
find-cache-dir@1.0.0 MIT https://github.com/avajs/find-cache-dir https://github.com/avajs/find-cache-dir/raw/master/license node_modules\find-cache-dir\license
find-cache-dir@2.1.0 MIT https://github.com/avajs/find-cache-dir https://github.com/avajs/find-cache-dir/raw/master/license node_modules\terser-webpack-plugin\node_modules\find-cache-dir\license
find-file-up@0.1.3 MIT https://github.com/jonschlinkert/find-file-up https://github.com/jonschlinkert/find-file-up/raw/master/LICENSE node_modules\find-file-up\LICENSE
find-npm-prefix@1.0.2 ISC https://github.com/npm/find-npm-prefix https://github.com/npm/find-npm-prefix/raw/master/LICENSE node_modules\npm\node_modules\find-npm-prefix\LICENSE
find-pkg@0.1.2 MIT https://github.com/jonschlinkert/find-pkg https://github.com/jonschlinkert/find-pkg/raw/master/LICENSE node_modules\find-pkg\LICENSE
find-up@1.1.2 MIT https://github.com/sindresorhus/find-up https://github.com/sindresorhus/find-up/raw/master/license node_modules\read-pkg-up\node_modules\find-up\license
find-up@2.1.0 MIT https://github.com/sindresorhus/find-up https://github.com/sindresorhus/find-up/raw/master/license node_modules\npm\node_modules\find-up\license
find-up@3.0.0 MIT https://github.com/sindresorhus/find-up https://github.com/sindresorhus/find-up/raw/master/license node_modules\npm\node_modules\libnpmconfig\node_modules\find-up\license
first-chunk-stream@1.0.0 MIT https://github.com/sindresorhus/first-chunk-stream https://github.com/sindresorhus/first-chunk-stream
flatted@2.0.0 ISC https://github.com/WebReflection/flatted https://github.com/WebReflection/flatted/raw/master/LICENSE node_modules\flatted\LICENSE
flush-write-stream@1.0.3 MIT https://github.com/mafintosh/flush-write-stream https://github.com/mafintosh/flush-write-stream/raw/master/LICENSE node_modules\flush-write-stream\LICENSE
follow-redirects@1.5.7 MIT https://github.com/olalonde/follow-redirects https://github.com/olalonde/follow-redirects/raw/master/LICENSE node_modules\follow-redirects\LICENSE
font-awesome@4.7.0 (OFL-1.1 AND MIT) https://github.com/FortAwesome/Font-Awesome https://github.com/FortAwesome/Font-Awesome
for-in@0.1.8 MIT https://github.com/jonschlinkert/for-in https://github.com/jonschlinkert/for-in/raw/master/LICENSE node_modules\mixin-object\node_modules\for-in\LICENSE
for-in@1.0.2 MIT https://github.com/jonschlinkert/for-in https://github.com/jonschlinkert/for-in/raw/master/LICENSE node_modules\for-in\LICENSE
for-own@0.1.5 MIT https://github.com/jonschlinkert/for-own https://github.com/jonschlinkert/for-own/raw/master/LICENSE node_modules\object.omit\node_modules\for-own\LICENSE
for-own@1.0.0 MIT https://github.com/jonschlinkert/for-own https://github.com/jonschlinkert/for-own/raw/master/LICENSE node_modules\for-own\LICENSE
forever-agent@0.6.1 Apache-2.0 https://github.com/mikeal/forever-agent https://github.com/mikeal/forever-agent/raw/master/LICENSE node_modules\forever-agent\LICENSE
form-data@2.3.2 MIT https://github.com/form-data/form-data https://github.com/form-data/form-data/raw/master/License node_modules\form-data\License
forwarded@0.1.2 MIT https://github.com/jshttp/forwarded https://github.com/jshttp/forwarded/raw/master/LICENSE node_modules\forwarded\LICENSE
fragment-cache@0.2.1 MIT https://github.com/jonschlinkert/fragment-cache https://github.com/jonschlinkert/fragment-cache/raw/master/LICENSE node_modules\fragment-cache\LICENSE
fresh@0.5.2 MIT https://github.com/jshttp/fresh https://github.com/jshttp/fresh/raw/master/LICENSE node_modules\fresh\LICENSE
from2@1.3.0 MIT https://github.com/hughsk/from2 https://github.com/hughsk/from2/raw/master/LICENSE.md node_modules\npm\node_modules\sorted-union-stream\node_modules\from2\LICENSE.md
from2@2.3.0 MIT https://github.com/hughsk/from2 https://github.com/hughsk/from2/raw/master/LICENSE.md node_modules\from2\LICENSE.md
fs-access@1.0.1 MIT https://github.com/sindresorhus/fs-access https://github.com/sindresorhus/fs-access/raw/master/license node_modules\fs-access\license
fs-exists-sync@0.1.0 MIT https://github.com/jonschlinkert/fs-exists-sync https://github.com/jonschlinkert/fs-exists-sync/raw/master/LICENSE node_modules\fs-exists-sync\LICENSE
fs-extra@7.0.1 MIT https://github.com/jprichardson/node-fs-extra https://github.com/jprichardson/node-fs-extra/raw/master/LICENSE node_modules\fs-extra\LICENSE
fs-minipass@1.2.5 ISC https://github.com/npm/fs-minipass https://github.com/npm/fs-minipass/raw/master/LICENSE node_modules\fs-minipass\LICENSE
fs-vacuum@1.2.10 ISC https://github.com/npm/fs-vacuum https://github.com/npm/fs-vacuum/raw/master/LICENSE node_modules\npm\node_modules\fs-vacuum\LICENSE
fs-write-stream-atomic@1.0.10 ISC https://github.com/npm/fs-write-stream-atomic https://github.com/npm/fs-write-stream-atomic/raw/master/LICENSE node_modules\fs-write-stream-atomic\LICENSE
fs.realpath@1.0.0 ISC https://github.com/isaacs/fs.realpath https://github.com/isaacs/fs.realpath/raw/master/LICENSE node_modules\fs.realpath\LICENSE
fstream@1.0.11 ISC https://github.com/npm/fstream https://github.com/npm/fstream/raw/master/LICENSE node_modules\fstream\LICENSE
fstream@1.0.12 ISC https://github.com/npm/fstream https://github.com/npm/fstream/raw/master/LICENSE node_modules\node-gyp\node_modules\tar\node_modules\fstream\LICENSE
gauge@2.7.4 ISC https://github.com/iarna/gauge https://github.com/iarna/gauge/raw/master/LICENSE node_modules\gauge\LICENSE
gaze@1.1.3 MIT https://github.com/shama/gaze https://github.com/shama/gaze/raw/master/LICENSE-MIT node_modules\gaze\LICENSE-MIT
genfun@5.0.0 MIT https://github.com/zkat/genfun https://github.com/zkat/genfun/raw/master/LICENSE node_modules\genfun\LICENSE
gentle-fs@2.0.1 Artistic-2.0 https://github.com/npm/gentle-fs https://github.com/npm/gentle-fs/raw/master/LICENSE node_modules\npm\node_modules\gentle-fs\LICENSE
get-caller-file@1.0.2 ISC https://github.com/stefanpenner/get-caller-file https://github.com/stefanpenner/get-caller-file
get-caller-file@1.0.3 ISC https://github.com/stefanpenner/get-caller-file https://github.com/stefanpenner/get-caller-file/raw/master/LICENSE.md node_modules\get-caller-file\LICENSE.md
get-stdin@4.0.1 MIT https://github.com/sindresorhus/get-stdin https://github.com/sindresorhus/get-stdin
get-stdin@5.0.1 MIT https://github.com/sindresorhus/get-stdin https://github.com/sindresorhus/get-stdin/raw/master/license node_modules\expand-object\node_modules\get-stdin\license
get-stream@3.0.0 MIT https://github.com/sindresorhus/get-stream https://github.com/sindresorhus/get-stream/raw/master/license node_modules\npm\node_modules\execa\node_modules\get-stream\license
get-stream@4.1.0 MIT https://github.com/sindresorhus/get-stream https://github.com/sindresorhus/get-stream/raw/master/license node_modules\pacote\node_modules\get-stream\license
get-value@1.3.1 MIT https://github.com/jonschlinkert/get-value https://github.com/jonschlinkert/get-value/raw/master/LICENSE node_modules\engine\node_modules\get-value\LICENSE
get-value@2.0.6 MIT https://github.com/jonschlinkert/get-value https://github.com/jonschlinkert/get-value/raw/master/LICENSE node_modules\get-value\LICENSE
get-view@0.1.3 MIT https://github.com/jonschlinkert/get-view https://github.com/jonschlinkert/get-view/raw/master/LICENSE node_modules\get-view\LICENSE
getpass@0.1.7 MIT https://github.com/arekinath/node-getpass https://github.com/arekinath/node-getpass/raw/master/LICENSE node_modules\getpass\LICENSE
git-config-path@1.0.1 MIT https://github.com/jonschlinkert/git-config-path https://github.com/jonschlinkert/git-config-path/raw/master/LICENSE node_modules\git-config-path\LICENSE
git-repo-name@0.6.0 MIT https://github.com/jonschlinkert/git-repo-name https://github.com/jonschlinkert/git-repo-name/raw/master/LICENSE node_modules\git-repo-name\LICENSE
glob-base@0.3.0 MIT https://github.com/jonschlinkert/glob-base https://github.com/jonschlinkert/glob-base/blob/master/LICENSE node_modules\glob-base\LICENSE
glob-parent@2.0.0 ISC https://github.com/es128/glob-parent https://github.com/es128/glob-parent/raw/master/LICENSE node_modules\glob-base\node_modules\glob-parent\LICENSE
glob-parent@3.1.0 ISC https://github.com/es128/glob-parent https://github.com/es128/glob-parent/raw/master/LICENSE node_modules\glob-parent\LICENSE
glob-stream@5.3.5 MIT https://github.com/gulpjs/glob-stream https://github.com/gulpjs/glob-stream/raw/master/LICENSE node_modules\glob-stream\LICENSE
glob@5.0.15 ISC https://github.com/isaacs/node-glob https://github.com/isaacs/node-glob/raw/master/LICENSE node_modules\glob-stream\node_modules\glob\LICENSE
glob@7.0.6 ISC https://github.com/isaacs/node-glob https://github.com/isaacs/node-glob/raw/master/LICENSE node_modules\stylus\node_modules\glob\LICENSE
glob@7.1.3 ISC https://github.com/isaacs/node-glob https://github.com/isaacs/node-glob/raw/master/LICENSE node_modules\glob\LICENSE
global-dirs@0.1.1 MIT https://github.com/sindresorhus/global-dirs https://github.com/sindresorhus/global-dirs/raw/master/license node_modules\npm\node_modules\global-dirs\license
global-modules@0.2.3 MIT https://github.com/jonschlinkert/global-modules https://github.com/jonschlinkert/global-modules/raw/master/LICENSE node_modules\global-modules\LICENSE
global-modules@1.0.0 MIT https://github.com/jonschlinkert/global-modules https://github.com/jonschlinkert/global-modules/raw/master/LICENSE node_modules\matched\node_modules\global-modules\LICENSE
global-prefix@0.1.5 MIT https://github.com/jonschlinkert/global-prefix https://github.com/jonschlinkert/global-prefix/raw/master/LICENSE node_modules\global-modules\node_modules\global-prefix\LICENSE
global-prefix@1.0.2 MIT https://github.com/jonschlinkert/global-prefix https://github.com/jonschlinkert/global-prefix/raw/master/LICENSE node_modules\global-prefix\LICENSE
globals@9.18.0 MIT https://github.com/sindresorhus/globals https://github.com/sindresorhus/globals/raw/master/license node_modules\globals\license
globby@5.0.0 MIT https://github.com/sindresorhus/globby https://github.com/sindresorhus/globby/raw/master/license node_modules\protractor\node_modules\globby\license
globby@6.1.0 MIT https://github.com/sindresorhus/globby https://github.com/sindresorhus/globby/raw/master/license node_modules\del\node_modules\globby\license
globby@7.1.1 MIT https://github.com/sindresorhus/globby https://github.com/sindresorhus/globby/raw/master/license node_modules\globby\license
globule@1.2.1 MIT https://github.com/cowboy/node-globule https://github.com/cowboy/node-globule/raw/master/LICENSE node_modules\globule\LICENSE
got@6.7.1 MIT https://github.com/sindresorhus/got https://github.com/sindresorhus/got/raw/master/license node_modules\npm\node_modules\got\license
graceful-fs@4.1.11 ISC https://github.com/isaacs/node-graceful-fs https://github.com/isaacs/node-graceful-fs/raw/master/LICENSE node_modules\graceful-fs\LICENSE
graceful-fs@4.1.15 ISC https://github.com/isaacs/node-graceful-fs https://github.com/isaacs/node-graceful-fs/raw/master/LICENSE node_modules\pacote\node_modules\graceful-fs\LICENSE
gray-matter@3.1.1 MIT https://github.com/jonschlinkert/gray-matter https://github.com/jonschlinkert/gray-matter/raw/master/LICENSE node_modules\gray-matter\LICENSE
group-array@0.3.3 MIT https://github.com/doowb/group-array https://github.com/doowb/group-array/raw/master/LICENSE node_modules\group-array\LICENSE
gulp-choose-files@0.1.3 MIT https://github.com/generate/gulp-choose-files https://github.com/generate/gulp-choose-files/raw/master/LICENSE node_modules\gulp-choose-files\LICENSE
gulp-sourcemaps@1.6.0 ISC https://github.com/floridoo/gulp-sourcemaps https://github.com/floridoo/gulp-sourcemaps/raw/master/LICENSE.md node_modules\gulp-sourcemaps\LICENSE.md
gutenberg-css@0.4.7 MIT https://github.com/BafS/Gutenberg https://github.com/BafS/Gutenberg/raw/master/LICENSE node_modules\gutenberg-css\LICENSE
handle-thing@2.0.0 MIT https://github.com/indutny/handle-thing https://github.com/indutny/handle-thing
handlebars@4.0.14 MIT https://github.com/wycats/handlebars.js https://github.com/wycats/handlebars.js/raw/master/LICENSE node_modules\handlebars\LICENSE
handy@0.0.13 UNKNOWN https://github.com/openmason/handy https://github.com/openmason/handy/raw/master/LICENSE node_modules\handy\LICENSE
har-schema@2.0.0 ISC https://github.com/ahmadnassri/har-schema https://github.com/ahmadnassri/har-schema/raw/master/LICENSE node_modules\har-schema\LICENSE
har-validator@5.1.0 ISC https://github.com/ahmadnassri/har-validator https://github.com/ahmadnassri/har-validator/raw/master/LICENSE node_modules\har-validator\LICENSE
has-ansi@2.0.0 MIT https://github.com/sindresorhus/has-ansi https://github.com/sindresorhus/has-ansi/raw/master/license node_modules\has-ansi\license
has-binary2@1.0.3 MIT node_modules\has-binary2\LICENSE
has-cors@1.1.0 MIT https://github.com/component/has-cors https://github.com/component/has-cors
has-flag@1.0.0 MIT https://github.com/sindresorhus/has-flag https://github.com/sindresorhus/has-flag/raw/master/license node_modules\istanbul-api\node_modules\has-flag\license
has-flag@3.0.0 MIT https://github.com/sindresorhus/has-flag https://github.com/sindresorhus/has-flag/raw/master/license node_modules\has-flag\license
has-glob@0.1.1 MIT https://github.com/jonschlinkert/has-glob https://github.com/jonschlinkert/has-glob/raw/master/LICENSE node_modules\has-glob\LICENSE
has-glob@1.0.0 MIT https://github.com/jonschlinkert/has-glob https://github.com/jonschlinkert/has-glob/raw/master/LICENSE node_modules\base-data\node_modules\has-glob\LICENSE
has-own-deep@0.1.4 MIT https://github.com/jonschlinkert/has-own-deep https://github.com/jonschlinkert/has-own-deep/blob/master/LICENSE node_modules\has-own-deep\LICENSE
has-unicode@2.0.1 ISC https://github.com/iarna/has-unicode https://github.com/iarna/has-unicode/raw/master/LICENSE node_modules\has-unicode\LICENSE
has-value@0.3.1 MIT https://github.com/jonschlinkert/has-value https://github.com/jonschlinkert/has-value/raw/master/LICENSE node_modules\unset-value\node_modules\has-value\LICENSE
has-value@1.0.0 MIT https://github.com/jonschlinkert/has-value https://github.com/jonschlinkert/has-value/raw/master/LICENSE node_modules\has-value\LICENSE
has-values@0.1.4 MIT https://github.com/jonschlinkert/has-values https://github.com/jonschlinkert/has-values/raw/master/LICENSE node_modules\unset-value\node_modules\has-values\LICENSE
has-values@1.0.0 MIT https://github.com/jonschlinkert/has-values https://github.com/jonschlinkert/has-values/raw/master/LICENSE node_modules\has-values\LICENSE
hash-base@3.0.4 MIT https://github.com/crypto-browserify/hash-base https://github.com/crypto-browserify/hash-base/raw/master/LICENSE node_modules\hash-base\LICENSE
hash.js@1.1.5 MIT https://github.com/indutny/hash.js https://github.com/indutny/hash.js
helper-cache@0.7.2 MIT https://github.com/jonschlinkert/helper-cache https://github.com/jonschlinkert/helper-cache/raw/master/LICENSE node_modules\helper-cache\LICENSE
hmac-drbg@1.0.1 MIT https://github.com/indutny/hmac-drbg https://github.com/indutny/hmac-drbg
homedir-polyfill@1.0.1 MIT https://github.com/doowb/homedir-polyfill https://github.com/doowb/homedir-polyfill/raw/master/LICENSE node_modules\homedir-polyfill\LICENSE
hosted-git-info@2.7.1 ISC https://github.com/npm/hosted-git-info https://github.com/npm/hosted-git-info/raw/master/LICENSE node_modules\hosted-git-info\LICENSE
hpack.js@2.1.6 MIT https://github.com/indutny/hpack.js https://github.com/indutny/hpack.js
html-entities@1.2.1 MIT https://github.com/mdevils/node-html-entities https://github.com/mdevils/node-html-entities/raw/master/LICENSE node_modules\html-entities\LICENSE
htmlparser@1.7.7 MIT https://github.com/tautologistics/node-htmlparser http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE node_modules\htmlparser\LICENSE
http-cache-semantics@3.8.1 BSD-2-Clause https://github.com/pornel/http-cache-semantics https://github.com/pornel/http-cache-semantics
http-deceiver@1.2.7 MIT https://github.com/indutny/http-deceiver https://github.com/indutny/http-deceiver
http-errors@1.6.3 MIT https://github.com/jshttp/http-errors https://github.com/jshttp/http-errors/raw/master/LICENSE node_modules\http-errors\LICENSE
http-parser-js@0.5.0 MIT https://github.com/creationix/http-parser-js https://github.com/creationix/http-parser-js/raw/master/LICENSE.md node_modules\http-parser-js\LICENSE.md
http-proxy-agent@2.1.0 MIT https://github.com/TooTallNate/node-http-proxy-agent https://github.com/TooTallNate/node-http-proxy-agent
http-proxy-middleware@0.18.0 MIT https://github.com/chimurai/http-proxy-middleware https://github.com/chimurai/http-proxy-middleware/raw/master/LICENSE node_modules\http-proxy-middleware\LICENSE
http-proxy@1.17.0 MIT https://github.com/nodejitsu/node-http-proxy https://github.com/nodejitsu/node-http-proxy/raw/master/LICENSE node_modules\http-proxy\LICENSE
http-signature@1.2.0 MIT https://github.com/joyent/node-http-signature https://github.com/joyent/node-http-signature/raw/master/LICENSE node_modules\http-signature\LICENSE
https-browserify@1.0.0 MIT https://github.com/substack/https-browserify https://github.com/substack/https-browserify/raw/master/LICENSE node_modules\https-browserify\LICENSE
https-proxy-agent@2.2.1 MIT https://github.com/TooTallNate/node-https-proxy-agent https://github.com/TooTallNate/node-https-proxy-agent
humanize-ms@1.2.1 MIT https://github.com/node-modules/humanize-ms https://github.com/node-modules/humanize-ms/raw/master/LICENSE node_modules\humanize-ms\LICENSE
iconv-lite@0.4.23 MIT https://github.com/ashtuchkin/iconv-lite https://github.com/ashtuchkin/iconv-lite/raw/master/LICENSE node_modules\npm\node_modules\iconv-lite\LICENSE
iconv-lite@0.4.24 MIT https://github.com/ashtuchkin/iconv-lite https://github.com/ashtuchkin/iconv-lite/raw/master/LICENSE node_modules\iconv-lite\LICENSE
ieee754@1.1.12 BSD-3-Clause https://github.com/feross/ieee754 https://github.com/feross/ieee754/raw/master/LICENSE node_modules\ieee754\LICENSE
iferr@0.1.5 MIT https://github.com/shesek/iferr https://github.com/shesek/iferr/raw/master/LICENSE node_modules\iferr\LICENSE
iferr@1.0.2 MIT https://github.com/shesek/iferr https://github.com/shesek/iferr/raw/master/LICENSE node_modules\npm\node_modules\iferr\LICENSE
ignore-walk@3.0.1 ISC https://github.com/isaacs/ignore-walk https://github.com/isaacs/ignore-walk/raw/master/LICENSE node_modules\ignore-walk\LICENSE
ignore@3.3.10 MIT https://github.com/kaelzhang/node-ignore https://github.com/kaelzhang/node-ignore
image-size@0.5.5 MIT https://github.com/image-size/image-size https://github.com/image-size/image-size/raw/master/LICENSE node_modules\image-size\LICENSE
immediate@3.0.6 MIT https://github.com/calvinmetcalf/immediate https://github.com/calvinmetcalf/immediate/raw/master/LICENSE.txt node_modules\immediate\LICENSE.txt
import-cwd@2.1.0 MIT https://github.com/sindresorhus/import-cwd https://github.com/sindresorhus/import-cwd/raw/master/license node_modules\import-cwd\license
import-from@2.1.0 MIT https://github.com/sindresorhus/import-from https://github.com/sindresorhus/import-from/raw/master/license node_modules\import-from\license
import-lazy@2.1.0 MIT https://github.com/sindresorhus/import-lazy https://github.com/sindresorhus/import-lazy/raw/master/license node_modules\npm\node_modules\import-lazy\license
import-local@2.0.0 MIT https://github.com/sindresorhus/import-local https://github.com/sindresorhus/import-local/raw/master/license node_modules\import-local\license
imurmurhash@0.1.4 MIT https://github.com/jensyt/imurmurhash-js https://github.com/jensyt/imurmurhash-js
in-publish@2.0.0 ISC https://github.com/iarna/in-publish https://github.com/iarna/in-publish/raw/master/LICENSE node_modules\in-publish\LICENSE
indent-string@2.1.0 MIT https://github.com/sindresorhus/indent-string https://github.com/sindresorhus/indent-string/raw/master/license node_modules\indent-string\license
indexof@0.0.1 MIT* node_modules\indexof\Readme.md
inflection@1.12.0 MIT https://github.com/dreamerslab/node.inflection https://github.com/dreamerslab/node.inflection
inflight@1.0.6 ISC https://github.com/npm/inflight https://github.com/npm/inflight/raw/master/LICENSE node_modules\inflight\LICENSE
info-symbol@0.1.0 MIT https://github.com/jonschlinkert/info-symbol https://github.com/jonschlinkert/info-symbol/raw/master/LICENSE node_modules\info-symbol\LICENSE
inherits@2.0.1 ISC https://github.com/isaacs/inherits https://github.com/isaacs/inherits/raw/master/LICENSE node_modules\assert\node_modules\inherits\LICENSE
inherits@2.0.3 ISC https://github.com/isaacs/inherits https://github.com/isaacs/inherits/raw/master/LICENSE node_modules\inherits\LICENSE
ini@1.3.5 ISC https://github.com/isaacs/ini https://github.com/isaacs/ini/raw/master/LICENSE node_modules\ini\LICENSE
init-package-json@1.10.3 ISC https://github.com/npm/init-package-json https://github.com/npm/init-package-json/raw/master/LICENSE node_modules\npm\node_modules\init-package-json\LICENSE
inquirer2@0.1.1 MIT https://github.com/jonschlinkert/inquirer2 https://github.com/jonschlinkert/inquirer2/raw/master/LICENSE node_modules\inquirer2\LICENSE
inquirer@6.2.1 MIT https://github.com/SBoudrias/Inquirer.js https://github.com/SBoudrias/Inquirer.js
internal-ip@3.0.1 MIT https://github.com/sindresorhus/internal-ip https://github.com/sindresorhus/internal-ip/raw/master/license node_modules\internal-ip\license
interpret@1.2.0 MIT https://github.com/gulpjs/interpret https://github.com/gulpjs/interpret/raw/master/LICENSE node_modules\interpret\LICENSE
intersection-observer@0.5.1 W3C-20150513 https://github.com/w3c/IntersectionObserver https://github.com/w3c/IntersectionObserver
invariant@2.2.4 MIT https://github.com/zertosh/invariant https://github.com/zertosh/invariant/raw/master/LICENSE node_modules\invariant\LICENSE
invert-kv@1.0.0 MIT https://github.com/sindresorhus/invert-kv https://github.com/sindresorhus/invert-kv
invert-kv@2.0.0 MIT https://github.com/sindresorhus/invert-kv https://github.com/sindresorhus/invert-kv/raw/master/license node_modules\webpack-dev-server\node_modules\invert-kv\license
ion-rangeslider@2.2.0 MIT https://github.com/IonDen/ion.rangeSlider https://github.com/IonDen/ion.rangeSlider/raw/master/License.md node_modules\ion-rangeslider\License.md
ip-regex@2.1.0 MIT https://github.com/sindresorhus/ip-regex https://github.com/sindresorhus/ip-regex/raw/master/license node_modules\npm\node_modules\ip-regex\license
ip@1.1.5 MIT https://github.com/indutny/node-ip https://github.com/indutny/node-ip
ipaddr.js@1.9.0 MIT https://github.com/whitequark/ipaddr.js https://github.com/whitequark/ipaddr.js/raw/master/LICENSE node_modules\ipaddr.js\LICENSE
is-absolute@0.2.6 MIT https://github.com/jonschlinkert/is-absolute https://github.com/jonschlinkert/is-absolute/raw/master/LICENSE node_modules\is-absolute\LICENSE
is-accessor-descriptor@0.1.6 MIT https://github.com/jonschlinkert/is-accessor-descriptor https://github.com/jonschlinkert/is-accessor-descriptor/raw/master/LICENSE node_modules\is-accessor-descriptor\LICENSE
is-accessor-descriptor@1.0.0 MIT https://github.com/jonschlinkert/is-accessor-descriptor https://github.com/jonschlinkert/is-accessor-descriptor/raw/master/LICENSE node_modules\base\node_modules\is-accessor-descriptor\LICENSE
is-answer@0.1.1 MIT https://github.com/jonschlinkert/is-answer https://github.com/jonschlinkert/is-answer/raw/master/LICENSE node_modules\is-answer\LICENSE
is-arguments@1.0.2 MIT https://github.com/ljharb/is-arguments https://github.com/ljharb/is-arguments/raw/master/LICENSE node_modules\is-arguments\LICENSE
is-arrayish@0.2.1 MIT https://github.com/qix-/node-is-arrayish https://github.com/qix-/node-is-arrayish/raw/master/LICENSE node_modules\is-arrayish\LICENSE
is-binary-buffer@1.0.0 MIT https://github.com/jonschlinkert/is-binary-buffer https://github.com/jonschlinkert/is-binary-buffer/raw/master/LICENSE node_modules\is-binary-buffer\LICENSE
is-binary-path@1.0.1 MIT https://github.com/sindresorhus/is-binary-path https://github.com/sindresorhus/is-binary-path/raw/master/license node_modules\is-binary-path\license
is-buffer@1.1.6 MIT https://github.com/feross/is-buffer https://github.com/feross/is-buffer/raw/master/LICENSE node_modules\is-buffer\LICENSE
is-ci@1.1.0 MIT https://github.com/watson/is-ci https://github.com/watson/is-ci/raw/master/LICENSE node_modules\npm\node_modules\is-ci\LICENSE
is-cidr@3.0.0 BSD-2-Clause https://github.com/silverwind/is-cidr https://github.com/silverwind/is-cidr/raw/master/LICENSE node_modules\npm\node_modules\is-cidr\LICENSE
is-data-descriptor@0.1.4 MIT https://github.com/jonschlinkert/is-data-descriptor https://github.com/jonschlinkert/is-data-descriptor/raw/master/LICENSE node_modules\is-data-descriptor\LICENSE
is-data-descriptor@1.0.0 MIT https://github.com/jonschlinkert/is-data-descriptor https://github.com/jonschlinkert/is-data-descriptor/raw/master/LICENSE node_modules\base\node_modules\is-data-descriptor\LICENSE
is-date-object@1.0.1 MIT https://github.com/ljharb/is-date-object https://github.com/ljharb/is-date-object/raw/master/LICENSE node_modules\is-date-object\LICENSE
is-descriptor@0.1.6 MIT https://github.com/jonschlinkert/is-descriptor https://github.com/jonschlinkert/is-descriptor/raw/master/LICENSE node_modules\is-descriptor\LICENSE
is-descriptor@1.0.2 MIT https://github.com/jonschlinkert/is-descriptor https://github.com/jonschlinkert/is-descriptor/raw/master/LICENSE node_modules\base\node_modules\is-descriptor\LICENSE
is-directory@0.3.1 MIT https://github.com/jonschlinkert/is-directory https://github.com/jonschlinkert/is-directory/raw/master/LICENSE node_modules\is-directory\LICENSE
is-dotfile@1.0.3 MIT https://github.com/jonschlinkert/is-dotfile https://github.com/jonschlinkert/is-dotfile/raw/master/LICENSE node_modules\is-dotfile\LICENSE
is-equal-shallow@0.1.3 MIT https://github.com/jonschlinkert/is-equal-shallow https://github.com/jonschlinkert/is-equal-shallow/raw/master/LICENSE node_modules\is-equal-shallow\LICENSE
is-extendable@0.1.1 MIT https://github.com/jonschlinkert/is-extendable https://github.com/jonschlinkert/is-extendable/raw/master/LICENSE node_modules\is-extendable\LICENSE
is-extendable@1.0.1 MIT https://github.com/jonschlinkert/is-extendable https://github.com/jonschlinkert/is-extendable/raw/master/LICENSE node_modules\extend-shallow\node_modules\is-extendable\LICENSE
is-extglob@1.0.0 MIT https://github.com/jonschlinkert/is-extglob https://github.com/jonschlinkert/is-extglob/raw/master/LICENSE node_modules\glob-stream\node_modules\is-extglob\LICENSE
is-extglob@2.1.1 MIT https://github.com/jonschlinkert/is-extglob https://github.com/jonschlinkert/is-extglob/raw/master/LICENSE node_modules\is-extglob\LICENSE
is-finite@1.0.2 MIT https://github.com/sindresorhus/is-finite https://github.com/sindresorhus/is-finite/raw/master/license node_modules\is-finite\license
is-fullwidth-code-point@1.0.0 MIT https://github.com/sindresorhus/is-fullwidth-code-point https://github.com/sindresorhus/is-fullwidth-code-point/raw/master/license node_modules\is-fullwidth-code-point\license
is-fullwidth-code-point@2.0.0 MIT https://github.com/sindresorhus/is-fullwidth-code-point https://github.com/sindresorhus/is-fullwidth-code-point/raw/master/license node_modules\inquirer\node_modules\is-fullwidth-code-point\license
is-generator@1.0.3 MIT https://github.com/blakeembrey/is-generator https://github.com/blakeembrey/is-generator/raw/master/LICENSE node_modules\is-generator\LICENSE
is-glob@2.0.1 MIT https://github.com/jonschlinkert/is-glob https://github.com/jonschlinkert/is-glob/raw/master/LICENSE node_modules\glob-stream\node_modules\is-glob\LICENSE
is-glob@3.1.0 MIT https://github.com/jonschlinkert/is-glob https://github.com/jonschlinkert/is-glob/raw/master/LICENSE node_modules\glob-parent\node_modules\is-glob\LICENSE
is-glob@4.0.0 MIT https://github.com/jonschlinkert/is-glob https://github.com/jonschlinkert/is-glob/raw/master/LICENSE node_modules\is-glob\LICENSE
is-installed-globally@0.1.0 MIT https://github.com/sindresorhus/is-installed-globally https://github.com/sindresorhus/is-installed-globally/raw/master/license node_modules\npm\node_modules\is-installed-globally\license
is-npm@1.0.0 MIT https://github.com/sindresorhus/is-npm https://github.com/sindresorhus/is-npm
is-number@2.1.0 MIT https://github.com/jonschlinkert/is-number https://github.com/jonschlinkert/is-number/raw/master/LICENSE node_modules\expand-range\node_modules\is-number\LICENSE
is-number@3.0.0 MIT https://github.com/jonschlinkert/is-number https://github.com/jonschlinkert/is-number/raw/master/LICENSE node_modules\is-number\LICENSE
is-number@4.0.0 MIT https://github.com/jonschlinkert/is-number https://github.com/jonschlinkert/is-number/raw/master/LICENSE node_modules\randomatic\node_modules\is-number\LICENSE
is-obj@1.0.1 MIT https://github.com/sindresorhus/is-obj https://github.com/sindresorhus/is-obj/raw/master/license node_modules\npm\node_modules\is-obj\license
is-path-cwd@1.0.0 MIT https://github.com/sindresorhus/is-path-cwd https://github.com/sindresorhus/is-path-cwd
is-path-in-cwd@1.0.1 MIT https://github.com/sindresorhus/is-path-in-cwd https://github.com/sindresorhus/is-path-in-cwd/raw/master/license node_modules\is-path-in-cwd\license
is-path-inside@1.0.1 MIT https://github.com/sindresorhus/is-path-inside https://github.com/sindresorhus/is-path-inside/raw/master/license node_modules\npm\node_modules\is-path-inside\license
is-plain-object@2.0.4 MIT https://github.com/jonschlinkert/is-plain-object https://github.com/jonschlinkert/is-plain-object/raw/master/LICENSE node_modules\is-plain-object\LICENSE
is-posix-bracket@0.1.1 MIT https://github.com/jonschlinkert/is-posix-bracket https://github.com/jonschlinkert/is-posix-bracket/raw/master/LICENSE node_modules\is-posix-bracket\LICENSE
is-primitive@2.0.0 MIT https://github.com/jonschlinkert/is-primitive https://github.com/jonschlinkert/is-primitive/blob/master/LICENSE node_modules\is-primitive\LICENSE
is-promise@2.1.0 MIT https://github.com/then/is-promise https://github.com/then/is-promise/raw/master/LICENSE node_modules\is-promise\LICENSE
is-redirect@1.0.0 MIT https://github.com/sindresorhus/is-redirect https://github.com/sindresorhus/is-redirect/raw/master/license node_modules\npm\node_modules\is-redirect\license
is-registered@0.1.5 MIT https://github.com/jonschlinkert/is-registered https://github.com/jonschlinkert/is-registered/raw/master/LICENSE node_modules\is-registered\LICENSE
is-relative@0.2.1 MIT https://github.com/jonschlinkert/is-relative https://github.com/jonschlinkert/is-relative/raw/master/LICENSE node_modules\is-relative\LICENSE
is-retry-allowed@1.1.0 MIT https://github.com/floatdrop/is-retry-allowed https://github.com/floatdrop/is-retry-allowed/raw/master/license node_modules\npm\node_modules\is-retry-allowed\license
is-stream@1.1.0 MIT https://github.com/sindresorhus/is-stream https://github.com/sindresorhus/is-stream/raw/master/license node_modules\npm\node_modules\is-stream\license
is-typedarray@1.0.0 MIT https://github.com/hughsk/is-typedarray https://github.com/hughsk/is-typedarray/raw/master/LICENSE.md node_modules\is-typedarray\LICENSE.md
is-unc-path@0.1.2 MIT https://github.com/jonschlinkert/is-unc-path https://github.com/jonschlinkert/is-unc-path/raw/master/LICENSE node_modules\is-unc-path\LICENSE
is-utf8@0.2.1 MIT https://github.com/wayfind/is-utf8 https://github.com/wayfind/is-utf8/raw/master/LICENSE node_modules\is-utf8\LICENSE
is-valid-app@0.1.2 MIT https://github.com/node-base/is-valid-app https://github.com/node-base/is-valid-app/raw/master/LICENSE node_modules\assemble-render-file\node_modules\is-valid-app\LICENSE
is-valid-app@0.2.1 MIT https://github.com/node-base/is-valid-app https://github.com/node-base/is-valid-app/raw/master/LICENSE node_modules\is-valid-app\LICENSE
is-valid-app@0.3.0 MIT https://github.com/node-base/is-valid-app https://github.com/node-base/is-valid-app/raw/master/LICENSE node_modules\base-data\node_modules\is-valid-app\LICENSE
is-valid-glob@0.3.0 MIT https://github.com/jonschlinkert/is-valid-glob https://github.com/jonschlinkert/is-valid-glob/raw/master/LICENSE node_modules\is-valid-glob\LICENSE
is-valid-glob@1.0.0 MIT https://github.com/jonschlinkert/is-valid-glob https://github.com/jonschlinkert/is-valid-glob/raw/master/LICENSE node_modules\resolve-glob\node_modules\is-valid-glob\LICENSE
is-valid-instance@0.1.0 MIT https://github.com/jonschlinkert/is-valid-instance https://github.com/jonschlinkert/is-valid-instance/raw/master/LICENSE node_modules\assemble-render-file\node_modules\is-valid-instance\LICENSE
is-valid-instance@0.2.0 MIT https://github.com/jonschlinkert/is-valid-instance https://github.com/jonschlinkert/is-valid-instance/raw/master/LICENSE node_modules\is-valid-instance\LICENSE
is-valid-instance@0.3.0 MIT https://github.com/jonschlinkert/is-valid-instance https://github.com/jonschlinkert/is-valid-instance/raw/master/LICENSE node_modules\base-data\node_modules\is-valid-instance\LICENSE
is-whitespace@0.3.0 MIT https://github.com/jonschlinkert/is-whitespace https://github.com/jonschlinkert/is-whitespace/blob/master/LICENSE node_modules\is-whitespace\LICENSE
is-windows@0.2.0 MIT https://github.com/jonschlinkert/is-windows https://github.com/jonschlinkert/is-windows/raw/master/LICENSE node_modules\global-modules\node_modules\is-windows\LICENSE
is-windows@1.0.2 MIT https://github.com/jonschlinkert/is-windows https://github.com/jonschlinkert/is-windows/raw/master/LICENSE node_modules\is-windows\LICENSE
is-wsl@1.1.0 MIT https://github.com/sindresorhus/is-wsl https://github.com/sindresorhus/is-wsl/raw/master/license node_modules\is-wsl\license
isarray@0.0.1 MIT https://github.com/juliangruber/isarray https://github.com/juliangruber/isarray
isarray@1.0.0 MIT https://github.com/juliangruber/isarray https://github.com/juliangruber/isarray
isarray@2.0.1 MIT https://github.com/juliangruber/isarray https://github.com/juliangruber/isarray
isbinaryfile@3.0.3 MIT https://github.com/gjtorikian/isBinaryFile https://github.com/gjtorikian/isBinaryFile/raw/master/LICENSE.txt node_modules\isbinaryfile\LICENSE.txt
isexe@2.0.0 ISC https://github.com/isaacs/isexe https://github.com/isaacs/isexe/raw/master/LICENSE node_modules\isexe\LICENSE
isobject@1.0.2 MIT https://github.com/jonschlinkert/isobject https://github.com/jonschlinkert/isobject/blob/master/LICENSE node_modules\engine\node_modules\set-value\node_modules\isobject\LICENSE
isobject@2.1.0 MIT https://github.com/jonschlinkert/isobject https://github.com/jonschlinkert/isobject/raw/master/LICENSE node_modules\unset-value\node_modules\has-value\node_modules\isobject\LICENSE
isobject@3.0.1 MIT https://github.com/jonschlinkert/isobject https://github.com/jonschlinkert/isobject/raw/master/LICENSE node_modules\isobject\LICENSE
isstream@0.1.2 MIT https://github.com/rvagg/isstream https://github.com/rvagg/isstream/raw/master/LICENSE.md node_modules\isstream\LICENSE.md
istanbul-api@1.3.7 BSD-3-Clause https://github.com/istanbuljs/istanbuljs https://github.com/istanbuljs/istanbuljs/raw/master/LICENSE node_modules\istanbul-api\LICENSE
istanbul-instrumenter-loader@3.0.1 MIT https://github.com/webpack-contrib/istanbul-instrumenter-loader https://github.com/webpack-contrib/istanbul-instrumenter-loader/raw/master/LICENSE node_modules\istanbul-instrumenter-loader\LICENSE
istanbul-lib-coverage@1.2.1 BSD-3-Clause https://github.com/istanbuljs/istanbuljs https://github.com/istanbuljs/istanbuljs/raw/master/LICENSE node_modules\istanbul-api\node_modules\istanbul-lib-coverage\LICENSE
istanbul-lib-hook@1.2.2 BSD-3-Clause https://github.com/istanbuljs/istanbuljs https://github.com/istanbuljs/istanbuljs/raw/master/LICENSE node_modules\istanbul-api\node_modules\istanbul-lib-hook\LICENSE
istanbul-lib-instrument@1.10.2 BSD-3-Clause https://github.com/istanbuljs/istanbuljs https://github.com/istanbuljs/istanbuljs/raw/master/LICENSE node_modules\istanbul-lib-instrument\LICENSE
istanbul-lib-report@1.1.5 BSD-3-Clause https://github.com/istanbuljs/istanbuljs https://github.com/istanbuljs/istanbuljs/raw/master/LICENSE node_modules\istanbul-api\node_modules\istanbul-lib-report\LICENSE
istanbul-lib-source-maps@1.2.6 BSD-3-Clause https://github.com/istanbuljs/istanbuljs https://github.com/istanbuljs/istanbuljs/raw/master/LICENSE node_modules\istanbul-api\node_modules\istanbul-lib-source-maps\LICENSE
istanbul-reports@1.5.1 BSD-3-Clause https://github.com/istanbuljs/istanbuljs https://github.com/istanbuljs/istanbuljs/raw/master/LICENSE node_modules\istanbul-api\node_modules\istanbul-reports\LICENSE
jasmine-core@2.8.0 MIT https://github.com/jasmine/jasmine https://github.com/jasmine/jasmine/raw/master/MIT.LICENSE node_modules\jasmine\node_modules\jasmine-core\MIT.LICENSE
jasmine-core@3.3.0 MIT https://github.com/jasmine/jasmine https://github.com/jasmine/jasmine/raw/master/MIT.LICENSE node_modules\jasmine-core\MIT.LICENSE
jasmine-spec-reporter@4.2.1 Apache-2.0 https://github.com/bcaudan/jasmine-spec-reporter https://github.com/bcaudan/jasmine-spec-reporter/raw/master/LICENSE node_modules\jasmine-spec-reporter\LICENSE
jasmine@2.8.0 MIT https://github.com/jasmine/jasmine-npm https://github.com/jasmine/jasmine-npm/raw/master/MIT.LICENSE node_modules\jasmine\MIT.LICENSE
jasminewd2@2.2.0 MIT https://github.com/angular/jasminewd https://github.com/angular/jasminewd/raw/master/LICENSE node_modules\jasminewd2\LICENSE
jquery@3.3.1 MIT https://github.com/jquery/jquery https://github.com/jquery/jquery/raw/master/LICENSE.txt node_modules\jquery\LICENSE.txt
js-base64@2.5.1 BSD-3-Clause https://github.com/dankogai/js-base64 https://github.com/dankogai/js-base64/raw/master/LICENSE.md node_modules\js-base64\LICENSE.md
js-tokens@3.0.2 MIT https://github.com/lydell/js-tokens https://github.com/lydell/js-tokens/raw/master/LICENSE node_modules\js-tokens\LICENSE
js-yaml@3.13.1 MIT https://github.com/nodeca/js-yaml https://github.com/nodeca/js-yaml/raw/master/LICENSE node_modules\js-yaml\LICENSE
jsbn@0.1.1 MIT https://github.com/andyperlitch/jsbn https://github.com/andyperlitch/jsbn/raw/master/LICENSE node_modules\npm\node_modules\jsbn\LICENSE
jsesc@0.5.0 MIT https://github.com/mathiasbynens/jsesc http://mths.be/mit node_modules\regjsparser\node_modules\jsesc\LICENSE-MIT.txt
jsesc@1.3.0 MIT https://github.com/mathiasbynens/jsesc https://github.com/mathiasbynens/jsesc/raw/master/LICENSE-MIT.txt node_modules\jsesc\LICENSE-MIT.txt
json-parse-better-errors@1.0.2 MIT https://github.com/zkat/json-parse-better-errors https://github.com/zkat/json-parse-better-errors/raw/master/LICENSE.md node_modules\json-parse-better-errors\LICENSE.md
json-schema-traverse@0.3.1 MIT https://github.com/epoberezkin/json-schema-traverse https://github.com/epoberezkin/json-schema-traverse/raw/master/LICENSE node_modules\json-schema-traverse\LICENSE
json-schema-traverse@0.4.1 MIT https://github.com/epoberezkin/json-schema-traverse https://github.com/epoberezkin/json-schema-traverse/raw/master/LICENSE node_modules\@angular-devkit\core\node_modules\json-schema-traverse\LICENSE
json-schema@0.2.3 AFLv2.1,BSD https://github.com/kriszyp/json-schema http://trac.dojotoolkit.org/browser/dojo/trunk/LICENSE#L43,http://trac.dojotoolkit.org/browser/dojo/trunk/LICENSE#L13
json-stable-stringify@1.0.1 MIT https://github.com/substack/json-stable-stringify https://github.com/substack/json-stable-stringify/raw/master/LICENSE node_modules\json-stable-stringify\LICENSE
json-stringify-safe@5.0.1 ISC https://github.com/isaacs/json-stringify-safe https://github.com/isaacs/json-stringify-safe/raw/master/LICENSE node_modules\json-stringify-safe\LICENSE
json3@3.3.2 MIT https://github.com/bestiejs/json3 http://kit.mit-license.org/ node_modules\json3\LICENSE
json5@0.5.1 MIT https://github.com/aseemk/json5 https://github.com/aseemk/json5/raw/master/LICENSE.md node_modules\json5\LICENSE.md
json5@1.0.1 MIT https://github.com/json5/json5 https://github.com/json5/json5/raw/master/LICENSE.md node_modules\@angular-devkit\build-optimizer\node_modules\json5\LICENSE.md
jsonfile@4.0.0 MIT https://github.com/jprichardson/node-jsonfile https://github.com/jprichardson/node-jsonfile/raw/master/LICENSE node_modules\jsonfile\LICENSE
jsonify@0.0.0 Public Domain https://github.com/substack/jsonify https://github.com/substack/jsonify
jsonparse@1.3.1 MIT https://github.com/creationix/jsonparse https://github.com/creationix/jsonparse/raw/master/LICENSE node_modules\jsonparse\LICENSE
jsprim@1.4.1 MIT https://github.com/joyent/node-jsprim https://github.com/joyent/node-jsprim/raw/master/LICENSE node_modules\jsprim\LICENSE
jszip@3.1.5 (MIT OR GPL-3.0) https://github.com/Stuk/jszip https://github.com/Stuk/jszip/raw/master/LICENSE.markdown node_modules\jszip\LICENSE.markdown
karma-chrome-launcher@2.2.0 MIT https://github.com/karma-runner/karma-chrome-launcher https://github.com/karma-runner/karma-chrome-launcher/raw/master/LICENSE node_modules\karma-chrome-launcher\LICENSE
karma-cli@1.0.1 MIT https://github.com/karma-runner/karma-cli https://github.com/karma-runner/karma-cli/raw/master/LICENSE node_modules\karma-cli\LICENSE
karma-coverage-istanbul-reporter@1.4.3 MIT https://github.com/mattlewis92/karma-coverage-istanbul-reporter https://github.com/mattlewis92/karma-coverage-istanbul-reporter/raw/master/LICENSE node_modules\karma-coverage-istanbul-reporter\LICENSE
karma-jasmine-html-reporter@1.4.0 MIT https://github.com/dfederm/karma-jasmine-html-reporter https://github.com/dfederm/karma-jasmine-html-reporter/raw/master/LICENSE node_modules\karma-jasmine-html-reporter\LICENSE
karma-jasmine@1.1.2 MIT https://github.com/karma-runner/karma-jasmine https://github.com/karma-runner/karma-jasmine/raw/master/LICENSE node_modules\karma-jasmine\LICENSE
karma-source-map-support@1.3.0 MIT https://github.com/tschaub/karma-source-map-support https://github.com/tschaub/karma-source-map-support
karma@4.1.0 MIT https://github.com/karma-runner/karma https://github.com/karma-runner/karma/raw/master/LICENSE node_modules\karma\LICENSE
killable@1.0.1 ISC https://github.com/marten-de-vries/killable https://github.com/marten-de-vries/killable/raw/master/LICENSE node_modules\killable\LICENSE
kind-of@1.1.0 MIT https://github.com/jonschlinkert/kind-of https://github.com/jonschlinkert/kind-of/blob/master/LICENSE
kind-of@2.0.1 MIT https://github.com/jonschlinkert/kind-of https://github.com/jonschlinkert/kind-of/raw/master/LICENSE node_modules\engine\node_modules\kind-of\LICENSE
kind-of@3.2.2 MIT https://github.com/jonschlinkert/kind-of https://github.com/jonschlinkert/kind-of/raw/master/LICENSE node_modules\is-number\node_modules\kind-of\LICENSE
kind-of@4.0.0 MIT https://github.com/jonschlinkert/kind-of https://github.com/jonschlinkert/kind-of/raw/master/LICENSE node_modules\has-values\node_modules\kind-of\LICENSE
kind-of@5.1.0 MIT https://github.com/jonschlinkert/kind-of https://github.com/jonschlinkert/kind-of/raw/master/LICENSE node_modules\is-descriptor\node_modules\kind-of\LICENSE
kind-of@6.0.2 MIT https://github.com/jonschlinkert/kind-of https://github.com/jonschlinkert/kind-of/raw/master/LICENSE node_modules\kind-of\LICENSE
latest-version@3.1.0 MIT https://github.com/sindresorhus/latest-version https://github.com/sindresorhus/latest-version/raw/master/license node_modules\npm\node_modules\latest-version\license
layouts@0.11.0 MIT https://github.com/doowb/layouts https://github.com/doowb/layouts/raw/master/LICENSE node_modules\layouts\LICENSE
lazy-cache@0.2.7 MIT https://github.com/jonschlinkert/lazy-cache https://github.com/jonschlinkert/lazy-cache/raw/master/LICENSE node_modules\helper-cache\node_modules\lazy-cache\LICENSE
lazy-cache@1.0.4 MIT https://github.com/jonschlinkert/lazy-cache https://github.com/jonschlinkert/lazy-cache/raw/master/LICENSE node_modules\en-route\node_modules\lazy-cache\LICENSE
lazy-cache@2.0.2 MIT https://github.com/jonschlinkert/lazy-cache https://github.com/jonschlinkert/lazy-cache/raw/master/LICENSE node_modules\lazy-cache\LICENSE
lazy-property@1.0.0 MIT https://github.com/mikolalysenko/lazy-property https://github.com/mikolalysenko/lazy-property/raw/master/LICENSE node_modules\npm\node_modules\lazy-property\LICENSE
lazystream@1.0.0 MIT https://github.com/jpommerening/node-lazystream https://github.com/jpommerening/node-lazystream/raw/master/LICENSE-MIT node_modules\lazystream\LICENSE-MIT
lcid@1.0.0 MIT https://github.com/sindresorhus/lcid https://github.com/sindresorhus/lcid/raw/master/license node_modules\lcid\license
lcid@2.0.0 MIT https://github.com/sindresorhus/lcid https://github.com/sindresorhus/lcid/raw/master/license node_modules\webpack-dev-server\node_modules\lcid\license
less-loader@4.1.0 MIT https://github.com/webpack-contrib/less-loader https://github.com/webpack-contrib/less-loader/raw/master/LICENSE node_modules\less-loader\LICENSE
less@3.9.0 Apache-2.0 https://github.com/less/less.js https://github.com/less/less.js/raw/master/LICENSE node_modules\less\LICENSE
libcipm@3.0.3 MIT https://github.com/zkat/cipm https://github.com/zkat/cipm/raw/master/LICENSE.md node_modules\npm\node_modules\libcipm\LICENSE.md
libnpm@2.0.1 ISC https://github.com/npm/libnpm https://github.com/npm/libnpm/raw/master/LICENSE.md node_modules\npm\node_modules\libnpm\LICENSE.md
libnpmaccess@3.0.1 ISC https://github.com/npm/libnpmaccess https://github.com/npm/libnpmaccess/raw/master/LICENSE node_modules\npm\node_modules\libnpmaccess\LICENSE
libnpmconfig@1.2.1 ISC https://github.com/npm/libnpmconfig https://github.com/npm/libnpmconfig/raw/master/LICENSE node_modules\npm\node_modules\libnpmconfig\LICENSE
libnpmhook@5.0.2 ISC https://github.com/npm/libnpmhook https://github.com/npm/libnpmhook/raw/master/LICENSE.md node_modules\npm\node_modules\libnpmhook\LICENSE.md
libnpmorg@1.0.0 ISC https://github.com/npm/libnpmorg https://github.com/npm/libnpmorg/raw/master/LICENSE node_modules\npm\node_modules\libnpmorg\LICENSE
libnpmpublish@1.1.1 ISC https://github.com/npm/libnpmpublish https://github.com/npm/libnpmpublish/raw/master/LICENSE node_modules\npm\node_modules\libnpmpublish\LICENSE
libnpmsearch@2.0.0 ISC https://github.com/npm/libnpmsearch https://github.com/npm/libnpmsearch/raw/master/LICENSE node_modules\npm\node_modules\libnpmsearch\LICENSE
libnpmteam@1.0.1 ISC https://github.com/npm/libnpmteam https://github.com/npm/libnpmteam/raw/master/LICENSE node_modules\npm\node_modules\libnpmteam\LICENSE
libnpx@10.2.0 ISC https://github.com/zkat/npx https://github.com/zkat/npx/raw/master/LICENSE.md node_modules\npm\node_modules\libnpx\LICENSE.md
license-webpack-plugin@2.1.0 ISC https://github.com/xz64/license-webpack-plugin https://github.com/xz64/license-webpack-plugin/raw/master/LICENSE node_modules\license-webpack-plugin\LICENSE
lie@3.1.1 MIT https://github.com/calvinmetcalf/lie https://github.com/calvinmetcalf/lie/raw/master/license.md node_modules\lie\license.md
lightercollective@0.1.0 ISC node_modules\lightercollective\LICENSE
load-helpers@0.2.11 MIT https://github.com/jonschlinkert/load-helpers https://github.com/jonschlinkert/load-helpers/raw/master/LICENSE node_modules\load-helpers\LICENSE
load-json-file@1.1.0 MIT https://github.com/sindresorhus/load-json-file https://github.com/sindresorhus/load-json-file/raw/master/license node_modules\load-json-file\license
load-json-file@2.0.0 MIT https://github.com/sindresorhus/load-json-file https://github.com/sindresorhus/load-json-file/raw/master/license node_modules\@angular\compiler-cli\node_modules\load-json-file\license
load-pkg@3.0.1 MIT https://github.com/jonschlinkert/load-pkg https://github.com/jonschlinkert/load-pkg/raw/master/LICENSE node_modules\load-pkg\LICENSE
load-templates@0.11.4 MIT https://github.com/jonschlinkert/load-templates https://github.com/jonschlinkert/load-templates/raw/master/LICENSE node_modules\load-templates\LICENSE
load-templates@1.0.2 MIT https://github.com/jonschlinkert/load-templates https://github.com/jonschlinkert/load-templates/raw/master/LICENSE node_modules\base-config-schema\node_modules\load-templates\LICENSE
loader-runner@2.3.0 MIT https://github.com/webpack/loader-runner https://github.com/webpack/loader-runner
loader-utils@1.1.0 MIT https://github.com/webpack/loader-utils https://github.com/webpack/loader-utils/raw/master/LICENSE node_modules\loader-utils\LICENSE
loader-utils@1.2.3 MIT https://github.com/webpack/loader-utils https://github.com/webpack/loader-utils/raw/master/LICENSE node_modules\@angular-devkit\build-optimizer\node_modules\loader-utils\LICENSE
locate-path@2.0.0 MIT https://github.com/sindresorhus/locate-path https://github.com/sindresorhus/locate-path/raw/master/license node_modules\npm\node_modules\locate-path\license
locate-path@3.0.0 MIT https://github.com/sindresorhus/locate-path https://github.com/sindresorhus/locate-path/raw/master/license node_modules\npm\node_modules\libnpmconfig\node_modules\locate-path\license
lock-verify@2.1.0 ISC https://github.com/iarna/lock-verify https://github.com/iarna/lock-verify/raw/master/LICENSE node_modules\npm\node_modules\lock-verify\LICENSE
lockfile@1.0.4 ISC https://github.com/npm/lockfile https://github.com/npm/lockfile/raw/master/LICENSE node_modules\npm\node_modules\lockfile\LICENSE
lodash._arrayfilter@3.0.0 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE.txt node_modules\lodash._arrayfilter\LICENSE.txt
lodash._basecallback@3.3.1 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\lodash._basecallback\LICENSE
lodash._baseeach@3.0.4 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE.txt node_modules\lodash._baseeach\LICENSE.txt
lodash._basefilter@3.0.0 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE.txt node_modules\lodash._basefilter\LICENSE.txt
lodash._baseindexof@3.1.0 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE.txt node_modules\npm\node_modules\lodash._baseindexof\LICENSE.txt
lodash._baseisequal@3.0.7 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE.txt node_modules\lodash._baseisequal\LICENSE.txt
lodash._baseismatch@3.1.3 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE.txt node_modules\lodash._baseismatch\LICENSE.txt
lodash._basematches@3.2.0 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE.txt node_modules\lodash._basematches\LICENSE.txt
lodash._baseuniq@4.6.0 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\npm\node_modules\lodash._baseuniq\LICENSE
lodash._bindcallback@3.0.1 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE.txt node_modules\npm\node_modules\lodash._bindcallback\LICENSE.txt
lodash._cacheindexof@3.0.2 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE.txt node_modules\npm\node_modules\lodash._cacheindexof\LICENSE.txt
lodash._createcache@3.1.2 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\npm\node_modules\lodash._createcache\LICENSE
lodash._createset@4.0.3 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\npm\node_modules\lodash._createset\LICENSE
lodash._createwrapper@3.2.0 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\lodash._createwrapper\LICENSE
lodash._getnative@3.9.1 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\npm\node_modules\lodash._getnative\LICENSE
lodash._reinterpolate@3.0.0 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE.txt node_modules\lodash._reinterpolate\LICENSE.txt
lodash._replaceholders@3.0.0 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE.txt node_modules\lodash._replaceholders\LICENSE.txt
lodash._root@3.0.1 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\npm\node_modules\lodash._root\LICENSE
lodash.assign@4.2.0 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\lodash.assign\LICENSE
lodash.bind@3.1.0 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE.txt node_modules\lodash.bind\LICENSE.txt
lodash.clonedeep@4.5.0 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\lodash.clonedeep\LICENSE
lodash.debounce@4.0.8 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\lodash.debounce\LICENSE
lodash.filter@4.6.0 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\lodash.filter\LICENSE
lodash.flatten@4.4.0 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\lodash.flatten\LICENSE
lodash.foreach@4.5.0 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\lodash.foreach\LICENSE
lodash.initial@4.1.1 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\lodash.initial\LICENSE
lodash.isarguments@3.1.0 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\lodash.isarguments\LICENSE
lodash.isarray@3.0.4 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\lodash.isarray\LICENSE
lodash.isequal@4.5.0 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\lodash.isequal\LICENSE
lodash.istypedarray@3.0.6 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\lodash.istypedarray\LICENSE
lodash.keys@3.1.2 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\lodash.keys\LICENSE
lodash.last@3.0.0 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE.txt node_modules\lodash.last\LICENSE.txt
lodash.map@4.6.0 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\lodash.map\LICENSE
lodash.mergewith@4.6.1 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\lodash.mergewith\LICENSE
lodash.pairs@3.0.1 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE.txt node_modules\lodash.pairs\LICENSE.txt
lodash.restparam@3.6.1 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE.txt node_modules\npm\node_modules\lodash.restparam\LICENSE.txt
lodash.tail@4.1.1 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\lodash.tail\LICENSE
lodash.template@4.4.0 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\lodash.template\LICENSE
lodash.templatesettings@4.1.0 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\lodash.templatesettings\LICENSE
lodash.union@4.6.0 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\npm\node_modules\lodash.union\LICENSE
lodash.uniq@4.5.0 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\npm\node_modules\lodash.uniq\LICENSE
lodash.where@3.1.0 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE.txt node_modules\lodash.where\LICENSE.txt
lodash.without@4.4.0 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\npm\node_modules\lodash.without\LICENSE
lodash@4.17.11 MIT https://github.com/lodash/lodash https://github.com/lodash/lodash/raw/master/LICENSE node_modules\lodash\LICENSE
log-ok@0.1.1 MIT https://github.com/jonschlinkert/log-ok https://github.com/jonschlinkert/log-ok/raw/master/LICENSE node_modules\log-ok\LICENSE
log-utils@0.1.5 MIT https://github.com/jonschlinkert/log-utils https://github.com/jonschlinkert/log-utils/raw/master/LICENSE node_modules\base-runtimes\node_modules\log-utils\LICENSE
log-utils@0.2.1 MIT https://github.com/jonschlinkert/log-utils https://github.com/jonschlinkert/log-utils/raw/master/LICENSE node_modules\log-utils\LICENSE
log4js@4.1.0 Apache-2.0 https://github.com/log4js-node/log4js-node https://github.com/log4js-node/log4js-node/raw/master/LICENSE node_modules\log4js\LICENSE
loglevel@1.6.1 MIT https://github.com/pimterry/loglevel https://github.com/pimterry/loglevel/raw/master/LICENSE-MIT node_modules\loglevel\LICENSE-MIT
longest@1.0.1 MIT https://github.com/jonschlinkert/longest https://github.com/jonschlinkert/longest/blob/master/LICENSE node_modules\longest\LICENSE
loose-envify@1.4.0 MIT https://github.com/zertosh/loose-envify https://github.com/zertosh/loose-envify/raw/master/LICENSE node_modules\loose-envify\LICENSE
loud-rejection@1.6.0 MIT https://github.com/sindresorhus/loud-rejection https://github.com/sindresorhus/loud-rejection/raw/master/license node_modules\loud-rejection\license
lower-case@1.1.4 MIT https://github.com/blakeembrey/lower-case https://github.com/blakeembrey/lower-case/raw/master/LICENSE node_modules\lower-case\LICENSE
lowercase-keys@1.0.1 MIT https://github.com/sindresorhus/lowercase-keys https://github.com/sindresorhus/lowercase-keys/raw/master/license node_modules\npm\node_modules\lowercase-keys\license
lru-cache@4.1.3 ISC https://github.com/isaacs/node-lru-cache https://github.com/isaacs/node-lru-cache/raw/master/LICENSE node_modules\lru-cache\LICENSE
lru-cache@4.1.5 ISC https://github.com/isaacs/node-lru-cache https://github.com/isaacs/node-lru-cache/raw/master/LICENSE node_modules\npm\node_modules\lru-cache\LICENSE
lru-cache@5.1.1 ISC https://github.com/isaacs/node-lru-cache https://github.com/isaacs/node-lru-cache/raw/master/LICENSE node_modules\pacote\node_modules\lru-cache\LICENSE
magic-string@0.25.2 MIT https://github.com/rich-harris/magic-string https://github.com/rich-harris/magic-string/raw/master/LICENSE node_modules\magic-string\LICENSE
make-dir@1.3.0 MIT https://github.com/sindresorhus/make-dir https://github.com/sindresorhus/make-dir/raw/master/license node_modules\npm\node_modules\make-dir\license
make-dir@2.1.0 MIT https://github.com/sindresorhus/make-dir https://github.com/sindresorhus/make-dir/raw/master/license node_modules\terser-webpack-plugin\node_modules\make-dir\license
make-error@1.3.5 ISC https://github.com/JsCommunity/make-error https://github.com/JsCommunity/make-error/raw/master/LICENSE node_modules\make-error\LICENSE
make-fetch-happen@4.0.1 ISC https://github.com/zkat/make-fetch-happen https://github.com/zkat/make-fetch-happen/raw/master/LICENSE node_modules\make-fetch-happen\LICENSE
make-iterator@1.0.1 MIT https://github.com/jonschlinkert/make-iterator https://github.com/jonschlinkert/make-iterator/raw/master/LICENSE node_modules\make-iterator\LICENSE
mamacro@0.0.3 MIT
map-age-cleaner@0.1.3 MIT https://github.com/SamVerschueren/map-age-cleaner https://github.com/SamVerschueren/map-age-cleaner/raw/master/license node_modules\map-age-cleaner\license
map-cache@0.2.2 MIT https://github.com/jonschlinkert/map-cache https://github.com/jonschlinkert/map-cache/raw/master/LICENSE node_modules\map-cache\LICENSE
map-config@0.5.0 MIT https://github.com/doowb/map-config https://github.com/doowb/map-config/raw/master/LICENSE node_modules\map-config\LICENSE
map-obj@1.0.1 MIT https://github.com/sindresorhus/map-obj https://github.com/sindresorhus/map-obj/raw/master/license node_modules\map-obj\license
map-schema@0.2.4 MIT https://github.com/jonschlinkert/map-schema https://github.com/jonschlinkert/map-schema/raw/master/LICENSE node_modules\map-schema\LICENSE
map-visit@0.1.5 MIT https://github.com/jonschlinkert/map-visit https://github.com/jonschlinkert/map-visit/raw/master/LICENSE node_modules\engine\node_modules\map-visit\LICENSE
map-visit@1.0.0 MIT https://github.com/jonschlinkert/map-visit https://github.com/jonschlinkert/map-visit/raw/master/LICENSE node_modules\map-visit\LICENSE
match-file@0.2.2 MIT https://github.com/jonschlinkert/match-file https://github.com/jonschlinkert/match-file/raw/master/LICENSE node_modules\match-file\LICENSE
matched@0.4.4 MIT https://github.com/jonschlinkert/matched https://github.com/jonschlinkert/matched/raw/master/LICENSE node_modules\load-helpers\node_modules\matched\LICENSE
matched@1.0.2 MIT https://github.com/jonschlinkert/matched https://github.com/jonschlinkert/matched/raw/master/LICENSE node_modules\matched\LICENSE
material-design-icons@3.0.1 Apache-2.0 https://github.com/google/material-design-icons https://github.com/google/material-design-icons/raw/master/LICENSE node_modules\material-design-icons\LICENSE
math-random@1.0.1 MIT https://github.com/michaelrhodes/math-random https://github.com/michaelrhodes/math-random
md5.js@1.3.4 MIT https://github.com/crypto-browserify/md5.js https://github.com/crypto-browserify/md5.js/raw/master/LICENSE node_modules\md5.js\LICENSE
meant@1.0.1 MIT https://github.com/watilde/meant https://github.com/watilde/meant/raw/master/LICENSE node_modules\npm\node_modules\meant\LICENSE
media-typer@0.3.0 MIT https://github.com/jshttp/media-typer https://github.com/jshttp/media-typer/raw/master/LICENSE node_modules\media-typer\LICENSE