-
Notifications
You must be signed in to change notification settings - Fork 488
/
yarn.lock
5571 lines (4811 loc) · 243 KB
/
yarn.lock
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
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@babel/runtime@^7.1.2":
"integrity" "sha512-NE2DtOdufG7R5vnfQUTehdTfNycfUANEtCa9PssN9O/xmTzP4E08UI797ixaei6hBEVL9BI/PsdJS5x7mWoB9Q=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.2.tgz"
"version" "7.9.2"
dependencies:
"regenerator-runtime" "^0.13.4"
"@types/mime-types@^2.1.0":
"integrity" "sha1-nKUs2jY/aZxpRmwqbM2q2RPqenM= sha512-8LDSKVdJxwfJXZAcHRwFDxozsTCo3UmIpDjN1cOnYMTr0h4ivK9I+IdEMdtjnssFm0y66vbnpd21mAgGZ1oGAQ=="
"resolved" "https://registry.npmjs.org/@types/mime-types/-/mime-types-2.1.0.tgz"
"version" "2.1.0"
"abbrev@1", "[email protected]":
"integrity" "sha1-kbR5JYinc4wl813W9jdSovh3YTU= sha512-LEyx4aLEC3x6T0UguF6YILf+ntvmOaWsVfENmIW0E9H09vKlLDGelMjjSm0jkDHALj8A8quZ/HapKNigzwge+Q=="
"resolved" "https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz"
"version" "1.0.9"
"accepts@~1.3.4":
"integrity" "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA=="
"resolved" "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz"
"version" "1.3.7"
dependencies:
"mime-types" "~2.1.24"
"negotiator" "0.6.2"
"accepts@~1.3.7":
"integrity" "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA=="
"resolved" "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz"
"version" "1.3.7"
dependencies:
"mime-types" "~2.1.24"
"negotiator" "0.6.2"
"integrity" "sha1-w8p0NJOGSMPg2cHjKN1otiLChMo= sha512-AOPopplFOUlmUugwiZUCDpOwmqvSgdCyE8iJVLWI4NcB7qfMKQN34dn5xYtlUU03XGG5egRWW4NW5gIxpa5hEA=="
"resolved" "https://registry.npmjs.org/accepts/-/accepts-1.3.3.tgz"
"version" "1.3.3"
dependencies:
"mime-types" "~2.1.11"
"negotiator" "0.6.1"
"integrity" "sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8= sha512-QbJ0NTQ/I9DI3uSJA4cbexiwQeRAfjPScqIbSjUDd9TOrcg6pTkdgziesOqxBMBzit8vFCTwrP27t13vFOORRA=="
"resolved" "https://registry.npmjs.org/after/-/after-0.8.2.tgz"
"version" "0.8.2"
"agent-base@5":
"integrity" "sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g=="
"resolved" "https://registry.npmjs.org/agent-base/-/agent-base-5.1.1.tgz"
"version" "5.1.1"
"ajv@^6.5.5":
"integrity" "sha512-D6gFiFA0RRLyUbvijN74DWAjXSFxWKaWP7mldxkVhyhAV3+SWA9HEJPHQ2c9soIeTFJqcSdFDGFgdqs1iUU2Hw=="
"resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.0.tgz"
"version" "6.12.0"
dependencies:
"fast-deep-equal" "^3.1.1"
"fast-json-stable-stringify" "^2.0.0"
"json-schema-traverse" "^0.4.1"
"uri-js" "^4.2.2"
"amdefine@>=0.0.4":
"integrity" "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU= sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg=="
"resolved" "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz"
"version" "1.0.1"
"ansi-regex@^1.0.0":
"integrity" "sha1-QchHGUZGN15qGl0Qw8oFTvn8mA0= sha512-q5i8bFLg2wDfsuR56c1NzlJFPzVD+9mxhDrhqOGigEFa87OZHlF+9dWeGWzVTP/0ECiA/JUGzfzRr2t3eYORRw=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-1.1.1.tgz"
"version" "1.1.1"
"ansi-regex@^2.0.0":
"integrity" "sha1-w7M6te42DYbg5ijwRorn7yfWVN8= sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"
"version" "2.1.1"
"ansi-styles@^2.2.1":
"integrity" "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"
"version" "2.2.1"
"anymatch@^1.3.0":
"integrity" "sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA=="
"resolved" "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz"
"version" "1.3.2"
dependencies:
"micromatch" "^2.1.5"
"normalize-path" "^2.0.0"
"append-buffer@^1.0.2":
"integrity" "sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE= sha512-WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA=="
"resolved" "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"buffer-equal" "^1.0.0"
"argparse@^1.0.7":
"integrity" "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="
"resolved" "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"
"version" "1.0.10"
dependencies:
"sprintf-js" "~1.0.2"
"arr-diff@^2.0.0":
"integrity" "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8= sha512-dtXTVMkh6VkEEA7OhXnN1Ecb8aAGFdZ1LFxtOCoqj4qkyOJMt7+qs6Ahdy6p/NQCPYsRSXXivhSB/J5E9jmYKA=="
"resolved" "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"arr-flatten" "^1.0.1"
"arr-diff@^4.0.0":
"integrity" "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA=="
"resolved" "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz"
"version" "4.0.0"
"arr-flatten@^1.0.1", "arr-flatten@^1.1.0":
"integrity" "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="
"resolved" "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz"
"version" "1.1.0"
"arr-union@^3.1.0":
"integrity" "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q=="
"resolved" "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz"
"version" "3.1.0"
"array-find-index@^1.0.1":
"integrity" "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E= sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw=="
"resolved" "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz"
"version" "1.0.2"
"integrity" "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg=="
"resolved" "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz"
"version" "1.1.1"
"array-slice@^0.2.3":
"integrity" "sha1-3Tz7gO15c6dRF82sabC5nshhhvU= sha512-rlVfZW/1Ph2SNySXwR9QYkChp8EkOEiTMO5Vwx60usw04i4nWemkm9RXmQqgkQFaLHsqLuADvjp6IfgL9l2M8Q=="
"resolved" "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz"
"version" "0.2.3"
"array-unique@^0.2.1":
"integrity" "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM= sha512-G2n5bG5fSUCpnsXz4+8FUkYsGPkNfLn9YvS66U5qbTIXI2Ynnlo4Bi42bWv+omKUCqz+ejzfClwne0alJWJPhg=="
"resolved" "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz"
"version" "0.2.1"
"array-unique@^0.3.2":
"integrity" "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ=="
"resolved" "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz"
"version" "0.3.2"
"integrity" "sha1-8zshWfBTKj8xB6JywMz70a0peco= sha512-6ZjfQaBSy6CuIH0+B0NrxMfDE5VIOCP/5gOqSpEIsaAZx9/giszzrXg6PZ7G51U/n88UmlAgYLNQ9wAnII7PJA=="
"resolved" "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz"
"version" "0.0.6"
"asap@~2.0.3":
"integrity" "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA=="
"resolved" "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz"
"version" "2.0.6"
"asn1@~0.2.3":
"integrity" "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg=="
"resolved" "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz"
"version" "0.2.4"
dependencies:
"safer-buffer" "~2.1.0"
"assert-plus@^1.0.0", "[email protected]":
"integrity" "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw=="
"resolved" "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"
"version" "1.0.0"
"assert@^1.1.1":
"integrity" "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA=="
"resolved" "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz"
"version" "1.5.0"
dependencies:
"object-assign" "^4.1.1"
"util" "0.10.3"
"assertion-error@^1.0.1":
"integrity" "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw=="
"resolved" "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz"
"version" "1.1.0"
"assign-symbols@^1.0.0":
"integrity" "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw=="
"resolved" "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz"
"version" "1.0.0"
"async-each@^1.0.0":
"integrity" "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ=="
"resolved" "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz"
"version" "1.0.3"
"async-limiter@~1.0.0":
"integrity" "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ=="
"resolved" "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz"
"version" "1.0.1"
"async@^0.9.0":
"integrity" "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0= sha512-l6ToIJIotphWahxxHyzK9bnLR6kM4jJIIgLShZeqLY7iboHoGkdgFl7W2/Ivi4SkMJYGKqW8vSuk0uKUj6qsSw=="
"resolved" "https://registry.npmjs.org/async/-/async-0.9.2.tgz"
"version" "0.9.2"
"async@^1.3.0", "[email protected]":
"integrity" "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo= sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w=="
"resolved" "https://registry.npmjs.org/async/-/async-1.5.2.tgz"
"version" "1.5.2"
"async@~0.2.6":
"integrity" "sha1-trvgsGdLnXGXCMo43owjfLUmw9E= sha512-eAkdoKxU6/LkKDBzLpT+t6Ff5EtfSF4wx1WfJiPEEV7WNLnDaRXk0oVysiEPm262roaachGexwUv94WhSgN5TQ=="
"resolved" "https://registry.npmjs.org/async/-/async-0.2.10.tgz"
"version" "0.2.10"
"async@~0.9.0":
"integrity" "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0= sha512-l6ToIJIotphWahxxHyzK9bnLR6kM4jJIIgLShZeqLY7iboHoGkdgFl7W2/Ivi4SkMJYGKqW8vSuk0uKUj6qsSw=="
"resolved" "https://registry.npmjs.org/async/-/async-0.9.2.tgz"
"version" "0.9.2"
"asynckit@^0.4.0":
"integrity" "sha1-x57Zf380y48robyXkLzDZkdLS3k= sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
"resolved" "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"
"version" "0.4.0"
"atob@^2.1.2":
"integrity" "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg=="
"resolved" "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz"
"version" "2.1.2"
"aws-sign2@~0.7.0":
"integrity" "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA=="
"resolved" "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz"
"version" "0.7.0"
"aws4@^1.8.0":
"integrity" "sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug=="
"resolved" "https://registry.npmjs.org/aws4/-/aws4-1.9.1.tgz"
"version" "1.9.1"
"babel-cli@^6.24.0":
"integrity" "sha1-UCq1SHTX24itALiHoGODzgPQAvE= sha512-wau+BDtQfuSBGQ9PzzFL3REvR9Sxnd4LKwtcHAiPjhugA7K/80vpHXafj+O5bAqJOuSefjOx5ZJnNSR2J1Qw6Q=="
"resolved" "https://registry.npmjs.org/babel-cli/-/babel-cli-6.26.0.tgz"
"version" "6.26.0"
dependencies:
"babel-core" "^6.26.0"
"babel-polyfill" "^6.26.0"
"babel-register" "^6.26.0"
"babel-runtime" "^6.26.0"
"commander" "^2.11.0"
"convert-source-map" "^1.5.0"
"fs-readdir-recursive" "^1.0.0"
"glob" "^7.1.2"
"lodash" "^4.17.4"
"output-file-sync" "^1.1.2"
"path-is-absolute" "^1.0.1"
"slash" "^1.0.0"
"source-map" "^0.5.6"
"v8flags" "^2.1.1"
optionalDependencies:
"chokidar" "^1.6.1"
"babel-code-frame@^6.22.0", "babel-code-frame@^6.26.0":
"integrity" "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g=="
"resolved" "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz"
"version" "6.26.0"
dependencies:
"chalk" "^1.1.3"
"esutils" "^2.0.2"
"js-tokens" "^3.0.2"
"babel-core@^6.0.0", "babel-core@^6.24.0", "babel-core@^6.26.0":
"integrity" "sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA=="
"resolved" "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz"
"version" "6.26.3"
dependencies:
"babel-code-frame" "^6.26.0"
"babel-generator" "^6.26.0"
"babel-helpers" "^6.24.1"
"babel-messages" "^6.23.0"
"babel-register" "^6.26.0"
"babel-runtime" "^6.26.0"
"babel-template" "^6.26.0"
"babel-traverse" "^6.26.0"
"babel-types" "^6.26.0"
"babylon" "^6.18.0"
"convert-source-map" "^1.5.1"
"debug" "^2.6.9"
"json5" "^0.5.1"
"lodash" "^4.17.4"
"minimatch" "^3.0.4"
"path-is-absolute" "^1.0.1"
"private" "^0.1.8"
"slash" "^1.0.0"
"source-map" "^0.5.7"
"babel-eslint@^7.1.1":
"integrity" "sha1-sv4tgBJkcPXBlELcdXJTqJdxCCc= sha512-i2yKOhjgwUbUrJ8oJm6QqRzltIoFahGNPZ0HF22lUN4H1DW03JQyJm7WSv+I1LURQWjDNhVqFo04acYa07rhOQ=="
"resolved" "https://registry.npmjs.org/babel-eslint/-/babel-eslint-7.2.3.tgz"
"version" "7.2.3"
dependencies:
"babel-code-frame" "^6.22.0"
"babel-traverse" "^6.23.1"
"babel-types" "^6.23.0"
"babylon" "^6.17.0"
"babel-generator@^6.26.0":
"integrity" "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA=="
"resolved" "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz"
"version" "6.26.1"
dependencies:
"babel-messages" "^6.23.0"
"babel-runtime" "^6.26.0"
"babel-types" "^6.26.0"
"detect-indent" "^4.0.0"
"jsesc" "^1.3.0"
"lodash" "^4.17.4"
"source-map" "^0.5.7"
"trim-right" "^1.0.1"
"babel-helper-bindify-decorators@^6.24.1":
"integrity" "sha1-FMGeXxQte0fxmlJDHlKxzLxAozA= sha512-TYX2QQATKA6Wssp6j7jqlw4QLmABDN1olRdEHndYvBXdaXM5dcx6j5rN0+nd+aVL+Th40fAEYvvw/Xxd/LETuQ=="
"resolved" "https://registry.npmjs.org/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-runtime" "^6.22.0"
"babel-traverse" "^6.24.1"
"babel-types" "^6.24.1"
"babel-helper-builder-binary-assignment-operator-visitor@^6.24.1":
"integrity" "sha1-zORReto1b0IgvK6KAsKzRvmlZmQ= sha512-gCtfYORSG1fUMX4kKraymq607FWgMWg+j42IFPc18kFQEsmtaibP4UrqsXt8FlEJle25HUd4tsoDR7H2wDhe9Q=="
"resolved" "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-helper-explode-assignable-expression" "^6.24.1"
"babel-runtime" "^6.22.0"
"babel-types" "^6.24.1"
"babel-helper-builder-react-jsx@^6.24.1":
"integrity" "sha1-Of+DE7dci2Xc7/HzHTg+D/KkCKA= sha512-02I9jDjnVEuGy2BR3LRm9nPRb/+Ja0pvZVLr1eI5TYAA/dB0Xoc+WBo50+aDfhGDLhlBY1+QURjn9uvcFd8gzg=="
"resolved" "https://registry.npmjs.org/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz"
"version" "6.26.0"
dependencies:
"babel-runtime" "^6.26.0"
"babel-types" "^6.26.0"
"esutils" "^2.0.2"
"babel-helper-call-delegate@^6.24.1":
"integrity" "sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340= sha512-RL8n2NiEj+kKztlrVJM9JT1cXzzAdvWFh76xh/H1I4nKwunzE4INBXn8ieCZ+wh4zWszZk7NBS1s/8HR5jDkzQ=="
"resolved" "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-helper-hoist-variables" "^6.24.1"
"babel-runtime" "^6.22.0"
"babel-traverse" "^6.24.1"
"babel-types" "^6.24.1"
"babel-helper-define-map@^6.24.1":
"integrity" "sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8= sha512-bHkmjcC9lM1kmZcVpA5t2om2nzT/xiZpo6TJq7UlZ3wqKfzia4veeXbIhKvJXAMzhhEBd3cR1IElL5AenWEUpA=="
"resolved" "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz"
"version" "6.26.0"
dependencies:
"babel-helper-function-name" "^6.24.1"
"babel-runtime" "^6.26.0"
"babel-types" "^6.26.0"
"lodash" "^4.17.4"
"babel-helper-explode-assignable-expression@^6.24.1":
"integrity" "sha1-8luCz33BBDPFX3BZLVdGQArCLKo= sha512-qe5csbhbvq6ccry9G7tkXbzNtcDiH4r51rrPUbwwoTzZ18AqxWYRZT6AOmxrpxKnQBW0pYlBI/8vh73Z//78nQ=="
"resolved" "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-runtime" "^6.22.0"
"babel-traverse" "^6.24.1"
"babel-types" "^6.24.1"
"babel-helper-explode-class@^6.24.1":
"integrity" "sha1-fcKjkQ3uAHBW4eMdZAztPVTqqes= sha512-SFbWewr0/0U4AiRzsHqwsbOQeLXVa9T1ELdqEa2efcQB5KopTnunAqoj07TuHlN2lfTQNPGO/rJR4FMln5fVcA=="
"resolved" "https://registry.npmjs.org/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-helper-bindify-decorators" "^6.24.1"
"babel-runtime" "^6.22.0"
"babel-traverse" "^6.24.1"
"babel-types" "^6.24.1"
"babel-helper-function-name@^6.24.1":
"integrity" "sha1-00dbjAPtmCQqJbSDUasYOZ01gKk= sha512-Oo6+e2iX+o9eVvJ9Y5eKL5iryeRdsIkwRYheCuhYdVHsdEQysbc2z2QkqCLIYnNxkT5Ss3ggrHdXiDI7Dhrn4Q=="
"resolved" "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-helper-get-function-arity" "^6.24.1"
"babel-runtime" "^6.22.0"
"babel-template" "^6.24.1"
"babel-traverse" "^6.24.1"
"babel-types" "^6.24.1"
"babel-helper-get-function-arity@^6.24.1":
"integrity" "sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0= sha512-WfgKFX6swFB1jS2vo+DwivRN4NB8XUdM3ij0Y1gnC21y1tdBoe6xjVnd7NSI6alv+gZXCtJqvrTeMW3fR/c0ng=="
"resolved" "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-runtime" "^6.22.0"
"babel-types" "^6.24.1"
"babel-helper-hoist-variables@^6.24.1":
"integrity" "sha1-HssnaJydJVE+rbyZFKc/VAi+enY= sha512-zAYl3tqerLItvG5cKYw7f1SpvIxS9zi7ohyGHaI9cgDUjAT6YcY9jIEH5CstetP5wHIVSceXwNS7Z5BpJg+rOw=="
"resolved" "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-runtime" "^6.22.0"
"babel-types" "^6.24.1"
"babel-helper-optimise-call-expression@^6.24.1":
"integrity" "sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc= sha512-Op9IhEaxhbRT8MDXx2iNuMgciu2V8lDvYCNQbDGjdBNCjaMvyLf4wl4A3b8IgndCyQF8TwfgsQ8T3VD8aX1/pA=="
"resolved" "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-runtime" "^6.22.0"
"babel-types" "^6.24.1"
"babel-helper-regex@^6.24.1":
"integrity" "sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI= sha512-VlPiWmqmGJp0x0oK27Out1D+71nVVCTSdlbhIVoaBAj2lUgrNjBCRR9+llO4lTSb2O4r7PJg+RobRkhBrf6ofg=="
"resolved" "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz"
"version" "6.26.0"
dependencies:
"babel-runtime" "^6.26.0"
"babel-types" "^6.26.0"
"lodash" "^4.17.4"
"babel-helper-remap-async-to-generator@^6.24.1":
"integrity" "sha1-XsWBgnrXI/7N04HxySg5BnbkVRs= sha512-RYqaPD0mQyQIFRu7Ho5wE2yvA/5jxqCIj/Lv4BXNq23mHYu/vxikOy2JueLiBxQknwapwrJeNCesvY0ZcfnlHg=="
"resolved" "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-helper-function-name" "^6.24.1"
"babel-runtime" "^6.22.0"
"babel-template" "^6.24.1"
"babel-traverse" "^6.24.1"
"babel-types" "^6.24.1"
"babel-helper-replace-supers@^6.24.1":
"integrity" "sha1-v22/5Dk40XNpohPKiov3S2qQqxo= sha512-sLI+u7sXJh6+ToqDr57Bv973kCepItDhMou0xCP2YPVmR1jkHSCY+p1no8xErbV1Siz5QE8qKT1WIwybSWlqjw=="
"resolved" "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-helper-optimise-call-expression" "^6.24.1"
"babel-messages" "^6.23.0"
"babel-runtime" "^6.22.0"
"babel-template" "^6.24.1"
"babel-traverse" "^6.24.1"
"babel-types" "^6.24.1"
"babel-helpers@^6.24.1":
"integrity" "sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI= sha512-n7pFrqQm44TCYvrCDb0MqabAF+JUBq+ijBvNMUxpkLjJaAu32faIexewMumrH5KLLJ1HDyT0PTEqRyAe/GwwuQ=="
"resolved" "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-runtime" "^6.22.0"
"babel-template" "^6.24.1"
"babel-loader@~6.4.1":
"integrity" "sha1-CzQRLVsHSKjc2/Uaz2+b1C1QuMo= sha512-hHvbCsXtwKIznu5Qmqfe/IwZ4O5frqe+j04fN/5u/9Rg48dpWIKyYqAN68N1wwqGSMToo4FhU9/MrH+QZlFdkQ=="
"resolved" "https://registry.npmjs.org/babel-loader/-/babel-loader-6.4.1.tgz"
"version" "6.4.1"
dependencies:
"find-cache-dir" "^0.1.1"
"loader-utils" "^0.2.16"
"mkdirp" "^0.5.1"
"object-assign" "^4.0.1"
"babel-messages@^6.23.0":
"integrity" "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4= sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w=="
"resolved" "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-plugin-check-es2015-constants@^6.22.0":
"integrity" "sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o= sha512-B1M5KBP29248dViEo1owyY32lk1ZSH2DaNNrXLGt8lyjjHm7pBqAdQ7VKUPR6EEDO323+OvT3MQXbCin8ooWdA=="
"resolved" "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-plugin-syntax-async-functions@^6.8.0":
"integrity" "sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU= sha512-4Zp4unmHgw30A1eWI5EpACji2qMocisdXhAftfhXoSV9j0Tvj6nRFE3tOmRY912E0FMRm/L5xWE7MGVT2FoLnw=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz"
"version" "6.13.0"
"babel-plugin-syntax-async-generators@^6.5.0":
"integrity" "sha1-a8lj67FuzLrmuStZbrfzXDQqi5o= sha512-EbciFN5Jb9iqU9bqaLmmFLx2G8pAUsvpWJ6OzOWBNrSY9qTohXj+7YfZx6Ug1Qqh7tCb1EA7Jvn9bMC1HBiucg=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz"
"version" "6.13.0"
"babel-plugin-syntax-class-constructor-call@^6.18.0":
"integrity" "sha1-nLnTn+Q8hgC+yBRkVt3L1OGnZBY= sha512-EEuBcXz/wZ81Jaac0LnMHtD4Mfz9XWn2oH2Xj+CHwz2SZWUqqdtR2BgWPSdTGMmxN/5KLSh4PImt9+9ZedDarA=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz"
"version" "6.18.0"
"babel-plugin-syntax-class-properties@^6.8.0":
"integrity" "sha1-1+sjt5oxf4VDlixQW4J8fWysJ94= sha512-chI3Rt9T1AbrQD1s+vxw3KcwC9yHtF621/MacuItITfZX344uhQoANjpoSJZleAmW2tjlolqB/f+h7jIqXa7pA=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz"
"version" "6.13.0"
"babel-plugin-syntax-decorators@^6.1.18", "babel-plugin-syntax-decorators@^6.13.0":
"integrity" "sha1-MSVjtNvePMgGzuPkFszurd0RrAs= sha512-AWj19x2aDm8qFQ5O2JcD6pwJDW1YdcnO+1b81t7gxrGjz5VHiUqeYWAR4h7zueWMalRelrQDXprv2FrY1dbpbw=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz"
"version" "6.13.0"
"babel-plugin-syntax-do-expressions@^6.8.0":
"integrity" "sha1-V0d1YTmqJtOQ0JQQsDdEugfkeW0= sha512-HD/5qJB9oSXzl0caxM+aRD7ENICXqcc3Up/8toDQk7zNIDE7TzsqtxC5f4t9Rwhu2Ya8l9l4j6b3vOsy+a6qxg=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz"
"version" "6.13.0"
"babel-plugin-syntax-dynamic-import@^6.18.0":
"integrity" "sha1-jWomIpyDdFqZgqRBBRVyyqF5sdo= sha512-MioUE+LfjCEz65Wf7Z/Rm4XCP5k2c+TbMd2Z2JKc7U9uwjBhAfNPE48KC4GTGKhppMeYVepwDBNO/nGY6NYHBA=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz"
"version" "6.18.0"
"babel-plugin-syntax-exponentiation-operator@^6.8.0":
"integrity" "sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4= sha512-Z/flU+T9ta0aIEKl1tGEmN/pZiI1uXmCiGFRegKacQfEJzp7iNsKloZmyJlQr+75FCJtiFfGIK03SiCvCt9cPQ=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz"
"version" "6.13.0"
"babel-plugin-syntax-export-extensions@^6.8.0":
"integrity" "sha1-cKFITw+QiaToStRLrDU8lbmxJyE= sha512-Eo0rcRaIDMld/W6mVhePiudIuLW+Cr/8eveW3mBREfZORScZgx4rh6BAPyvzdEc/JZvQ+LkC80t0VGFs6FX+lg=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz"
"version" "6.13.0"
"babel-plugin-syntax-flow@^6.18.0":
"integrity" "sha1-TDqyCiryaqIM0lmVw5jE63AxDI0= sha512-HbTDIoG1A1op7Tl/wIFQPULIBA61tsJ8Ntq2FAhLwuijrzosM/92kAfgU1Q3Kc7DH/cprJg5vDfuTY4QUL4rDA=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz"
"version" "6.18.0"
"babel-plugin-syntax-function-bind@^6.8.0":
"integrity" "sha1-SMSV8Xe98xqYHnMvVa3AvdJgH0Y= sha512-m8yMoh9LIiNyeLdQs5I9G+3YXo4nqVsKQkk7YplrG4qAFbNi9hkZlow8HDHxhH9QOVFPHmy8+03NzRCdyChIKw=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz"
"version" "6.13.0"
"babel-plugin-syntax-jsx@^6.3.13", "babel-plugin-syntax-jsx@^6.8.0":
"integrity" "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY= sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz"
"version" "6.18.0"
"babel-plugin-syntax-object-rest-spread@^6.8.0":
"integrity" "sha1-/WU28rzhODb/o6VFjEkDpZe7O/U= sha512-C4Aq+GaAj83pRQ0EFgTvw5YO6T3Qz2KGrNRwIj9mSoNHVvdZY4KO2uA6HNtNXCw993iSZnckY1aLW8nOi8i4+w=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz"
"version" "6.13.0"
"babel-plugin-syntax-trailing-function-commas@^6.22.0":
"integrity" "sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM= sha512-Gx9CH3Q/3GKbhs07Bszw5fPTlU+ygrOGfAhEt7W2JICwufpC4SuO0mG0+4NykPBSYPMJhqvVlDBU17qB1D+hMQ=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz"
"version" "6.22.0"
"babel-plugin-transform-async-generator-functions@^6.24.1":
"integrity" "sha1-8FiQAUX9PpkHpt3yjaWfIVJYpds= sha512-uT7eovUxtXe8Q2ufcjRuJIOL0hg6VAUJhiWJBLxH/evYAw+aqoJLcYTR8hqx13iOx/FfbCMHgBmXWZjukbkyPg=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-helper-remap-async-to-generator" "^6.24.1"
"babel-plugin-syntax-async-generators" "^6.5.0"
"babel-runtime" "^6.22.0"
"babel-plugin-transform-async-to-generator@^6.24.1":
"integrity" "sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E= sha512-7BgYJujNCg0Ti3x0c/DL3tStvnKS6ktIYOmo9wginv/dfZOrbSZ+qG4IRRHMBOzZ5Awb1skTiAsQXg/+IWkZYw=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-helper-remap-async-to-generator" "^6.24.1"
"babel-plugin-syntax-async-functions" "^6.8.0"
"babel-runtime" "^6.22.0"
"babel-plugin-transform-class-constructor-call@^6.24.1":
"integrity" "sha1-gNwoVQWsBn3LjWxl4vbxGrd2Xvk= sha512-RvYukT1Nh7njz8P8326ztpQUGCKwmjgu6aRIx1lkvylWITYcskg29vy1Kp8WXIq7FvhXsz0Crf2kS94bjB690A=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-plugin-syntax-class-constructor-call" "^6.18.0"
"babel-runtime" "^6.22.0"
"babel-template" "^6.24.1"
"babel-plugin-transform-class-properties@^6.24.1":
"integrity" "sha1-anl2PqYdM9NvN7YRqp3vgagbRqw= sha512-n4jtBA3OYBdvG5PRMKsMXJXHfLYw/ZOmtxCLOOwz6Ro5XlrColkStLnz1AS1L2yfPA9BKJ1ZNlmVCLjAL9DSIg=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-helper-function-name" "^6.24.1"
"babel-plugin-syntax-class-properties" "^6.8.0"
"babel-runtime" "^6.22.0"
"babel-template" "^6.24.1"
"babel-plugin-transform-decorators-legacy@^1.3.4":
"integrity" "sha512-jYHwjzRXRelYQ1uGm353zNzf3QmtdCfvJbuYTZ4gKveK7M9H1fs3a5AKdY1JUDl0z97E30ukORW1dzhWvsabtA=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-decorators-legacy/-/babel-plugin-transform-decorators-legacy-1.3.5.tgz"
"version" "1.3.5"
dependencies:
"babel-plugin-syntax-decorators" "^6.1.18"
"babel-runtime" "^6.2.0"
"babel-template" "^6.3.0"
"babel-plugin-transform-decorators@^6.24.1":
"integrity" "sha1-eIAT2PjGtSIr33s0Q5Df13Vp4k0= sha512-skQ2CImwDkCHu0mkWvCOlBCpBIHW4/49IZWVwV4A/EnWjL9bB6UBvLyMNe3Td5XDStSZNhe69j4bfEW8dvUbew=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-helper-explode-class" "^6.24.1"
"babel-plugin-syntax-decorators" "^6.13.0"
"babel-runtime" "^6.22.0"
"babel-template" "^6.24.1"
"babel-types" "^6.24.1"
"babel-plugin-transform-do-expressions@^6.22.0":
"integrity" "sha1-KMyvkoEtlJws0SgfaQyP3EaK6bs= sha512-yQwYqYg+Tnj1InA8W1rsItsZVhkv1Euc4KVua9ledtPz5PDWYz7LVyy6rDBpVYUWFZj5k6GUm3YZpCbIm8Tqew=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-plugin-syntax-do-expressions" "^6.8.0"
"babel-runtime" "^6.22.0"
"babel-plugin-transform-es2015-arrow-functions@^6.22.0":
"integrity" "sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE= sha512-PCqwwzODXW7JMrzu+yZIaYbPQSKjDTAsNNlK2l5Gg9g4rz2VzLnZsStvp/3c46GfXpwkyufb3NCyG9+50FF1Vg=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-plugin-transform-es2015-block-scoped-functions@^6.22.0":
"integrity" "sha1-u8UbSflk1wy42OC5ToICRs46YUE= sha512-2+ujAT2UMBzYFm7tidUsYh+ZoIutxJ3pN9IYrF1/H6dCKtECfhmB8UkHVpyxDwkj0CYbQG35ykoz925TUnBc3A=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-plugin-transform-es2015-block-scoping@^6.24.1":
"integrity" "sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8= sha512-YiN6sFAQ5lML8JjCmr7uerS5Yc/EMbgg9G8ZNmk2E3nYX4ckHR01wrkeeMijEf5WHNK5TW0Sl0Uu3pv3EdOJWw=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz"
"version" "6.26.0"
dependencies:
"babel-runtime" "^6.26.0"
"babel-template" "^6.26.0"
"babel-traverse" "^6.26.0"
"babel-types" "^6.26.0"
"lodash" "^4.17.4"
"babel-plugin-transform-es2015-classes@^6.24.1":
"integrity" "sha1-WkxYpQyclGHlZLSyo7+ryXolhNs= sha512-5Dy7ZbRinGrNtmWpquZKZ3EGY8sDgIVB4CU8Om8q8tnMLrD/m94cKglVcHps0BCTdZ0TJeeAWOq2TK9MIY6cag=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-helper-define-map" "^6.24.1"
"babel-helper-function-name" "^6.24.1"
"babel-helper-optimise-call-expression" "^6.24.1"
"babel-helper-replace-supers" "^6.24.1"
"babel-messages" "^6.23.0"
"babel-runtime" "^6.22.0"
"babel-template" "^6.24.1"
"babel-traverse" "^6.24.1"
"babel-types" "^6.24.1"
"babel-plugin-transform-es2015-computed-properties@^6.24.1":
"integrity" "sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM= sha512-C/uAv4ktFP/Hmh01gMTvYvICrKze0XVX9f2PdIXuriCSvUmV9j+u+BB9f5fJK3+878yMK6dkdcq+Ymr9mrcLzw=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-runtime" "^6.22.0"
"babel-template" "^6.24.1"
"babel-plugin-transform-es2015-destructuring@^6.22.0":
"integrity" "sha1-mXux8auWf2gtKwh2/jWNYOdlxW0= sha512-aNv/GDAW0j/f4Uy1OEPZn1mqD+Nfy9viFGBfQ5bZyT35YqOiqx7/tXdyfZkJ1sC21NyEsBdfDY6PYmLHF4r5iA=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-plugin-transform-es2015-duplicate-keys@^6.24.1":
"integrity" "sha1-c+s9MQypaePvnskcU3QabxV2Qj4= sha512-ossocTuPOssfxO2h+Z3/Ea1Vo1wWx31Uqy9vIiJusOP4TbF7tPs9U0sJ9pX9OJPf4lXRGj5+6Gkl/HHKiAP5ug=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-runtime" "^6.22.0"
"babel-types" "^6.24.1"
"babel-plugin-transform-es2015-for-of@^6.22.0":
"integrity" "sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE= sha512-DLuRwoygCoXx+YfxHLkVx5/NpeSbVwfoTeBykpJK7JhYWlL/O8hgAK/reforUnZDlxasOrVPPJVI/guE3dCwkw=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-plugin-transform-es2015-function-name@^6.24.1":
"integrity" "sha1-g0yJhTvDaxrw86TF26qU/Y6sqos= sha512-iFp5KIcorf11iBqu/y/a7DK3MN5di3pNCzto61FqCNnUX4qeBwcV1SLqe10oXNnCaxBUImX3SckX2/o1nsrTcg=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-helper-function-name" "^6.24.1"
"babel-runtime" "^6.22.0"
"babel-types" "^6.24.1"
"babel-plugin-transform-es2015-literals@^6.22.0":
"integrity" "sha1-T1SgLWzWbPkVKAAZox0xklN3yi4= sha512-tjFl0cwMPpDYyoqYA9li1/7mGFit39XiNX5DKC/uCNjBctMxyL1/PT/l4rSlbvBG1pOKI88STRdUsWXB3/Q9hQ=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-plugin-transform-es2015-modules-amd@^6.24.1":
"integrity" "sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ= sha512-LnIIdGWIKdw7zwckqx+eGjcS8/cl8D74A3BpJbGjKTFFNJSMrjN4bIh22HY1AlkUbeLG6X6OZj56BDvWD+OeFA=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-plugin-transform-es2015-modules-commonjs" "^6.24.1"
"babel-runtime" "^6.22.0"
"babel-template" "^6.24.1"
"babel-plugin-transform-es2015-modules-commonjs@^6.24.1":
"integrity" "sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz"
"version" "6.26.2"
dependencies:
"babel-plugin-transform-strict-mode" "^6.24.1"
"babel-runtime" "^6.26.0"
"babel-template" "^6.26.0"
"babel-types" "^6.26.0"
"babel-plugin-transform-es2015-modules-systemjs@^6.24.1":
"integrity" "sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM= sha512-ONFIPsq8y4bls5PPsAWYXH/21Hqv64TBxdje0FvU3MhIV6QM2j5YS7KvAzg/nTIVLot2D2fmFQrFWCbgHlFEjg=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-helper-hoist-variables" "^6.24.1"
"babel-runtime" "^6.22.0"
"babel-template" "^6.24.1"
"babel-plugin-transform-es2015-modules-umd@^6.24.1":
"integrity" "sha1-rJl+YoXNGO1hdq22B9YCNErThGg= sha512-LpVbiT9CLsuAIp3IG0tfbVo81QIhn6pE8xBJ7XSeCtFlMltuar5VuBV6y6Q45tpui9QWcy5i0vLQfCfrnF7Kiw=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-plugin-transform-es2015-modules-amd" "^6.24.1"
"babel-runtime" "^6.22.0"
"babel-template" "^6.24.1"
"babel-plugin-transform-es2015-object-super@^6.24.1":
"integrity" "sha1-JM72muIcuDp/hgPa0CH1cusnj40= sha512-8G5hpZMecb53vpD3mjs64NhI1au24TAmokQ4B+TBFBjN9cVoGoOvotdrMMRmHvVZUEvqGUPWL514woru1ChZMA=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-helper-replace-supers" "^6.24.1"
"babel-runtime" "^6.22.0"
"babel-plugin-transform-es2015-parameters@^6.24.1":
"integrity" "sha1-V6w1GrScrxSpfNE7CfZv3wpiXys= sha512-8HxlW+BB5HqniD+nLkQ4xSAVq3bR/pcYW9IigY+2y0dI+Y7INFeTbfAQr+63T3E4UDsZGjyb+l9txUnABWxlOQ=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-helper-call-delegate" "^6.24.1"
"babel-helper-get-function-arity" "^6.24.1"
"babel-runtime" "^6.22.0"
"babel-template" "^6.24.1"
"babel-traverse" "^6.24.1"
"babel-types" "^6.24.1"
"babel-plugin-transform-es2015-shorthand-properties@^6.24.1":
"integrity" "sha1-JPh11nIch2YbvZmkYi5R8U3jiqA= sha512-mDdocSfUVm1/7Jw/FIRNw9vPrBQNePy6wZJlR8HAUBLybNp1w/6lr6zZ2pjMShee65t/ybR5pT8ulkLzD1xwiw=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-runtime" "^6.22.0"
"babel-types" "^6.24.1"
"babel-plugin-transform-es2015-spread@^6.22.0":
"integrity" "sha1-1taKmfia7cRTbIGlQujdnxdG+NE= sha512-3Ghhi26r4l3d0Js933E5+IhHwk0A1yiutj9gwvzmFbVV0sPMYk2lekhOufHBswX7NCoSeF4Xrl3sCIuSIa+zOg=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-plugin-transform-es2015-sticky-regex@^6.24.1":
"integrity" "sha1-AMHNsaynERLN8M9hJsLta0V8zbw= sha512-CYP359ADryTo3pCsH0oxRo/0yn6UsEZLqYohHmvLQdfS9xkf+MbCzE3/Kolw9OYIY4ZMilH25z/5CbQbwDD+lQ=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-helper-regex" "^6.24.1"
"babel-runtime" "^6.22.0"
"babel-types" "^6.24.1"
"babel-plugin-transform-es2015-template-literals@^6.22.0":
"integrity" "sha1-qEs0UPfp+PH2g51taH2oS7EjbY0= sha512-x8b9W0ngnKzDMHimVtTfn5ryimars1ByTqsfBDwAqLibmuuQY6pgBQi5z1ErIsUOWBdw1bW9FSz5RZUojM4apg=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-plugin-transform-es2015-typeof-symbol@^6.22.0":
"integrity" "sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I= sha512-fz6J2Sf4gYN6gWgRZaoFXmq93X+Li/8vf+fb0sGDVtdeWvxC9y5/bTD7bvfWMEq6zetGEHpWjtzRGSugt5kNqw=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-plugin-transform-es2015-unicode-regex@^6.24.1":
"integrity" "sha1-04sS9C6nMj9yk4fxinxa4frrNek= sha512-v61Dbbihf5XxnYjtBN04B/JBvsScY37R1cZT5r9permN1cp+b70DY3Ib3fIkgn1DI9U3tGgBJZVD8p/mE/4JbQ=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-helper-regex" "^6.24.1"
"babel-runtime" "^6.22.0"
"regexpu-core" "^2.0.0"
"babel-plugin-transform-exponentiation-operator@^6.24.1":
"integrity" "sha1-KrDJx/MJj6SJB3cruBP+QejeOg4= sha512-LzXDmbMkklvNhprr20//RStKVcT8Cu+SQtX18eMHLhjHf2yFzwtQ0S2f0jQ+89rokoNdmwoSqYzAhq86FxlLSQ=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-helper-builder-binary-assignment-operator-visitor" "^6.24.1"
"babel-plugin-syntax-exponentiation-operator" "^6.8.0"
"babel-runtime" "^6.22.0"
"babel-plugin-transform-export-extensions@^6.22.0":
"integrity" "sha1-U3OLR+deghhYnuqUbLvTkQm75lM= sha512-mtzELzINaYqdVglyZrDDVwkcFRuE7s6QUFWXxwffKAHB/NkfbJ2NJSytugB43ytIC8UVt30Ereyx+7gNyTkDLg=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-plugin-syntax-export-extensions" "^6.8.0"
"babel-runtime" "^6.22.0"
"babel-plugin-transform-flow-strip-types@^6.22.0":
"integrity" "sha1-hMtnKTXUNxT9wyvOhFaNh0Qc988= sha512-TxIM0ZWNw9oYsoTthL3lvAK3+eTujzktoXJg4ubGvICGbVuXVYv5hHv0XXpz8fbqlJaGYY4q5SVzaSmsg3t4Fg=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-plugin-syntax-flow" "^6.18.0"
"babel-runtime" "^6.22.0"
"babel-plugin-transform-function-bind@^6.22.0":
"integrity" "sha1-xvuOlqwpajELjPjqQBRiQH3fapc= sha512-9Ec4KYf1GurT39mlUjDSlN7HWSlB3u3mWRMogQbb+Y88lO0ZM3rJ0ADhPnQwWK9TbO6e/4E+Et1rrfGY9mFimA=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-plugin-syntax-function-bind" "^6.8.0"
"babel-runtime" "^6.22.0"
"babel-plugin-transform-object-rest-spread@^6.22.0":
"integrity" "sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY= sha512-ocgA9VJvyxwt+qJB0ncxV8kb/CjfTcECUY4tQ5VT7nP6Aohzobm8CDFaQ5FHdvZQzLmf0sgDxB8iRXZXxwZcyA=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz"
"version" "6.26.0"
dependencies:
"babel-plugin-syntax-object-rest-spread" "^6.8.0"
"babel-runtime" "^6.26.0"
"babel-plugin-transform-react-display-name@^6.23.0":
"integrity" "sha1-Z+K/Hx6ck6sI25Z5LgU5K/LMKNE= sha512-QLYkLiZeeED2PKd4LuXGg5y9fCgPB5ohF8olWUuETE2ryHNRqqnXlEVP7RPuef89+HTfd3syptMGVHeoAu0Wig=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz"
"version" "6.25.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-plugin-transform-react-jsx-self@^6.22.0":
"integrity" "sha1-322AqdomEqEh5t3XVYvL7PBuY24= sha512-Y3ZHP1nunv0U1+ysTNwLK39pabHj6cPVsfN4TRC7BDBfbgbyF4RifP5kd6LnbuMV9wcfedQMe7hn1fyKc7IzTQ=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-plugin-syntax-jsx" "^6.8.0"
"babel-runtime" "^6.22.0"
"babel-plugin-transform-react-jsx-source@^6.22.0":
"integrity" "sha1-ZqwSFT9c0tF7PBkmj0vwGX9E7NY= sha512-pcDNDsZ9q/6LJmujQ/OhjeoIlp5Nl546HJ2yiFIJK3mYpgNXhI5/S9mXfVxu5yqWAi7HdI7e/q6a9xtzwL69Vw=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-plugin-syntax-jsx" "^6.8.0"
"babel-runtime" "^6.22.0"
"babel-plugin-transform-react-jsx@^6.24.1":
"integrity" "sha1-hAoCjn30YN/DotKfDA2R9jduZqM= sha512-s+q/Y2u2OgDPHRuod3t6zyLoV8pUHc64i/O7ZNgIOEdYTq+ChPeybcKBi/xk9VI60VriILzFPW+dUxAEbTxh2w=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-helper-builder-react-jsx" "^6.24.1"
"babel-plugin-syntax-jsx" "^6.8.0"
"babel-runtime" "^6.22.0"
"babel-plugin-transform-regenerator@^6.24.1":
"integrity" "sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8= sha512-LS+dBkUGlNR15/5WHKe/8Neawx663qttS6AGqoOUhICc9d1KciBvtrQSuc0PI+CxQ2Q/S1aKuJ+u64GtLdcEZg=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz"
"version" "6.26.0"
dependencies:
"regenerator-transform" "^0.10.0"
"babel-plugin-transform-strict-mode@^6.24.1":
"integrity" "sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g= sha512-j3KtSpjyLSJxNoCDrhwiJad8kw0gJ9REGj8/CqL0HeRyLnvUNYV9zcqluL6QJSXh3nfsLEmSLvwRfGzrgR96Pw=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-runtime" "^6.22.0"
"babel-types" "^6.24.1"
"babel-polyfill@^6.26.0":
"integrity" "sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM= sha512-F2rZGQnAdaHWQ8YAoeRbukc7HS9QgdgeyJ0rQDd485v9opwuPvjpPFcOOT/WmkKTdgy9ESgSPXDcTNpzrGr6iQ=="
"resolved" "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz"
"version" "6.26.0"
dependencies:
"babel-runtime" "^6.26.0"
"core-js" "^2.5.0"
"regenerator-runtime" "^0.10.5"
"babel-preset-es2015@^6.24.0":
"integrity" "sha1-1EBQ1rwsn+6nAqrzjXJ6AhBTiTk= sha512-XfwUqG1Ry6R43m4Wfob+vHbIVBIqTg/TJY4Snku1iIzeH7mUnwHA8Vagmv+ZQbPwhS8HgsdQvy28Py3k5zpoFQ=="
"resolved" "https://registry.npmjs.org/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-plugin-check-es2015-constants" "^6.22.0"
"babel-plugin-transform-es2015-arrow-functions" "^6.22.0"
"babel-plugin-transform-es2015-block-scoped-functions" "^6.22.0"
"babel-plugin-transform-es2015-block-scoping" "^6.24.1"
"babel-plugin-transform-es2015-classes" "^6.24.1"
"babel-plugin-transform-es2015-computed-properties" "^6.24.1"
"babel-plugin-transform-es2015-destructuring" "^6.22.0"
"babel-plugin-transform-es2015-duplicate-keys" "^6.24.1"
"babel-plugin-transform-es2015-for-of" "^6.22.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-commonjs" "^6.24.1"
"babel-plugin-transform-es2015-modules-systemjs" "^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-parameters" "^6.24.1"
"babel-plugin-transform-es2015-shorthand-properties" "^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-typeof-symbol" "^6.22.0"
"babel-plugin-transform-es2015-unicode-regex" "^6.24.1"
"babel-plugin-transform-regenerator" "^6.24.1"
"babel-preset-flow@^6.23.0":
"integrity" "sha1-5xIYiHCFrpoktb5Baa/7WZgWxJ0= sha512-PQZFJXnM3d80Vq4O67OE6EMVKIw2Vmzy8UXovqulNogCtblWU8rzP7Sm5YgHiCg4uejUxzCkHfNXQ4Z6GI+Dhw=="
"resolved" "https://registry.npmjs.org/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-plugin-transform-flow-strip-types" "^6.22.0"
"babel-preset-react@^6.23.0":
"integrity" "sha1-umnfrqRfw+xjm2pOzqbhdwLJE4A= sha512-phQe3bElbgF887UM0Dhz55d22ob8czTL1kbhZFwpCE6+R/X9kHktfwmx9JZb+bBSVRGphP5tZ9oWhVhlgjrX3Q=="
"resolved" "https://registry.npmjs.org/babel-preset-react/-/babel-preset-react-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-plugin-syntax-jsx" "^6.3.13"
"babel-plugin-transform-react-display-name" "^6.23.0"
"babel-plugin-transform-react-jsx" "^6.24.1"
"babel-plugin-transform-react-jsx-self" "^6.22.0"
"babel-plugin-transform-react-jsx-source" "^6.22.0"
"babel-preset-flow" "^6.23.0"
"babel-preset-stage-0@^6.22.0":
"integrity" "sha1-VkLRUEL5E4TX5a+LyIsduVsDnmo= sha512-MJD+xBbpsApbKlzAX0sOBF+VeFaUmv5s8FSOO7SSZpes1QgphCjq/UIGRFWSmQ/0i5bqQjLGCTXGGXqcLQ9JDA=="
"resolved" "https://registry.npmjs.org/babel-preset-stage-0/-/babel-preset-stage-0-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-plugin-transform-do-expressions" "^6.22.0"
"babel-plugin-transform-function-bind" "^6.22.0"
"babel-preset-stage-1" "^6.24.1"
"babel-preset-stage-1@^6.24.1":
"integrity" "sha1-dpLNfc1oSZB+auSgqFWJz7niv7A= sha512-rn+UOcd7BHDniq1SVxv2/AVVSVI1NK+hfS0I/iR6m6KbOi/aeBRcqBilqO73pd9VUpRXF2HFtlDuC9F2BEQqmg=="
"resolved" "https://registry.npmjs.org/babel-preset-stage-1/-/babel-preset-stage-1-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-plugin-transform-class-constructor-call" "^6.24.1"
"babel-plugin-transform-export-extensions" "^6.22.0"
"babel-preset-stage-2" "^6.24.1"
"babel-preset-stage-2@^6.24.1":
"integrity" "sha1-2eKWD7PXEYfw5k7sYrwHdnIZvcE= sha512-9F+nquz+37PrlTSBdpeQBKnQfAMNBnryXw+m4qBh35FNbJPfzZz+sjN2G5Uf1CRedU9PH7fJkTbYijxmkLX8Og=="
"resolved" "https://registry.npmjs.org/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-plugin-syntax-dynamic-import" "^6.18.0"
"babel-plugin-transform-class-properties" "^6.24.1"
"babel-plugin-transform-decorators" "^6.24.1"
"babel-preset-stage-3" "^6.24.1"
"babel-preset-stage-3@^6.24.1":
"integrity" "sha1-g2raCp56f6N8sTj7kyb4eTSkg5U= sha512-eCbEOF8uN0KypFXJmZXn2sTk7bPV9uM5xov7G/7BM08TbQEObsVs0cEWfy6NQySlfk7JBi/t+XJP1JkruYfthA=="
"resolved" "https://registry.npmjs.org/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz"
"version" "6.24.1"
dependencies:
"babel-plugin-syntax-trailing-function-commas" "^6.22.0"
"babel-plugin-transform-async-generator-functions" "^6.24.1"
"babel-plugin-transform-async-to-generator" "^6.24.1"
"babel-plugin-transform-exponentiation-operator" "^6.24.1"
"babel-plugin-transform-object-rest-spread" "^6.22.0"
"babel-register@^6.26.0":