-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
1425 lines (1425 loc) · 57.5 KB
/
package.json
File metadata and controls
1425 lines (1425 loc) · 57.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "projectbf",
"version": "1.0.0",
"description": "初尝禁果",
"main": "gulpfile.js",
"directories": {
"doc": "doc"
},
"dependencies": {
"_ansi-colors@1.1.0@ansi-colors": "^1.1.0",
"_amdefine@1.0.1@amdefine": "^1.0.1",
"_ansi-regex@3.0.0@ansi-regex": "^3.0.0",
"_ansi-gray@0.1.1@ansi-gray": "^0.1.1",
"_ajv@6.10.0@ajv": "^6.10.0",
"_ansi-regex@2.1.1@ansi-regex": "^2.1.1",
"_ansi-styles@2.2.1@ansi-styles": "^2.2.1",
"_abbrev@1.1.1@abbrev": "^1.1.1",
"_ansi-wrap@0.1.0@ansi-wrap": "^0.1.0",
"_append-buffer@1.0.2@append-buffer": "^1.0.2",
"_anymatch@2.0.0@anymatch": "^2.0.0",
"_aproba@1.2.0@aproba": "^1.2.0",
"_ansi-styles@3.2.1@ansi-styles": "^3.2.1",
"_archy@1.0.0@archy": "^1.0.0",
"_are-we-there-yet@1.1.5@are-we-there-yet": "^1.1.5",
"_arr-diff@4.0.0@arr-diff": "^4.0.0",
"_anymatch@1.3.2@anymatch": "^1.3.2",
"_arr-filter@1.1.2@arr-filter": "^1.1.2",
"_argparse@1.0.10@argparse": "^1.0.10",
"_arr-flatten@1.1.0@arr-flatten": "^1.1.0",
"_arr-map@2.0.2@arr-map": "^2.0.2",
"_arr-union@3.1.0@arr-union": "^3.1.0",
"_array-find-index@1.0.2@array-find-index": "^1.0.2",
"_array-each@1.0.1@array-each": "^1.0.1",
"_arr-diff@2.0.0@arr-diff": "^2.0.0",
"_array-initial@1.1.0@array-initial": "^1.1.0",
"_array-last@1.3.0@array-last": "^1.3.0",
"_array-slice@1.1.0@array-slice": "^1.1.0",
"_arch@2.1.1@arch": "^2.1.1",
"_array-uniq@1.0.3@array-uniq": "^1.0.3",
"_array-uniq@2.1.0@array-uniq": "^2.1.0",
"_array-unique@0.2.1@array-unique": "^0.2.1",
"_arrify@1.0.1@arrify": "^1.0.1",
"_array-unique@0.3.2@array-unique": "^0.3.2",
"_archive-type@4.0.0@archive-type": "^4.0.0",
"_asn1@0.2.4@asn1": "^0.2.4",
"_assign-symbols@1.0.0@assign-symbols": "^1.0.0",
"_async-each@1.0.2@async-each": "^1.0.2",
"_assert-plus@1.0.0@assert-plus": "^1.0.0",
"_async-done@1.3.1@async-done": "^1.3.1",
"_async-settle@1.0.0@async-settle": "^1.0.0",
"_array-union@1.0.2@array-union": "^1.0.2",
"_array-sort@1.0.0@array-sort": "^1.0.0",
"_asynckit@0.4.0@asynckit": "^0.4.0",
"_atob@2.1.2@atob": "^2.1.2",
"_aws-sign2@0.7.0@aws-sign2": "^0.7.0",
"_aws4@1.8.0@aws4": "^1.8.0",
"_babel-code-frame@6.26.0@babel-code-frame": "^6.26.0",
"_async-foreach@0.1.3@async-foreach": "^0.1.3",
"_babel-core@6.26.3@babel-core": "^6.26.3",
"_babel-generator@6.26.1@babel-generator": "^6.26.1",
"_babel-helper-builder-binary-assignment-operator-visitor@6.24.1@babel-helper-builder-binary-assignment-operator-visitor": "^6.24.1",
"_babel-helper-call-delegate@6.24.1@babel-helper-call-delegate": "^6.24.1",
"_babel-helper-explode-assignable-expression@6.24.1@babel-helper-explode-assignable-expression": "^6.24.1",
"_babel-helper-define-map@6.26.0@babel-helper-define-map": "^6.26.0",
"_babel-helper-function-name@6.24.1@babel-helper-function-name": "^6.24.1",
"_babel-helper-remap-async-to-generator@6.24.1@babel-helper-remap-async-to-generator": "^6.24.1",
"_babel-helper-regex@6.26.0@babel-helper-regex": "^6.26.0",
"_babel-helper-hoist-variables@6.24.1@babel-helper-hoist-variables": "^6.24.1",
"_babel-helper-replace-supers@6.24.1@babel-helper-replace-supers": "^6.24.1",
"_babel-plugin-check-es2015-constants@6.22.0@babel-plugin-check-es2015-constants": "^6.22.0",
"_babel-helper-get-function-arity@6.24.1@babel-helper-get-function-arity": "^6.24.1",
"_babel-helpers@6.24.1@babel-helpers": "^6.24.1",
"_babel-plugin-syntax-exponentiation-operator@6.13.0@babel-plugin-syntax-exponentiation-operator": "^6.13.0",
"_babel-plugin-syntax-trailing-function-commas@6.22.0@babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"_babel-helper-optimise-call-expression@6.24.1@babel-helper-optimise-call-expression": "^6.24.1",
"_babel-plugin-transform-es2015-block-scoped-functions@6.22.0@babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0",
"_babel-messages@6.23.0@babel-messages": "^6.23.0",
"_babel-plugin-transform-es2015-arrow-functions@6.22.0@babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"_babel-plugin-transform-es2015-block-scoping@6.26.0@babel-plugin-transform-es2015-block-scoping": "^6.26.0",
"_babel-plugin-transform-es2015-computed-properties@6.24.1@babel-plugin-transform-es2015-computed-properties": "^6.24.1",
"_babel-plugin-transform-async-to-generator@6.24.1@babel-plugin-transform-async-to-generator": "^6.24.1",
"_babel-plugin-transform-es2015-duplicate-keys@6.24.1@babel-plugin-transform-es2015-duplicate-keys": "^6.24.1",
"_babel-plugin-transform-es2015-for-of@6.23.0@babel-plugin-transform-es2015-for-of": "^6.23.0",
"_babel-plugin-syntax-async-functions@6.13.0@babel-plugin-syntax-async-functions": "^6.13.0",
"_babel-plugin-transform-es2015-function-name@6.24.1@babel-plugin-transform-es2015-function-name": "^6.24.1",
"_babel-plugin-transform-es2015-modules-amd@6.24.1@babel-plugin-transform-es2015-modules-amd": "^6.24.1",
"_babel-plugin-transform-es2015-modules-systemjs@6.24.1@babel-plugin-transform-es2015-modules-systemjs": "^6.24.1",
"_babel-plugin-transform-es2015-classes@6.24.1@babel-plugin-transform-es2015-classes": "^6.24.1",
"_babel-plugin-transform-es2015-modules-commonjs@6.26.2@babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"_babel-plugin-transform-es2015-modules-umd@6.24.1@babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"_babel-plugin-transform-es2015-object-super@6.24.1@babel-plugin-transform-es2015-object-super": "^6.24.1",
"_babel-plugin-transform-es2015-destructuring@6.23.0@babel-plugin-transform-es2015-destructuring": "^6.23.0",
"_babel-plugin-transform-es2015-parameters@6.24.1@babel-plugin-transform-es2015-parameters": "^6.24.1",
"_babel-plugin-transform-es2015-spread@6.22.0@babel-plugin-transform-es2015-spread": "^6.22.0",
"_babel-plugin-transform-es2015-shorthand-properties@6.24.1@babel-plugin-transform-es2015-shorthand-properties": "^6.24.1",
"_babel-plugin-transform-es2015-literals@6.22.0@babel-plugin-transform-es2015-literals": "^6.22.0",
"_babel-plugin-transform-es2015-typeof-symbol@6.23.0@babel-plugin-transform-es2015-typeof-symbol": "^6.23.0",
"_babel-plugin-transform-exponentiation-operator@6.24.1@babel-plugin-transform-exponentiation-operator": "^6.24.1",
"_babel-plugin-transform-regenerator@6.26.0@babel-plugin-transform-regenerator": "^6.26.0",
"_babel-plugin-transform-es2015-unicode-regex@6.24.1@babel-plugin-transform-es2015-unicode-regex": "^6.24.1",
"_babel-plugin-transform-strict-mode@6.24.1@babel-plugin-transform-strict-mode": "^6.24.1",
"_babel-preset-env@1.7.0@babel-preset-env": "^1.7.0",
"_babel-preset-es2015@6.24.1@babel-preset-es2015": "^6.24.1",
"_babel-runtime@6.26.0@babel-runtime": "^6.26.0",
"_babel-template@6.26.0@babel-template": "^6.26.0",
"_babel-traverse@6.26.0@babel-traverse": "^6.26.0",
"_babel-types@6.26.0@babel-types": "^6.26.0",
"_babylon@6.18.0@babylon": "^6.18.0",
"_babel-plugin-transform-es2015-template-literals@6.22.0@babel-plugin-transform-es2015-template-literals": "^6.22.0",
"_bach@1.2.0@bach": "^1.2.0",
"_balanced-match@1.0.0@balanced-match": "^1.0.0",
"_bcrypt-pbkdf@1.0.2@bcrypt-pbkdf": "^1.0.2",
"_base@0.11.2@base": "^0.11.2",
"_bin-build@3.0.0@bin-build": "^3.0.0",
"_bin-check@4.1.0@bin-check": "^4.1.0",
"_babel-plugin-transform-es2015-sticky-regex@6.24.1@babel-plugin-transform-es2015-sticky-regex": "^6.24.1",
"_bin-version-check@4.0.0@bin-version-check": "^4.0.0",
"_binary-extensions@1.13.1@binary-extensions": "^1.13.1",
"_base64-js@1.3.0@base64-js": "^1.3.0",
"_bin-wrapper@4.1.0@bin-wrapper": "^4.1.0",
"_bin-version@3.1.0@bin-version": "^3.1.0",
"_boolbase@1.0.0@boolbase": "^1.0.0",
"_bl@1.2.2@bl": "^1.2.2",
"_brace-expansion@1.1.11@brace-expansion": "^1.1.11",
"_braces@2.3.2@braces": "^2.3.2",
"_braces@1.8.5@braces": "^1.8.5",
"_babel-register@6.26.0@babel-register": "^6.26.0",
"_browserslist@3.2.8@browserslist": "^3.2.8",
"_buffer-alloc@1.2.0@buffer-alloc": "^1.2.0",
"_buffer-equal@1.0.0@buffer-equal": "^1.0.0",
"_buffer-crc32@0.2.13@buffer-crc32": "^0.2.13",
"_block-stream@0.0.9@block-stream": "^0.0.9",
"_buffer-fill@1.0.0@buffer-fill": "^1.0.0",
"_cache-base@1.0.1@cache-base": "^1.0.1",
"_buffer@5.2.1@buffer": "^5.2.1",
"_cacheable-request@2.1.4@cacheable-request": "^2.1.4",
"_camel-case@3.0.0@camel-case": "^3.0.0",
"_call-me-maybe@1.0.1@call-me-maybe": "^1.0.1",
"_camelcase@2.1.1@camelcase": "^2.1.1",
"_camelcase@3.0.0@camelcase": "^3.0.0",
"_caniuse-lite@1.0.30000957@caniuse-lite": "^1.0.30000957",
"_caw@2.0.1@caw": "^2.0.1",
"_caseless@0.12.0@caseless": "^0.12.0",
"_chalk@1.1.3@chalk": "^1.1.3",
"_chalk@2.4.2@chalk": "^2.4.2",
"_camelcase-keys@2.1.0@camelcase-keys": "^2.1.0",
"_chokidar@2.1.5@chokidar": "^2.1.5",
"_class-utils@0.3.6@class-utils": "^0.3.6",
"_clean-css@4.2.1@clean-css": "^4.2.1",
"_clone-buffer@1.0.0@clone-buffer": "^1.0.0",
"_cliui@3.2.0@cliui": "^3.2.0",
"_clone-response@1.0.2@clone-response": "^1.0.2",
"_clone-stats@1.0.0@clone-stats": "^1.0.0",
"_buffer-from@1.1.1@buffer-from": "^1.1.1",
"_clone@2.1.2@clone": "^2.1.2",
"_clone-stats@0.0.1@clone-stats": "^0.0.1",
"_cloneable-readable@1.1.2@cloneable-readable": "^1.1.2",
"_coa@2.0.2@coa": "^2.0.2",
"_collection-map@1.0.0@collection-map": "^1.0.0",
"_clone@1.0.4@clone": "^1.0.4",
"_collection-visit@1.0.0@collection-visit": "^1.0.0",
"_code-point-at@1.1.0@code-point-at": "^1.1.0",
"_color-convert@1.9.3@color-convert": "^1.9.3",
"_color-support@1.1.3@color-support": "^1.1.3",
"_color-name@1.1.3@color-name": "^1.1.3",
"_commander@2.17.1@commander": "^2.17.1",
"_commander@2.20.0@commander": "^2.20.0",
"_buffer-alloc-unsafe@1.1.0@buffer-alloc-unsafe": "^1.1.0",
"_component-emitter@1.2.1@component-emitter": "^1.2.1",
"_commander@2.19.0@commander": "^2.19.0",
"_combined-stream@1.0.7@combined-stream": "^1.0.7",
"_concat-map@0.0.1@concat-map": "^0.0.1",
"_concat-with-sourcemaps@1.1.0@concat-with-sourcemaps": "^1.1.0",
"_config-chain@1.1.12@config-chain": "^1.1.12",
"_convert-source-map@1.6.0@convert-source-map": "^1.6.0",
"_concat-stream@1.6.2@concat-stream": "^1.6.2",
"_commander@2.8.1@commander": "^2.8.1",
"_content-disposition@0.5.3@content-disposition": "^0.5.3",
"_console-control-strings@1.1.0@console-control-strings": "^1.1.0",
"_copy-descriptor@0.1.1@copy-descriptor": "^0.1.1",
"_console-stream@0.1.1@console-stream": "^0.1.1",
"_copy-props@2.0.4@copy-props": "^2.0.4",
"_core-util-is@1.0.2@core-util-is": "^1.0.2",
"_cross-spawn@5.1.0@cross-spawn": "^5.1.0",
"_css-select-base-adapter@0.1.1@css-select-base-adapter": "^0.1.1",
"_cross-spawn@3.0.1@cross-spawn": "^3.0.1",
"_cross-spawn@6.0.5@cross-spawn": "^6.0.5",
"_css-url-regex@1.1.0@css-url-regex": "^1.1.0",
"_css-tree@1.0.0-alpha.29@css-tree": "^1.0.0-alpha.29",
"_css-select@2.0.2@css-select": "^2.0.2",
"_css-tree@1.0.0-alpha.28@css-tree": "^1.0.0-alpha.28",
"_css-what@2.1.3@css-what": "^2.1.3",
"_currently-unhandled@0.4.1@currently-unhandled": "^0.4.1",
"_debug@2.6.9@debug": "^2.6.9",
"_decode-uri-component@0.2.0@decode-uri-component": "^0.2.0",
"_csso@3.5.1@csso": "^3.5.1",
"_dashdash@1.14.1@dashdash": "^1.14.1",
"_d@1.0.0@d": "^1.0.0",
"_decamelize@1.2.0@decamelize": "^1.2.0",
"_decompress-tar@4.1.1@decompress-tar": "^4.1.1",
"_decompress-response@3.3.0@decompress-response": "^3.3.0",
"_decompress-tarbz2@4.1.1@decompress-tarbz2": "^4.1.1",
"_decompress-unzip@4.0.1@decompress-unzip": "^4.0.1",
"_default-resolution@2.0.0@default-resolution": "^2.0.0",
"_define-property@1.0.0@define-property": "^1.0.0",
"_default-compare@1.0.0@default-compare": "^1.0.0",
"_define-property@0.2.5@define-property": "^0.2.5",
"_define-properties@1.1.3@define-properties": "^1.1.3",
"_decompress@4.2.0@decompress": "^4.2.0",
"_define-property@2.0.2@define-property": "^2.0.2",
"_core-js@2.6.5@core-js": "^2.6.5",
"_delayed-stream@1.0.0@delayed-stream": "^1.0.0",
"_detect-file@1.0.0@detect-file": "^1.0.0",
"_decompress-targz@4.1.1@decompress-targz": "^4.1.1",
"_detect-indent@4.0.0@detect-indent": "^4.0.0",
"_dir-glob@2.0.0@dir-glob": "^2.0.0",
"_domelementtype@1.3.1@domelementtype": "^1.3.1",
"_domutils@1.7.0@domutils": "^1.7.0",
"_download@6.2.5@download": "^6.2.5",
"_delegates@1.0.0@delegates": "^1.0.0",
"_duplexify@3.7.1@duplexify": "^3.7.1",
"_download@7.1.0@download": "^7.1.0",
"_dom-serializer@0.1.1@dom-serializer": "^0.1.1",
"_duplexer3@0.1.4@duplexer3": "^0.1.4",
"_each-props@1.3.2@each-props": "^1.3.2",
"_end-of-stream@1.4.1@end-of-stream": "^1.4.1",
"_ecc-jsbn@0.1.2@ecc-jsbn": "^0.1.2",
"_electron-to-chromium@1.3.124@electron-to-chromium": "^1.3.124",
"_error-ex@1.3.2@error-ex": "^1.3.2",
"_entities@1.1.2@entities": "^1.1.2",
"_es-abstract@1.13.0@es-abstract": "^1.13.0",
"_es-to-primitive@1.2.0@es-to-primitive": "^1.2.0",
"_es6-iterator@2.0.3@es6-iterator": "^2.0.3",
"_es6-weak-map@2.0.2@es6-weak-map": "^2.0.2",
"_es5-ext@0.10.49@es5-ext": "^0.10.49",
"_es6-symbol@3.1.1@es6-symbol": "^3.1.1",
"_escape-string-regexp@1.0.5@escape-string-regexp": "^1.0.5",
"_exec-buffer@3.2.0@exec-buffer": "^3.2.0",
"_esutils@2.0.2@esutils": "^2.0.2",
"_esprima@4.0.1@esprima": "^4.0.1",
"_expand-brackets@0.1.5@expand-brackets": "^0.1.5",
"_expand-brackets@2.1.4@expand-brackets": "^2.1.4",
"_execa@0.7.0@execa": "^0.7.0",
"_expand-range@1.8.2@expand-range": "^1.8.2",
"_executable@4.1.1@executable": "^4.1.1",
"_expand-tilde@2.0.2@expand-tilde": "^2.0.2",
"_extend-shallow@2.0.1@extend-shallow": "^2.0.1",
"_ext-list@2.2.2@ext-list": "^2.2.2",
"_extend@3.0.2@extend": "^3.0.2",
"_extend-shallow@3.0.2@extend-shallow": "^3.0.2",
"_ext-name@5.0.0@ext-name": "^5.0.0",
"_extsprintf@1.4.0@extsprintf": "^1.4.0",
"_extsprintf@1.3.0@extsprintf": "^1.3.0",
"_execa@1.0.0@execa": "^1.0.0",
"_extglob@2.0.4@extglob": "^2.0.4",
"_extglob@0.3.2@extglob": "^0.3.2",
"_fast-glob@2.2.6@fast-glob": "^2.2.6",
"_fancy-log@1.3.2@fancy-log": "^1.3.2",
"_fast-deep-equal@2.0.1@fast-deep-equal": "^2.0.1",
"_fancy-log@1.3.3@fancy-log": "^1.3.3",
"_figures@1.7.0@figures": "^1.7.0",
"_fd-slicer@1.1.0@fd-slicer": "^1.1.0",
"_file-type@10.11.0@file-type": "^10.11.0",
"_file-type@3.9.0@file-type": "^3.9.0",
"_file-type@6.2.0@file-type": "^6.2.0",
"_file-type@4.4.0@file-type": "^4.4.0",
"_file-type@5.2.0@file-type": "^5.2.0",
"_filename-regex@2.0.1@filename-regex": "^2.0.1",
"_fill-range@4.0.0@fill-range": "^4.0.0",
"_file-type@8.1.0@file-type": "^8.1.0",
"_filenamify@2.1.0@filenamify": "^2.1.0",
"_filename-reserved-regex@2.0.0@filename-reserved-regex": "^2.0.0",
"_find-up@1.1.2@find-up": "^1.1.2",
"_findup-sync@2.0.0@findup-sync": "^2.0.0",
"_fill-range@2.2.4@fill-range": "^2.2.4",
"_fined@1.1.1@fined": "^1.1.1",
"_flagged-respawn@1.0.1@flagged-respawn": "^1.0.1",
"_first-chunk-stream@2.0.0@first-chunk-stream": "^2.0.0",
"_flush-write-stream@1.1.1@flush-write-stream": "^1.1.1",
"_for-in@1.0.2@for-in": "^1.0.2",
"_for-own@1.0.0@for-own": "^1.0.0",
"_findup-sync@3.0.0@findup-sync": "^3.0.0",
"_find-versions@3.0.0@find-versions": "^3.0.0",
"_fragment-cache@0.2.1@fragment-cache": "^0.2.1",
"_form-data@2.3.3@form-data": "^2.3.3",
"_forever-agent@0.6.1@forever-agent": "^0.6.1",
"_for-own@0.1.5@for-own": "^0.1.5",
"_fs-constants@1.0.0@fs-constants": "^1.0.0",
"_fs-mkdirp-stream@1.0.0@fs-mkdirp-stream": "^1.0.0",
"_fs.realpath@1.0.0@fs.realpath": "^1.0.0",
"_fsevents@1.2.7@fsevents": "^1.2.7",
"_from2@2.3.0@from2": "^2.3.0",
"_function-bind@1.1.1@function-bind": "^1.1.1",
"_fstream@1.0.11@fstream": "^1.0.11",
"_gaze@1.1.3@gaze": "^1.1.3",
"_gauge@2.7.4@gauge": "^2.7.4",
"_get-caller-file@1.0.3@get-caller-file": "^1.0.3",
"_get-proxy@2.1.0@get-proxy": "^2.1.0",
"_get-stream@2.3.1@get-stream": "^2.3.1",
"_fast-json-stable-stringify@2.0.0@fast-json-stable-stringify": "^2.0.0",
"_get-stream@4.1.0@get-stream": "^4.1.0",
"_get-stream@3.0.0@get-stream": "^3.0.0",
"_get-value@2.0.6@get-value": "^2.0.6",
"_getpass@0.1.7@getpass": "^0.1.7",
"_get-stdin@4.0.1@get-stdin": "^4.0.1",
"_glob-parent@3.1.0@glob-parent": "^3.1.0",
"_gifsicle@4.0.1@gifsicle": "^4.0.1",
"_glob-stream@6.1.0@glob-stream": "^6.1.0",
"_glob-base@0.3.0@glob-base": "^0.3.0",
"_glob-watcher@5.0.3@glob-watcher": "^5.0.3",
"_glob-parent@2.0.0@glob-parent": "^2.0.0",
"_glob-to-regexp@0.3.0@glob-to-regexp": "^0.3.0",
"_glob@7.1.3@glob": "^7.1.3",
"_global-modules@1.0.0@global-modules": "^1.0.0",
"_globby@8.0.2@globby": "^8.0.2",
"_got@7.1.0@got": "^7.1.0",
"_global-prefix@1.0.2@global-prefix": "^1.0.2",
"_glogg@1.0.2@glogg": "^1.0.2",
"_graceful-fs@4.1.15@graceful-fs": "^4.1.15",
"_globule@1.2.1@globule": "^1.2.1",
"_globals@9.18.0@globals": "^9.18.0",
"_got@8.3.2@got": "^8.3.2",
"_gulp-clean-css@4.0.0@gulp-clean-css": "^4.0.0",
"_gulp-htmlmin@5.0.1@gulp-htmlmin": "^5.0.1",
"_gulp-cli@2.1.0@gulp-cli": "^2.1.0",
"_gulp-rename@1.4.0@gulp-rename": "^1.4.0",
"_gulp-uglify@3.0.2@gulp-uglify": "^3.0.2",
"_gulp-babel@7.0.1@gulp-babel": "^7.0.1",
"_gulp-concat@2.6.1@gulp-concat": "^2.6.1",
"_gulp-imagemin@5.0.3@gulp-imagemin": "^5.0.3",
"_gulp-sass@4.0.2@gulp-sass": "^4.0.2",
"_gulp@4.0.0@gulp": "^4.0.0",
"_har-schema@2.0.0@har-schema": "^2.0.0",
"_gulp-watch@5.0.1@gulp-watch": "^5.0.1",
"_gulplog@1.0.0@gulplog": "^1.0.0",
"_has-gulplog@0.1.0@has-gulplog": "^0.1.0",
"_har-validator@5.1.3@har-validator": "^5.1.3",
"_has-ansi@2.0.0@has-ansi": "^2.0.0",
"_has-symbols@1.0.0@has-symbols": "^1.0.0",
"_has-symbol-support-x@1.4.2@has-symbol-support-x": "^1.4.2",
"_has-to-string-tag-x@1.4.1@has-to-string-tag-x": "^1.4.1",
"_has-flag@3.0.0@has-flag": "^3.0.0",
"_has-value@1.0.0@has-value": "^1.0.0",
"_has-value@0.3.1@has-value": "^0.3.1",
"_has-values@0.1.4@has-values": "^0.1.4",
"_has-unicode@2.0.1@has-unicode": "^2.0.1",
"_graceful-readlink@1.0.1@graceful-readlink": "^1.0.1",
"_has-values@1.0.0@has-values": "^1.0.0",
"_home-or-tmp@2.0.0@home-or-tmp": "^2.0.0",
"_has@1.0.3@has": "^1.0.3",
"_html-comment-regex@1.1.2@html-comment-regex": "^1.1.2",
"_hosted-git-info@2.7.1@hosted-git-info": "^2.7.1",
"_homedir-polyfill@1.0.3@homedir-polyfill": "^1.0.3",
"_he@1.2.0@he": "^1.2.0",
"_html-minifier@3.5.21@html-minifier": "^3.5.21",
"_http-cache-semantics@3.8.1@http-cache-semantics": "^3.8.1",
"_http-signature@1.2.0@http-signature": "^1.2.0",
"_ieee754@1.1.13@ieee754": "^1.1.13",
"_ignore@3.3.10@ignore": "^3.3.10",
"_imagemin-optipng@6.0.0@imagemin-optipng": "^6.0.0",
"_imagemin-jpegtran@6.0.0@imagemin-jpegtran": "^6.0.0",
"_in-publish@2.0.0@in-publish": "^2.0.0",
"_imagemin@6.1.0@imagemin": "^6.1.0",
"_import-lazy@3.1.0@import-lazy": "^3.1.0",
"_imagemin-gifsicle@6.0.1@imagemin-gifsicle": "^6.0.1",
"_inflight@1.0.6@inflight": "^1.0.6",
"_inherits@2.0.3@inherits": "^2.0.3",
"_indent-string@2.1.0@indent-string": "^2.1.0",
"_imagemin-svgo@7.0.0@imagemin-svgo": "^7.0.0",
"_ini@1.3.5@ini": "^1.3.5",
"_interpret@1.2.0@interpret": "^1.2.0",
"_into-stream@3.1.0@into-stream": "^3.1.0",
"_is-absolute@1.0.0@is-absolute": "^1.0.0",
"_is-accessor-descriptor@1.0.0@is-accessor-descriptor": "^1.0.0",
"_is-accessor-descriptor@0.1.6@is-accessor-descriptor": "^0.1.6",
"_invariant@2.2.4@invariant": "^2.2.4",
"_invert-kv@1.0.0@invert-kv": "^1.0.0",
"_irregular-plurals@2.0.0@irregular-plurals": "^2.0.0",
"_is-binary-path@1.0.1@is-binary-path": "^1.0.1",
"_is-buffer@1.1.6@is-buffer": "^1.1.6",
"_is-data-descriptor@0.1.4@is-data-descriptor": "^0.1.4",
"_is-data-descriptor@1.0.0@is-data-descriptor": "^1.0.0",
"_is-descriptor@0.1.6@is-descriptor": "^0.1.6",
"_is-arrayish@0.2.1@is-arrayish": "^0.2.1",
"_is-callable@1.1.4@is-callable": "^1.1.4",
"_is-date-object@1.0.1@is-date-object": "^1.0.1",
"_is-equal-shallow@0.1.3@is-equal-shallow": "^0.1.3",
"_is-descriptor@1.0.2@is-descriptor": "^1.0.2",
"_is-extendable@0.1.1@is-extendable": "^0.1.1",
"_is-extendable@1.0.1@is-extendable": "^1.0.1",
"_is-dotfile@1.0.3@is-dotfile": "^1.0.3",
"_is-finite@1.0.2@is-finite": "^1.0.2",
"_is-fullwidth-code-point@1.0.0@is-fullwidth-code-point": "^1.0.0",
"_is-extglob@1.0.0@is-extglob": "^1.0.0",
"_is-fullwidth-code-point@2.0.0@is-fullwidth-code-point": "^2.0.0",
"_is-glob@3.1.0@is-glob": "^3.1.0",
"_is-glob@4.0.1@is-glob": "^4.0.1",
"_is-gif@3.0.0@is-gif": "^3.0.0",
"_is-negated-glob@1.0.0@is-negated-glob": "^1.0.0",
"_is-glob@2.0.1@is-glob": "^2.0.1",
"_is-jpg@2.0.0@is-jpg": "^2.0.0",
"_is-natural-number@4.0.1@is-natural-number": "^4.0.1",
"_is-number@3.0.0@is-number": "^3.0.0",
"_is-number@4.0.0@is-number": "^4.0.0",
"_is-number@2.1.0@is-number": "^2.1.0",
"_is-posix-bracket@0.1.1@is-posix-bracket": "^0.1.1",
"_is-plain-obj@1.1.0@is-plain-obj": "^1.1.0",
"_is-png@1.1.0@is-png": "^1.1.0",
"_is-object@1.0.1@is-object": "^1.0.1",
"_is-relative@1.0.0@is-relative": "^1.0.0",
"_is-primitive@2.0.0@is-primitive": "^2.0.0",
"_is-extglob@2.1.1@is-extglob": "^2.1.1",
"_is-plain-object@2.0.4@is-plain-object": "^2.0.4",
"_is-regex@1.0.4@is-regex": "^1.0.4",
"_is-svg@3.0.0@is-svg": "^3.0.0",
"_is-typedarray@1.0.0@is-typedarray": "^1.0.0",
"_is-unc-path@1.0.0@is-unc-path": "^1.0.0",
"_is-retry-allowed@1.1.0@is-retry-allowed": "^1.1.0",
"_is-stream@1.1.0@is-stream": "^1.1.0",
"_is-utf8@0.2.1@is-utf8": "^0.2.1",
"_is-valid-glob@1.0.0@is-valid-glob": "^1.0.0",
"_is-windows@1.0.2@is-windows": "^1.0.2",
"_isarray@1.0.0@isarray": "^1.0.0",
"_isobject@2.1.0@isobject": "^2.1.0",
"_isexe@2.0.0@isexe": "^2.0.0",
"_is-symbol@1.0.2@is-symbol": "^1.0.2",
"_isobject@3.0.1@isobject": "^3.0.1",
"_isstream@0.1.2@isstream": "^0.1.2",
"_js-base64@2.5.1@js-base64": "^2.5.1",
"_jpegtran-bin@4.0.0@jpegtran-bin": "^4.0.0",
"_isurl@1.0.0@isurl": "^1.0.0",
"_js-tokens@3.0.2@js-tokens": "^3.0.2",
"_jsesc@1.3.0@jsesc": "^1.3.0",
"_jsbn@0.1.1@jsbn": "^0.1.1",
"_jsesc@0.5.0@jsesc": "^0.5.0",
"_json-buffer@3.0.0@json-buffer": "^3.0.0",
"_json-schema-traverse@0.4.1@json-schema-traverse": "^0.4.1",
"_js-tokens@4.0.0@js-tokens": "^4.0.0",
"_json-stable-stringify-without-jsonify@1.0.1@json-stable-stringify-without-jsonify": "^1.0.1",
"_json-schema@0.2.3@json-schema": "^0.2.3",
"_just-debounce@1.0.0@just-debounce": "^1.0.0",
"_json5@0.5.1@json5": "^0.5.1",
"_jsprim@1.4.1@jsprim": "^1.4.1",
"_kind-of@3.2.2@kind-of": "^3.2.2",
"_keyv@3.0.0@keyv": "^3.0.0",
"_kind-of@4.0.0@kind-of": "^4.0.0",
"_json-stringify-safe@5.0.1@json-stringify-safe": "^5.0.1",
"_kind-of@5.1.0@kind-of": "^5.1.0",
"_kind-of@6.0.2@kind-of": "^6.0.2",
"_last-run@1.1.1@last-run": "^1.1.1",
"_lazystream@1.0.0@lazystream": "^1.0.0",
"_js-yaml@3.13.1@js-yaml": "^3.13.1",
"_lead@1.0.0@lead": "^1.0.0",
"_lcid@1.0.0@lcid": "^1.0.0",
"_liftoff@3.1.0@liftoff": "^3.1.0",
"_load-json-file@1.1.0@load-json-file": "^1.1.0",
"_lodash@4.17.11@lodash": "^4.17.11",
"_lodash.clonedeep@4.5.0@lodash.clonedeep": "^4.5.0",
"_lodash.mergewith@4.6.1@lodash.mergewith": "^4.6.1",
"_lodash.assign@4.2.0@lodash.assign": "^4.2.0",
"_logalot@2.1.0@logalot": "^2.1.0",
"_longest@1.0.1@longest": "^1.0.1",
"_loud-rejection@1.6.0@loud-rejection": "^1.6.0",
"_lower-case@1.1.4@lower-case": "^1.1.4",
"_loose-envify@1.4.0@loose-envify": "^1.4.0",
"_lpad-align@1.1.2@lpad-align": "^1.1.2",
"_lowercase-keys@1.0.1@lowercase-keys": "^1.0.1",
"_make-error-cause@1.2.2@make-error-cause": "^1.2.2",
"_make-dir@1.3.0@make-dir": "^1.3.0",
"_make-iterator@1.0.1@make-iterator": "^1.0.1",
"_map-cache@0.2.2@map-cache": "^0.2.2",
"_lowercase-keys@1.0.0@lowercase-keys": "^1.0.0",
"_make-error@1.3.5@make-error": "^1.3.5",
"_lru-cache@4.1.5@lru-cache": "^4.1.5",
"_map-visit@1.0.0@map-visit": "^1.0.0",
"_map-obj@1.0.1@map-obj": "^1.0.1",
"_matchdep@2.0.0@matchdep": "^2.0.0",
"_math-random@1.0.4@math-random": "^1.0.4",
"_mdn-data@1.1.4@mdn-data": "^1.1.4",
"_meow@3.7.0@meow": "^3.7.0",
"_micromatch@2.3.11@micromatch": "^2.3.11",
"_micromatch@3.1.10@micromatch": "^3.1.10",
"_merge2@1.2.3@merge2": "^1.2.3",
"_minimatch@3.0.4@minimatch": "^3.0.4",
"_mime-db@1.39.0@mime-db": "^1.39.0",
"_mime-types@2.1.22@mime-types": "^2.1.22",
"_mixin-deep@1.3.1@mixin-deep": "^1.3.1",
"_mime-db@1.38.0@mime-db": "^1.38.0",
"_minimist@0.0.8@minimist": "^0.0.8",
"_minimist@1.2.0@minimist": "^1.2.0",
"_mimic-response@1.0.1@mimic-response": "^1.0.1",
"_ms@2.0.0@ms": "^2.0.0",
"_mkdirp@0.5.1@mkdirp": "^0.5.1",
"_nanomatch@1.2.13@nanomatch": "^1.2.13",
"_mute-stdout@1.0.1@mute-stdout": "^1.0.1",
"_nan@2.13.2@nan": "^2.13.2",
"_nice-try@1.0.5@nice-try": "^1.0.5",
"_next-tick@1.0.0@next-tick": "^1.0.0",
"_no-case@2.3.2@no-case": "^2.3.2",
"_node-gyp@3.8.0@node-gyp": "^3.8.0",
"_node-sass@4.11.0@node-sass": "^4.11.0",
"_normalize-path@2.1.1@normalize-path": "^2.1.1",
"_normalize-path@3.0.0@normalize-path": "^3.0.0",
"_now-and-later@2.0.1@now-and-later": "^2.0.1",
"_nopt@3.0.6@nopt": "^3.0.6",
"_normalize-package-data@2.5.0@normalize-package-data": "^2.5.0",
"_npm-run-path@2.0.2@npm-run-path": "^2.0.2",
"_npm-conf@1.1.3@npm-conf": "^1.1.3",
"_nth-check@1.0.2@nth-check": "^1.0.2",
"_number-is-nan@1.0.1@number-is-nan": "^1.0.1",
"_npmlog@4.1.2@npmlog": "^4.1.2",
"_oauth-sign@0.9.0@oauth-sign": "^0.9.0",
"_object-copy@0.1.0@object-copy": "^0.1.0",
"_object-keys@1.1.1@object-keys": "^1.1.1",
"_object.assign@4.1.0@object.assign": "^4.1.0",
"_object.defaults@1.1.0@object.defaults": "^1.1.0",
"_object-visit@1.0.1@object-visit": "^1.0.1",
"_object.getownpropertydescriptors@2.0.3@object.getownpropertydescriptors": "^2.0.3",
"_object.omit@2.0.1@object.omit": "^2.0.1",
"_object.pick@1.3.0@object.pick": "^1.3.0",
"_object.reduce@1.0.1@object.reduce": "^1.0.1",
"_normalize-url@2.0.1@normalize-url": "^2.0.1",
"_object-assign@4.1.1@object-assign": "^4.1.1",
"_object.map@1.0.1@object.map": "^1.0.1",
"_once@1.4.0@once": "^1.4.0",
"_object.values@1.1.0@object.values": "^1.1.0",
"_ordered-read-streams@1.0.1@ordered-read-streams": "^1.0.1",
"_os-filter-obj@2.0.0@os-filter-obj": "^2.0.0",
"_optipng-bin@5.1.0@optipng-bin": "^5.1.0",
"_os-locale@1.4.0@os-locale": "^1.4.0",
"_os-homedir@1.0.2@os-homedir": "^1.0.2",
"_os-tmpdir@1.0.2@os-tmpdir": "^1.0.2",
"_osenv@0.1.5@osenv": "^0.1.5",
"_p-cancelable@0.4.1@p-cancelable": "^0.4.1",
"_p-event@1.3.0@p-event": "^1.3.0",
"_p-event@2.3.1@p-event": "^2.3.1",
"_p-map-series@1.0.0@p-map-series": "^1.0.0",
"_p-pipe@1.2.0@p-pipe": "^1.2.0",
"_p-reduce@1.0.0@p-reduce": "^1.0.0",
"_param-case@2.1.1@param-case": "^2.1.1",
"_p-cancelable@0.3.0@p-cancelable": "^0.3.0",
"_p-is-promise@1.1.0@p-is-promise": "^1.1.0",
"_p-timeout@1.2.1@p-timeout": "^1.2.1",
"_p-finally@1.0.0@p-finally": "^1.0.0",
"_parse-json@2.2.0@parse-json": "^2.2.0",
"_parse-filepath@1.0.2@parse-filepath": "^1.0.2",
"_p-timeout@2.0.1@p-timeout": "^2.0.1",
"_pascalcase@0.1.1@pascalcase": "^0.1.1",
"_parse-glob@3.0.4@parse-glob": "^3.0.4",
"_parse-passwd@1.0.0@parse-passwd": "^1.0.0",
"_parse-node-version@1.0.1@parse-node-version": "^1.0.1",
"_path-is-absolute@1.0.1@path-is-absolute": "^1.0.1",
"_path-dirname@1.0.2@path-dirname": "^1.0.2",
"_path-exists@2.1.0@path-exists": "^2.1.0",
"_path-key@2.0.1@path-key": "^2.0.1",
"_path-root-regex@0.1.2@path-root-regex": "^0.1.2",
"_path-parse@1.0.6@path-parse": "^1.0.6",
"_pend@1.2.0@pend": "^1.2.0",
"_path-root@0.1.1@path-root": "^0.1.1",
"_path-type@3.0.0@path-type": "^3.0.0",
"_path-type@1.1.0@path-type": "^1.1.0",
"_performance-now@2.1.0@performance-now": "^2.1.0",
"_pify@2.3.0@pify": "^2.3.0",
"_pify@3.0.0@pify": "^3.0.0",
"_pify@4.0.1@pify": "^4.0.1",
"_plugin-error@1.0.1@plugin-error": "^1.0.1",
"_pinkie-promise@2.0.1@pinkie-promise": "^2.0.1",
"_posix-character-classes@0.1.1@posix-character-classes": "^0.1.1",
"_plur@3.1.1@plur": "^3.1.1",
"_pinkie@2.0.4@pinkie": "^2.0.4",
"_prepend-http@2.0.0@prepend-http": "^2.0.0",
"_preserve@0.2.0@preserve": "^0.2.0",
"_pretty-bytes@5.1.0@pretty-bytes": "^5.1.0",
"_prepend-http@1.0.4@prepend-http": "^1.0.4",
"_private@0.1.8@private": "^0.1.8",
"_process-nextick-args@2.0.0@process-nextick-args": "^2.0.0",
"_process-nextick-args@1.0.7@process-nextick-args": "^1.0.7",
"_pretty-hrtime@1.0.3@pretty-hrtime": "^1.0.3",
"_proto-list@1.2.4@proto-list": "^1.2.4",
"_pump@2.0.1@pump": "^2.0.1",
"_psl@1.1.31@psl": "^1.1.31",
"_pumpify@1.5.1@pumpify": "^1.5.1",
"_pseudomap@1.0.2@pseudomap": "^1.0.2",
"_pump@3.0.0@pump": "^3.0.0",
"_punycode@1.4.1@punycode": "^1.4.1",
"_q@1.5.1@q": "^1.5.1",
"_qs@6.5.2@qs": "^6.5.2",
"_query-string@5.1.1@query-string": "^5.1.1",
"_punycode@2.1.1@punycode": "^2.1.1",
"_readable-stream@2.3.6@readable-stream": "^2.3.6",
"_read-pkg-up@1.0.1@read-pkg-up": "^1.0.1",
"_readable-stream@3.3.0@readable-stream": "^3.3.0",
"_randomatic@3.1.1@randomatic": "^3.1.1",
"_readdirp@2.2.1@readdirp": "^2.2.1",
"_read-pkg@1.1.0@read-pkg": "^1.1.0",
"_rechoir@0.6.2@rechoir": "^0.6.2",
"_regenerator-runtime@0.11.1@regenerator-runtime": "^0.11.1",
"_redent@1.0.0@redent": "^1.0.0",
"_regex-not@1.0.2@regex-not": "^1.0.2",
"_regenerator-transform@0.10.1@regenerator-transform": "^0.10.1",
"_regenerate@1.4.0@regenerate": "^1.4.0",
"_regex-cache@0.4.4@regex-cache": "^0.4.4",
"_regexpu-core@2.0.0@regexpu-core": "^2.0.0",
"_regjsgen@0.2.0@regjsgen": "^0.2.0",
"_remove-bom-buffer@3.0.0@remove-bom-buffer": "^3.0.0",
"_regjsparser@0.1.5@regjsparser": "^0.1.5",
"_remove-bom-stream@1.2.0@remove-bom-stream": "^1.2.0",
"_remove-trailing-separator@1.1.0@remove-trailing-separator": "^1.1.0",
"_relateurl@0.2.7@relateurl": "^0.2.7",
"_repeat-element@1.1.3@repeat-element": "^1.1.3",
"_repeat-string@1.6.1@repeat-string": "^1.6.1",
"_replace-ext@1.0.0@replace-ext": "^1.0.0",
"_replace-ext@0.0.1@replace-ext": "^0.0.1",
"_repeating@2.0.1@repeating": "^2.0.1",
"_replace-homedir@1.0.0@replace-homedir": "^1.0.0",
"_resolve-dir@1.0.1@resolve-dir": "^1.0.1",
"_resolve-options@1.1.0@resolve-options": "^1.1.0",
"_request@2.88.0@request": "^2.88.0",
"_resolve-url@0.2.1@resolve-url": "^0.2.1",
"_require-directory@2.1.1@require-directory": "^2.1.1",
"_require-main-filename@1.0.1@require-main-filename": "^1.0.1",
"_resolve@1.10.0@resolve": "^1.10.0",
"_ret@0.1.15@ret": "^0.1.15",
"_safe-buffer@5.1.2@safe-buffer": "^5.1.2",
"_safe-regex@1.1.0@safe-regex": "^1.1.0",
"_responselike@1.0.2@responselike": "^1.0.2",
"_rimraf@2.6.3@rimraf": "^2.6.3",
"_safer-buffer@2.1.2@safer-buffer": "^2.1.2",
"_sass-graph@2.2.4@sass-graph": "^2.2.4",
"_semver-regex@2.0.0@semver-regex": "^2.0.0",
"_seek-bzip@1.0.5@seek-bzip": "^1.0.5",
"_sax@1.2.4@sax": "^1.2.4",
"_scss-tokenizer@0.2.3@scss-tokenizer": "^0.2.3",
"_semver-truncate@1.1.2@semver-truncate": "^1.1.2",
"_semver-greatest-satisfied-range@1.1.0@semver-greatest-satisfied-range": "^1.1.0",
"_set-value@0.4.3@set-value": "^0.4.3",
"_semver@5.7.0@semver": "^5.7.0",
"_set-value@2.0.0@set-value": "^2.0.0",
"_semver@5.3.0@semver": "^5.3.0",
"_set-blocking@2.0.0@set-blocking": "^2.0.0",
"_snapdragon-node@2.1.1@snapdragon-node": "^2.1.1",
"_shebang-command@1.2.0@shebang-command": "^1.2.0",
"_snapdragon-util@3.0.1@snapdragon-util": "^3.0.1",
"_signal-exit@3.0.2@signal-exit": "^3.0.2",
"_snapdragon@0.8.2@snapdragon": "^0.8.2",
"_shebang-regex@1.0.0@shebang-regex": "^1.0.0",
"_slash@1.0.0@slash": "^1.0.0",
"_source-map-resolve@0.5.2@source-map-resolve": "^0.5.2",
"_sort-keys-length@1.0.1@sort-keys-length": "^1.0.1",
"_source-map-url@0.4.0@source-map-url": "^0.4.0",
"_sort-keys@1.1.2@sort-keys": "^1.1.2",
"_sort-keys@2.0.0@sort-keys": "^2.0.0",
"_source-map-support@0.4.18@source-map-support": "^0.4.18",
"_sparkles@1.0.1@sparkles": "^1.0.1",
"_source-map@0.6.1@source-map": "^0.6.1",
"_source-map@0.4.4@source-map": "^0.4.4",
"_source-map@0.5.7@source-map": "^0.5.7",
"_spdx-correct@3.1.0@spdx-correct": "^3.1.0",
"_spdx-expression-parse@3.0.0@spdx-expression-parse": "^3.0.0",
"_spdx-exceptions@2.2.0@spdx-exceptions": "^2.2.0",
"_split-string@3.1.0@split-string": "^3.1.0",
"_spdx-license-ids@3.0.4@spdx-license-ids": "^3.0.4",
"_sprintf-js@1.0.3@sprintf-js": "^1.0.3",
"_sshpk@1.16.1@sshpk": "^1.16.1",
"_static-extend@0.1.2@static-extend": "^0.1.2",
"_stable@0.1.8@stable": "^0.1.8",
"_squeak@1.3.0@squeak": "^1.3.0",
"_stack-trace@0.0.10@stack-trace": "^0.0.10",
"_stream-exhaust@1.0.2@stream-exhaust": "^1.0.2",
"_stream-shift@1.0.0@stream-shift": "^1.0.0",
"_stdout-stream@1.4.1@stdout-stream": "^1.4.1",
"_string_decoder@1.1.1@string_decoder": "^1.1.1",
"_strict-uri-encode@1.1.0@strict-uri-encode": "^1.1.0",
"_string-width@2.1.1@string-width": "^2.1.1",
"_string_decoder@1.2.0@string_decoder": "^1.2.0",
"_strip-ansi@3.0.1@strip-ansi": "^3.0.1",
"_string-width@1.0.2@string-width": "^1.0.2",
"_strip-ansi@4.0.0@strip-ansi": "^4.0.0",
"_strip-bom-stream@2.0.0@strip-bom-stream": "^2.0.0",
"_strip-bom@2.0.0@strip-bom": "^2.0.0",
"_strip-dirs@2.1.0@strip-dirs": "^2.1.0",
"_strip-indent@1.0.1@strip-indent": "^1.0.1",
"_supports-color@2.0.0@supports-color": "^2.0.0",
"_sver-compat@1.5.0@sver-compat": "^1.5.0",
"_supports-color@5.5.0@supports-color": "^5.5.0",
"_strip-outer@1.0.1@strip-outer": "^1.0.1",
"_tar-stream@1.6.2@tar-stream": "^1.6.2",
"_tempfile@2.0.0@tempfile": "^2.0.0",
"_through2-concurrent@2.0.0@through2-concurrent": "^2.0.0",
"_through2@2.0.5@through2": "^2.0.5",
"_temp-dir@1.0.0@temp-dir": "^1.0.0",
"_through2-filter@3.0.0@through2-filter": "^3.0.0",
"_through2@3.0.0@through2": "^3.0.0",
"_strip-eof@1.0.0@strip-eof": "^1.0.0",
"_through@2.3.8@through": "^2.3.8",
"_tar@2.2.1@tar": "^2.2.1",
"_to-absolute-glob@2.0.2@to-absolute-glob": "^2.0.2",
"_svgo@1.2.1@svgo": "^1.2.1",
"_time-stamp@1.1.0@time-stamp": "^1.1.0",
"_to-object-path@0.3.0@to-object-path": "^0.3.0",
"_to-regex-range@2.1.1@to-regex-range": "^2.1.1",
"_timed-out@4.0.1@timed-out": "^4.0.1",
"_to-through@2.0.0@to-through": "^2.0.0",
"_to-fast-properties@1.0.3@to-fast-properties": "^1.0.3",
"_to-buffer@1.1.1@to-buffer": "^1.1.1",
"_to-regex@3.0.2@to-regex": "^3.0.2",
"_tough-cookie@2.4.3@tough-cookie": "^2.4.3",
"_trim-right@1.0.1@trim-right": "^1.0.1",
"_trim-newlines@1.0.0@trim-newlines": "^1.0.0",
"_trim-repeated@1.0.0@trim-repeated": "^1.0.0",
"_tunnel-agent@0.6.0@tunnel-agent": "^0.6.0",
"_uglify-js@3.5.4@uglify-js": "^3.5.4",
"_tweetnacl@0.14.5@tweetnacl": "^0.14.5",
"_typedarray@0.0.6@typedarray": "^0.0.6",
"_true-case-path@1.0.3@true-case-path": "^1.0.3",
"_unc-path-regex@0.1.2@unc-path-regex": "^0.1.2",
"_undertaker-registry@1.0.1@undertaker-registry": "^1.0.1",
"_uglify-js@3.4.10@uglify-js": "^3.4.10",
"_unbzip2-stream@1.3.3@unbzip2-stream": "^1.3.3",
"_undertaker@1.2.1@undertaker": "^1.2.1",
"_union-value@1.0.0@union-value": "^1.0.0",
"_unique-stream@2.3.1@unique-stream": "^2.3.1",
"_unset-value@1.0.0@unset-value": "^1.0.0",
"_upath@1.1.2@upath": "^1.1.2",
"_urix@0.1.0@urix": "^0.1.0",
"_uri-js@4.2.2@uri-js": "^4.2.2",
"_url-parse-lax@1.0.0@url-parse-lax": "^1.0.0",
"_upper-case@1.1.3@upper-case": "^1.1.3",
"_use@3.1.1@use": "^3.1.1",
"_unquote@1.1.1@unquote": "^1.1.1",
"_util-deprecate@1.0.2@util-deprecate": "^1.0.2",
"_url-parse-lax@3.0.0@url-parse-lax": "^3.0.0",
"_url-to-options@1.0.1@url-to-options": "^1.0.1",
"_util.promisify@1.0.0@util.promisify": "^1.0.0",
"_value-or-function@3.0.0@value-or-function": "^3.0.0",
"_uuid@3.3.2@uuid": "^3.3.2",
"_validate-npm-package-license@3.0.4@validate-npm-package-license": "^3.0.4",
"_vinyl-fs@3.0.3@vinyl-fs": "^3.0.3",
"_verror@1.10.0@verror": "^1.10.0",
"_v8flags@3.1.2@v8flags": "^3.1.2",
"_vinyl-sourcemap@1.1.0@vinyl-sourcemap": "^1.1.0",
"_vinyl-sourcemaps-apply@0.2.1@vinyl-sourcemaps-apply": "^0.2.1",
"_vinyl-file@2.0.0@vinyl-file": "^2.0.0",
"_vinyl@2.2.0@vinyl": "^2.2.0",
"_which-module@1.0.0@which-module": "^1.0.0",
"_vinyl@1.2.0@vinyl": "^1.2.0",
"_which@1.3.1@which": "^1.3.1",
"_wrappy@1.0.2@wrappy": "^1.0.2",
"_wrap-ansi@2.1.0@wrap-ansi": "^2.1.0",
"_wide-align@1.1.3@wide-align": "^1.1.3",
"_xtend@4.0.1@xtend": "^4.0.1",
"_y18n@3.2.1@y18n": "^3.2.1",
"_yallist@2.1.2@yallist": "^2.1.2",
"abbrev": "^1.1.1",
"_yargs@7.1.0@yargs": "^7.1.0",
"_yauzl@2.10.0@yauzl": "^2.10.0",
"_yargs-parser@5.0.0@yargs-parser": "^5.0.0",
"amdefine": "^1.0.1",
"ansi-colors": "^1.1.0",
"ansi-styles": "^3.2.1",
"ansi-regex": "^2.1.1",
"ajv": "^6.10.0",
"ansi-gray": "^0.1.1",
"anymatch": "^2.0.0",
"ansi-wrap": "^0.1.0",
"arch": "^2.1.1",
"append-buffer": "^1.0.2",
"archive-type": "^4.0.0",
"aproba": "^1.2.0",
"archy": "^1.0.0",
"argparse": "^1.0.10",
"arr-diff": "^4.0.0",
"are-we-there-yet": "^1.1.5",
"arr-filter": "^1.1.2",
"arr-map": "^2.0.2",
"arr-flatten": "^1.1.0",
"arr-union": "^3.1.0",
"array-each": "^1.0.1",
"array-find-index": "^1.0.2",
"array-initial": "^1.1.0",
"array-union": "^1.0.2",
"array-last": "^1.3.0",
"array-slice": "^1.1.0",
"array-uniq": "^2.1.0",
"array-unique": "^0.3.2",
"asn1": "^0.2.4",
"array-sort": "^1.0.0",
"arrify": "^1.0.1",
"async-done": "^1.3.1",
"async-each": "^1.0.2",
"assert-plus": "^1.0.0",
"assign-symbols": "^1.0.0",
"async-foreach": "^0.1.3",
"asynckit": "^0.4.0",
"atob": "^2.1.2",
"babel-core": "^6.26.3",
"async-settle": "^1.0.0",
"aws4": "^1.8.0",
"babel-code-frame": "^6.26.0",
"babel-generator": "^6.26.1",
"aws-sign2": "^0.7.0",
"babel-helper-builder-binary-assignment-operator-visitor": "^6.24.1",
"babel-helper-define-map": "^6.26.0",
"babel-helper-explode-assignable-expression": "^6.24.1",
"babel-helper-function-name": "^6.24.1",
"babel-helper-call-delegate": "^6.24.1",
"babel-helper-hoist-variables": "^6.24.1",
"babel-helper-remap-async-to-generator": "^6.24.1",
"babel-helper-optimise-call-expression": "^6.24.1",
"babel-helper-regex": "^6.26.0",
"babel-helper-get-function-arity": "^6.24.1",
"babel-helper-replace-supers": "^6.24.1",
"babel-helpers": "^6.24.1",
"babel-messages": "^6.23.0",
"babel-plugin-check-es2015-constants": "^6.22.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-syntax-exponentiation-operator": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoping": "^6.26.0",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-es2015-computed-properties": "^6.24.1",
"babel-plugin-transform-es2015-duplicate-keys": "^6.24.1",
"babel-plugin-transform-es2015-for-of": "^6.23.0",
"babel-plugin-transform-es2015-function-name": "^6.24.1",
"babel-plugin-transform-es2015-literals": "^6.22.0",
"babel-plugin-transform-es2015-modules-amd": "^6.24.1",
"babel-plugin-transform-es2015-modules-systemjs": "^6.24.1",
"babel-plugin-transform-es2015-object-super": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-plugin-transform-es2015-shorthand-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-es2015-sticky-regex": "^6.24.1",
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
"babel-plugin-transform-es2015-unicode-regex": "^6.24.1",
"babel-plugin-transform-es2015-typeof-symbol": "^6.23.0",
"babel-plugin-transform-exponentiation-operator": "^6.24.1",
"babel-plugin-transform-strict-mode": "^6.24.1",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"babel-template": "^6.26.0",
"babel-types": "^6.26.0",
"babel-runtime": "^6.26.0",
"babel-traverse": "^6.26.0",
"balanced-match": "^1.0.0",
"babylon": "^6.18.0",
"bach": "^1.2.0",
"base": "^0.11.2",
"base64-js": "^1.3.0",
"bcrypt-pbkdf": "^1.0.2",
"bin-check": "^4.1.0",
"bin-build": "^3.0.0",
"bin-version-check": "^4.0.0",
"bin-version": "^3.1.0",
"bin-wrapper": "^4.1.0",
"block-stream": "^0.0.9",
"bl": "^1.2.2",
"binary-extensions": "^1.13.1",
"boolbase": "^1.0.0",
"brace-expansion": "^1.1.11",
"braces": "^2.3.2",
"buffer": "^5.2.1",
"browserslist": "^3.2.8",
"buffer-alloc-unsafe": "^1.1.0",
"buffer-crc32": "^0.2.13",
"buffer-fill": "^1.0.0",
"buffer-alloc": "^1.2.0",
"buffer-equal": "^1.0.0",
"buffer-from": "^1.1.1",
"cache-base": "^1.0.1",
"camel-case": "^3.0.0",
"cacheable-request": "^2.1.4",
"call-me-maybe": "^1.0.1",
"camelcase-keys": "^2.1.0",
"caseless": "^0.12.0",
"caniuse-lite": "^1.0.30000957",
"camelcase": "^3.0.0",
"chalk": "^2.4.2",
"caw": "^2.0.1",
"chokidar": "^2.1.5",
"class-utils": "^0.3.6",
"clean-css": "^4.2.1",
"clone": "^2.1.2",
"cliui": "^3.2.0",
"clone-response": "^1.0.2",
"clone-stats": "^1.0.0",
"clone-buffer": "^1.0.0",
"cloneable-readable": "^1.1.2",
"coa": "^2.0.2",
"collection-visit": "^1.0.0",
"code-point-at": "^1.1.0",
"color-convert": "^1.9.3",
"collection-map": "^1.0.0",
"color-name": "^1.1.3",
"color-support": "^1.1.3",
"combined-stream": "^1.0.7",
"commander": "^2.20.0",
"component-emitter": "^1.2.1",
"concat-map": "^0.0.1",
"concat-stream": "^1.6.2",
"console-control-strings": "^1.1.0",
"config-chain": "^1.1.12",
"convert-source-map": "^1.6.0",
"concat-with-sourcemaps": "^1.1.0",
"content-disposition": "^0.5.3",
"console-stream": "^0.1.1",
"copy-descriptor": "^0.1.1",
"copy-props": "^2.0.4",
"core-js": "^2.6.5",
"core-util-is": "^1.0.2",
"cross-spawn": "^6.0.5",
"css-select": "^2.0.2",
"css-tree": "^1.0.0-alpha.29",
"css-select-base-adapter": "^0.1.1",
"css-what": "^2.1.3",
"css-url-regex": "^1.1.0",
"csso": "^3.5.1",
"dashdash": "^1.14.1",
"currently-unhandled": "^0.4.1",
"debug": "^2.6.9",
"d": "^1.0.0",
"decamelize": "^1.2.0",
"decompress-response": "^3.3.0",
"decompress": "^4.2.0",
"decode-uri-component": "^0.2.0",
"decompress-tar": "^4.1.1",
"decompress-tarbz2": "^4.1.1",
"decompress-targz": "^4.1.1",
"decompress-unzip": "^4.0.1",
"default-compare": "^1.0.0",
"default-resolution": "^2.0.0",
"define-properties": "^1.1.3",
"define-property": "^2.0.2",
"delegates": "^1.0.0",
"detect-file": "^1.0.0",
"detect-indent": "^4.0.0",
"delayed-stream": "^1.0.0",
"dom-serializer": "^0.1.1",
"dir-glob": "^2.0.0",
"download": "^7.1.0",
"domelementtype": "^1.3.1",
"domutils": "^1.7.0",
"duplexer3": "^0.1.4",
"duplexify": "^3.7.1",
"electron-to-chromium": "^1.3.124",
"each-props": "^1.3.2",
"end-of-stream": "^1.4.1",
"ecc-jsbn": "^0.1.2",
"entities": "^1.1.2",
"error-ex": "^1.3.2",
"es-to-primitive": "^1.2.0",
"es5-ext": "^0.10.49",
"es6-symbol": "^3.1.1",
"es6-iterator": "^2.0.3",
"es6-weak-map": "^2.0.2",
"es-abstract": "^1.13.0",
"esprima": "^4.0.1",
"escape-string-regexp": "^1.0.5",
"esutils": "^2.0.2",
"exec-buffer": "^3.2.0",
"execa": "^1.0.0",
"expand-brackets": "^2.1.4",
"expand-range": "^1.8.2",
"expand-tilde": "^2.0.2",
"ext-list": "^2.2.2",
"ext-name": "^5.0.0",
"extend": "^3.0.2",
"executable": "^4.1.1",
"extsprintf": "^1.4.0",
"extend-shallow": "^3.0.2",
"extglob": "^2.0.4",
"fast-deep-equal": "^2.0.1",
"fancy-log": "^1.3.3",
"fast-glob": "^2.2.6",
"fast-json-stable-stringify": "^2.0.0",
"figures": "^1.7.0",
"fd-slicer": "^1.1.0",
"file-type": "^10.11.0",
"filename-regex": "^2.0.1",
"fill-range": "^4.0.0",
"filename-reserved-regex": "^2.0.0",
"filenamify": "^2.1.0",
"find-up": "^1.1.2",
"find-versions": "^3.0.0",
"fined": "^1.1.1",
"first-chunk-stream": "^2.0.0",
"findup-sync": "^3.0.0",
"flagged-respawn": "^1.0.1",
"flush-write-stream": "^1.1.1",
"forever-agent": "^0.6.1",
"for-own": "^1.0.0",
"for-in": "^1.0.2",
"form-data": "^2.3.3",