forked from vkbansal/react-contextmenu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
7780 lines (6741 loc) · 334 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", "@babel/runtime@^7.4.0":
"integrity" "sha512-kq6anf9JGjW8Nt5rYfEuGRaEAaH1mkv3Bbu6rYvLOpPh/RusSJXuKPEAoZ7L7gybZkchE8+NV5g9vKF4AGAtsA=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.6.3.tgz"
"version" "7.6.3"
dependencies:
"regenerator-runtime" "^0.13.2"
"@types/node@*":
"integrity" "sha512-JNbGaHFCLwgHn/iCckiGSOZ1XYHsKFwREtzPwSGCVld1SGhOlmZw2D4ZI94HQCrBHbADzW9m4LER/8olJTRGHA=="
"resolved" "https://registry.npmjs.org/@types/node/-/node-12.11.7.tgz"
"version" "12.11.7"
"abab@^1.0.3":
"integrity" "sha1-X6rZwsB/YN12dw9xzwJbYqY8/U4= sha512-I+Wi+qiE2kUXyrRhNsWv6XsjUTBJjSoVSctKNBfLG5zG/Xe7Rjbxf13+vqYHNTwHaFU+FtSlVxOCTiMEVtPv0A=="
"resolved" "https://registry.npmjs.org/abab/-/abab-1.0.4.tgz"
"version" "1.0.4"
"abbrev@1":
"integrity" "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
"resolved" "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz"
"version" "1.1.1"
"acorn-dynamic-import@^2.0.0":
"integrity" "sha1-x1K9IQvvZ5UBtsbLf8hPj0cVjMQ= sha512-GKp5tQ8h0KMPWIYGRHHXI1s5tUpZixZ3IHF2jAu42wSCf6In/G873s6/y4DdKdhWvzhu1T6mE1JgvnhAKqyYYQ=="
"resolved" "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz"
"version" "2.0.2"
dependencies:
"acorn" "^4.0.3"
"acorn-globals@^3.1.0":
"integrity" "sha1-/YJw9x+7SZawBPqIDuXUZXOnMb8= sha512-uWttZCk96+7itPxK8xCzY86PnxKTMrReKDqrHzv42VQY0K30PUO8WY13WMOuI+cOdX4EIdzdvQ8k6jkuGRFMYw=="
"resolved" "https://registry.npmjs.org/acorn-globals/-/acorn-globals-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"acorn" "^4.0.4"
"acorn-globals@^4.0.0":
"integrity" "sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A=="
"resolved" "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.4.tgz"
"version" "4.3.4"
dependencies:
"acorn" "^6.0.1"
"acorn-walk" "^6.0.1"
"acorn-jsx@^3.0.0":
"integrity" "sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s= sha512-AU7pnZkguthwBjKgCg6998ByQNIMjbuDQZ8bb78QAFZwPfmKia8AIzgY/gWgqCjnht8JLdXmB4YxA0KaV60ncQ=="
"resolved" "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz"
"version" "3.0.1"
dependencies:
"acorn" "^3.0.4"
"acorn-walk@^6.0.1":
"integrity" "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA=="
"resolved" "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz"
"version" "6.2.0"
"acorn@^3.0.4":
"integrity" "sha1-ReN/s56No/JbruP/U2niu18iAXo= sha512-OLUyIIZ7mF5oaAUT1w0TFqQS81q3saT46x8t7ukpPjMNk+nbs4ZHhs7ToV8EWnLYLepjETXd4XaCE4uxkMeqUw=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz"
"version" "3.3.0"
"acorn@^4.0.3":
"integrity" "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c= sha512-fu2ygVGuMmlzG8ZeRJ0bvR41nsAkxxhbyk8bZ1SS521Z7vmgJFTQQlfz/Mp/nJexGBz+v8sC9bM6+lNgskt4Ug=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz"
"version" "4.0.13"
"acorn@^4.0.4":
"integrity" "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c= sha512-fu2ygVGuMmlzG8ZeRJ0bvR41nsAkxxhbyk8bZ1SS521Z7vmgJFTQQlfz/Mp/nJexGBz+v8sC9bM6+lNgskt4Ug=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz"
"version" "4.0.13"
"acorn@^5.0.0", "acorn@^5.1.2", "acorn@^5.5.0":
"integrity" "sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz"
"version" "5.7.3"
"acorn@^6.0.1":
"integrity" "sha512-/czfa8BwS88b9gWQVhc8eknunSA2DoJpJyTQkhheIf5E48u1N0R4q/YxxsAeqRrmK9TQ/uYfgLDfZo91UlANIA=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-6.3.0.tgz"
"version" "6.3.0"
"airbnb-prop-types@^2.15.0":
"integrity" "sha512-jUh2/hfKsRjNFC4XONQrxo/n/3GG4Tn6Hl0WlFQN5PY9OMC9loSCoAYKnZsWaP8wEfd5xcrPloK0Zg6iS1xwVA=="
"resolved" "https://registry.npmjs.org/airbnb-prop-types/-/airbnb-prop-types-2.15.0.tgz"
"version" "2.15.0"
dependencies:
"array.prototype.find" "^2.1.0"
"function.prototype.name" "^1.1.1"
"has" "^1.0.3"
"is-regex" "^1.0.4"
"object-is" "^1.0.1"
"object.assign" "^4.1.0"
"object.entries" "^1.1.0"
"prop-types" "^15.7.2"
"prop-types-exact" "^1.2.0"
"react-is" "^16.9.0"
"ajv-keywords@^2.1.0":
"integrity" "sha1-YXmX/F9gV2iUxDX5QNgZ4TW4B2I= sha512-ZFztHzVRdGLAzJmpUT9LNFLe1YiVOEylcaNpEutM26PVTCtOD919IMfD01CgbRouB42Dd9atjx1HseC15DgOZA=="
"resolved" "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-2.1.1.tgz"
"version" "2.1.1"
"ajv-keywords@^3.1.0":
"integrity" "sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ=="
"resolved" "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.1.tgz"
"version" "3.4.1"
"ajv@^5.0.0", "ajv@^5.2.3", "ajv@^5.3.0":
"integrity" "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU= sha512-Ajr4IcMXq/2QmMkEmSvxqfLN5zGmJ92gHXAeOXq1OekoH2rfDNsgdDoL2f7QaRCy7G/E6TpxBVdRuNraMztGHw=="
"resolved" "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz"
"version" "5.5.2"
dependencies:
"co" "^4.6.0"
"fast-deep-equal" "^1.0.0"
"fast-json-stable-stringify" "^2.0.0"
"json-schema-traverse" "^0.3.0"
"ajv@^6.1.0", "ajv@^6.9.1":
"integrity" "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw=="
"resolved" "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz"
"version" "6.10.2"
dependencies:
"fast-deep-equal" "^2.0.1"
"fast-json-stable-stringify" "^2.0.0"
"json-schema-traverse" "^0.4.1"
"uri-js" "^4.2.2"
"ajv@^6.5.5":
"integrity" "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw=="
"resolved" "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz"
"version" "6.10.2"
dependencies:
"fast-deep-equal" "^2.0.1"
"fast-json-stable-stringify" "^2.0.0"
"json-schema-traverse" "^0.4.1"
"uri-js" "^4.2.2"
"align-text@^0.1.1", "align-text@^0.1.3":
"integrity" "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc= sha512-GrTZLRpmp6wIC2ztrWW9MjjTgSKccffgFagbNDOX95/dcjEcYZibYTeaOntySQLcdw1ztBoFkviiUvTMbb9MYg=="
"resolved" "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz"
"version" "0.1.4"
dependencies:
"kind-of" "^3.0.2"
"longest" "^1.0.1"
"repeat-string" "^1.5.2"
"alphanum-sort@^1.0.1", "alphanum-sort@^1.0.2":
"integrity" "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM= sha512-0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ=="
"resolved" "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz"
"version" "1.0.2"
"ansi-escapes@^3.0.0":
"integrity" "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ=="
"resolved" "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz"
"version" "3.2.0"
"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-regex@^3.0.0":
"integrity" "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= sha512-wFUFA5bg5dviipbQQ32yOQhl6gcJaJXiHE7dvR8VYPG97+J/GNC5FKGepKdEDUFeXRzDxPF1X/Btc8L+v7oqIQ=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz"
"version" "3.0.0"
"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"
"ansi-styles@^3.2.0":
"integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
"version" "3.2.1"
dependencies:
"color-convert" "^1.9.0"
"ansi-styles@^3.2.1":
"integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
"version" "3.2.1"
dependencies:
"color-convert" "^1.9.0"
"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"
"anymatch@^2.0.0":
"integrity" "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw=="
"resolved" "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"micromatch" "^3.1.4"
"normalize-path" "^2.1.1"
"append-transform@^0.4.0":
"integrity" "sha1-126/jKlNJ24keja61EpLdKthGZE= sha512-Yisb7ew0ZEyDtRYQ+b+26o9KbiYPFxwcsxKzbssigzRRMJ9LpExPVUg6Fos7eP7yP3q7///tzze4nm4lTptPBw=="
"resolved" "https://registry.npmjs.org/append-transform/-/append-transform-0.4.0.tgz"
"version" "0.4.0"
dependencies:
"default-require-extensions" "^1.0.0"
"aproba@^1.0.3":
"integrity" "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw=="
"resolved" "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz"
"version" "1.2.0"
"are-we-there-yet@~1.1.2":
"integrity" "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w=="
"resolved" "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz"
"version" "1.1.5"
dependencies:
"delegates" "^1.0.0"
"readable-stream" "^2.0.6"
"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-equal@^1.0.0":
"integrity" "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM= sha512-H3LU5RLiSsGXPhN+Nipar0iR0IofH+8r89G2y1tBKxQ/agagKyAjhkAFDRBfodP2caPrNKHpAWNIM/c9yeL7uA=="
"resolved" "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz"
"version" "1.0.0"
"array-filter@^1.0.0":
"integrity" "sha1-uveeYubvTCpMC4MSMtr/7CUfnYM= sha512-Ene1hbrinPZ1qPoZp7NSx4jQnh4nr7MtY78pHNb+yr8yHbxmTS7ChGW0a55JKA7TkRDeoQxK4GcJaCvBYplSKA=="
"resolved" "https://registry.npmjs.org/array-filter/-/array-filter-1.0.0.tgz"
"version" "1.0.0"
"array-find@^1.0.0":
"integrity" "sha1-bI4obRHtdoMn+OYuzuhzU8o+eLg= sha512-kO/vVCacW9mnpn3WPWbTVlEnOabK2L7LWi2HViURtCM46y1zb6I8UMjx4LgbiqadTgHnLInUronwn3ampNTJtQ=="
"resolved" "https://registry.npmjs.org/array-find/-/array-find-1.0.0.tgz"
"version" "1.0.0"
"array-includes@^3.0.3":
"integrity" "sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0= sha512-mRVEsI0s5MycUKtZtn8i5co54WKxL5gH3gAcCjtUbECNwdDL2gsBwjLqswM3c6fjcuWFQ9hoS4C+EhjxQmEyHQ=="
"resolved" "https://registry.npmjs.org/array-includes/-/array-includes-3.0.3.tgz"
"version" "3.0.3"
dependencies:
"define-properties" "^1.1.2"
"es-abstract" "^1.7.0"
"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"
"array.prototype.find@^2.1.0":
"integrity" "sha512-Wn41+K1yuO5p7wRZDl7890c3xvv5UBrfVXTVIe28rSQb6LS0fZMDrQB6PAcxQFRFy6vJTLDc3A2+3CjQdzVKRg=="
"resolved" "https://registry.npmjs.org/array.prototype.find/-/array.prototype.find-2.1.0.tgz"
"version" "2.1.0"
dependencies:
"define-properties" "^1.1.3"
"es-abstract" "^1.13.0"
"array.prototype.flat@^1.2.1":
"integrity" "sha512-VXjh7lAL4KXKF2hY4FnEW9eRW6IhdvFW1sN/JwLbmECbCgACCnBHNyP3lFiYuttr0jxRN9Bsc5+G27dMseSWqQ=="
"resolved" "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.2.tgz"
"version" "1.2.2"
dependencies:
"define-properties" "^1.1.3"
"es-abstract" "^1.15.0"
"function-bind" "^1.1.1"
"arrify@^1.0.1":
"integrity" "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA=="
"resolved" "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz"
"version" "1.0.1"
"asn1.js@^4.0.0":
"integrity" "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw=="
"resolved" "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz"
"version" "4.10.1"
dependencies:
"bn.js" "^4.0.0"
"inherits" "^2.0.1"
"minimalistic-assert" "^1.0.0"
"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"
"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"
"astral-regex@^1.0.0":
"integrity" "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg=="
"resolved" "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz"
"version" "1.0.0"
"async-each@^1.0.0", "async-each@^1.0.1":
"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@^2.1.2", "async@^2.1.4", "async@^2.4.1", "async@^2.6.2":
"integrity" "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg=="
"resolved" "https://registry.npmjs.org/async/-/async-2.6.3.tgz"
"version" "2.6.3"
dependencies:
"lodash" "^4.17.14"
"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.1":
"integrity" "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg=="
"resolved" "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz"
"version" "2.1.2"
"autoprefixer@^6.3.1":
"integrity" "sha1-Hb0cg1ZY41zj+ZhAmdsAWFx4IBQ= sha512-WKExI/eSGgGAkWAO+wMVdFObZV7hQen54UpD1kCCTN3tvlL3W1jL4+lPP/M7MwoP7Q4RHzKtO3JQ4HxYEcd+xQ=="
"resolved" "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.7.tgz"
"version" "6.7.7"
dependencies:
"browserslist" "^1.7.6"
"caniuse-db" "^1.0.30000634"
"normalize-range" "^0.1.2"
"num2fraction" "^1.2.2"
"postcss" "^5.2.16"
"postcss-value-parser" "^3.2.3"
"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-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ=="
"resolved" "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz"
"version" "1.8.0"
"babel-cli@~6.26.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.0.0 || ^7.0.0-alpha || ^7.0.0-beta || ^7.0.0", "babel-core@^6.24.1", "babel-core@^6.26.0", "babel-core@~6.26.3", "babel-core@6":
"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.2.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.18.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-evaluate-path@^0.2.0":
"integrity" "sha512-0EK9TUKMxHL549hWDPkQoS7R0Ozg1CDLheVBHYds2B2qoAvmr9ejY3zOXFsrICK73TN7bPhU14PBeKc8jcBTwg=="
"resolved" "https://registry.npmjs.org/babel-helper-evaluate-path/-/babel-helper-evaluate-path-0.2.0.tgz"
"version" "0.2.0"
"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-flip-expressions@^0.2.0":
"integrity" "sha512-rAsPA1pWBc7e2E6HepkP2e1sXugT+Oq/VCqhyuHJ8aJ2d/ifwnJfd4Qxjm21qlW43AN8tqaeByagKK6wECFMSw=="
"resolved" "https://registry.npmjs.org/babel-helper-flip-expressions/-/babel-helper-flip-expressions-0.2.0.tgz"
"version" "0.2.0"
"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-is-nodes-equiv@^0.0.1":
"integrity" "sha1-NOmzALFHnd2Y7HfqC76TQt/jloQ= sha512-ri/nsMFVRqXn7IyT5qW4/hIAGQxuYUFHa3qsxmPtbk6spZQcYlyDogfVpNm2XYOslH/ULS4VEJGUqQX5u7ACQw=="
"resolved" "https://registry.npmjs.org/babel-helper-is-nodes-equiv/-/babel-helper-is-nodes-equiv-0.0.1.tgz"
"version" "0.0.1"
"babel-helper-is-void-0@^0.2.0":
"integrity" "sha512-Axj1AYuD0E3Dl7nT3KxROP7VekEofz3XtEljzURf3fABalLpr8PamtgLFt+zuxtaCxRf9iuZmbAMMYWri5Bazw=="
"resolved" "https://registry.npmjs.org/babel-helper-is-void-0/-/babel-helper-is-void-0-0.2.0.tgz"
"version" "0.2.0"
"babel-helper-mark-eval-scopes@^0.2.0":
"integrity" "sha512-KJuwrOUcHbvbh6he4xRXZFLaivK9DF9o3CrvpWnK1Wp0B+1ANYABXBMgwrnNFIDK/AvicxQ9CNr8wsgivlp4Aw=="
"resolved" "https://registry.npmjs.org/babel-helper-mark-eval-scopes/-/babel-helper-mark-eval-scopes-0.2.0.tgz"
"version" "0.2.0"
"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-remove-or-void@^0.2.0":
"integrity" "sha512-1Z41upf/XR+PwY7Nd+F15Jo5BiQi5205ZXUuKed3yoyQgDkMyoM7vAdjEJS/T+M6jy32sXjskMUgms4zeiVtRA=="
"resolved" "https://registry.npmjs.org/babel-helper-remove-or-void/-/babel-helper-remove-or-void-0.2.0.tgz"
"version" "0.2.0"
"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-helper-to-multiple-sequence-expressions@^0.2.0":
"integrity" "sha512-ij9lpfdP3+Zc/7kNwa+NXbTrUlsYEWPwt/ugmQO0qflzLrveTIkbfOqQztvitk81aG5NblYDQXDlRohzu3oa8Q=="
"resolved" "https://registry.npmjs.org/babel-helper-to-multiple-sequence-expressions/-/babel-helper-to-multiple-sequence-expressions-0.2.0.tgz"
"version" "0.2.0"
"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-jest@^21.2.0", "babel-jest@~21.2.0":
"integrity" "sha512-O0W2qLoWu1QOoOGgxiR2JID4O6WSpxPiQanrkyi9SSlM0PJ60Ptzlck47lhtnr9YZO3zYOsxHwnyeWJ6AffoBQ=="
"resolved" "https://registry.npmjs.org/babel-jest/-/babel-jest-21.2.0.tgz"
"version" "21.2.0"
dependencies:
"babel-plugin-istanbul" "^4.0.0"
"babel-preset-jest" "^21.2.0"
"babel-loader@~7.1.1":
"integrity" "sha512-iCHfbieL5d1LfOQeeVJEUyD9rTwBcP/fcEbRCfempxTDuqrKpu0AZjLAQHEQa3Yqyj9ORKe2iHfoj4rHLf7xpw=="
"resolved" "https://registry.npmjs.org/babel-loader/-/babel-loader-7.1.5.tgz"
"version" "7.1.5"
dependencies:
"find-cache-dir" "^1.0.0"
"loader-utils" "^1.0.2"
"mkdirp" "^0.5.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-minify-webpack-plugin@~0.2.0":
"integrity" "sha512-+5G5Qqm+DIVl7gY4rkHqlFRkaf1FZtz0imzu/Dy9+88AfOIuy7D5MQjkNgQr5gU6/YSZ+rImgxDqFcWkvvrjkQ=="
"resolved" "https://registry.npmjs.org/babel-minify-webpack-plugin/-/babel-minify-webpack-plugin-0.2.0.tgz"
"version" "0.2.0"
dependencies:
"babel-core" "^6.24.1"
"babel-preset-minify" "^0.2.0"
"webpack-sources" "^1.0.1"
"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-istanbul@^4.0.0":
"integrity" "sha512-PWP9FQ1AhZhS01T/4qLSKoHGY/xvkZdVBGlKM/HuxxS3+sC66HhTNR7+MpbO/so/cz/wY94MeSWJuP1hXIPfwQ=="
"resolved" "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz"
"version" "4.1.6"
dependencies:
"babel-plugin-syntax-object-rest-spread" "^6.13.0"
"find-up" "^2.1.0"
"istanbul-lib-instrument" "^1.10.1"
"test-exclude" "^4.2.1"
"babel-plugin-jest-hoist@^21.2.0":
"integrity" "sha512-yi5QuiVyyvhBUDLP4ButAnhYzkdrUwWDtvUJv71hjH3fclhnZg4HkDeqaitcR2dZZx/E67kGkRcPVjtVu+SJfQ=="
"resolved" "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-21.2.0.tgz"
"version" "21.2.0"
"babel-plugin-minify-builtins@^0.2.0":
"integrity" "sha512-4i+8ntaS8gwVUcOz5y+zE+55OVOl2nTbmHV51D4wAIiKcRI8U5K//ip1GHfhsgk/NJrrHK7h97Oy5jpqt0Iixg=="
"resolved" "https://registry.npmjs.org/babel-plugin-minify-builtins/-/babel-plugin-minify-builtins-0.2.0.tgz"
"version" "0.2.0"
dependencies:
"babel-helper-evaluate-path" "^0.2.0"
"babel-plugin-minify-constant-folding@^0.2.0":
"integrity" "sha512-B3ffQBEUQ8ydlIkYv2MkZtTCbV7FAkWAV7NkyhcXlGpD10PaCxNGQ/B9oguXGowR1m16Q5nGhvNn8Pkn1MO6Hw=="
"resolved" "https://registry.npmjs.org/babel-plugin-minify-constant-folding/-/babel-plugin-minify-constant-folding-0.2.0.tgz"
"version" "0.2.0"
dependencies:
"babel-helper-evaluate-path" "^0.2.0"
"babel-plugin-minify-dead-code-elimination@^0.2.0":
"integrity" "sha512-zE7y3pRyzA4zK5nBou0kTcwUTSQ/AiFrynt1cIEYN7vcO2gS9ZFZoI0aO9JYLUdct5fsC1vfB35408yrzTyVfg=="
"resolved" "https://registry.npmjs.org/babel-plugin-minify-dead-code-elimination/-/babel-plugin-minify-dead-code-elimination-0.2.0.tgz"
"version" "0.2.0"
dependencies:
"babel-helper-evaluate-path" "^0.2.0"
"babel-helper-mark-eval-scopes" "^0.2.0"
"babel-helper-remove-or-void" "^0.2.0"
"lodash.some" "^4.6.0"
"babel-plugin-minify-flip-comparisons@^0.2.0":
"integrity" "sha512-QOqXSEmD/LhT3LpM1WCyzAGcQZYYKJF7oOHvS6QbpomHenydrV53DMdPX2mK01icBExKZcJAHF209wvDBa+CSg=="
"resolved" "https://registry.npmjs.org/babel-plugin-minify-flip-comparisons/-/babel-plugin-minify-flip-comparisons-0.2.0.tgz"
"version" "0.2.0"
dependencies:
"babel-helper-is-void-0" "^0.2.0"
"babel-plugin-minify-guarded-expressions@^0.2.0":
"integrity" "sha512-5+NSPdRQ9mnrHaA+zFj+D5OzmSiv90EX5zGH6cWQgR/OUqmCHSDqgTRPFvOctgpo8MJyO7Rt7ajs2UfLnlAwYg=="
"resolved" "https://registry.npmjs.org/babel-plugin-minify-guarded-expressions/-/babel-plugin-minify-guarded-expressions-0.2.0.tgz"
"version" "0.2.0"
dependencies:
"babel-helper-flip-expressions" "^0.2.0"
"babel-plugin-minify-infinity@^0.2.0":
"integrity" "sha512-U694vrla1lN6vDHWGrR832t3a/A2eh+kyl019LxEE2+sS4VTydyOPRsAOIYAdJegWRA4cMX1lm9azAN0cLIr8g=="
"resolved" "https://registry.npmjs.org/babel-plugin-minify-infinity/-/babel-plugin-minify-infinity-0.2.0.tgz"
"version" "0.2.0"
"babel-plugin-minify-mangle-names@^0.2.0":
"integrity" "sha512-Gixuak1/CO7VCdjn15/8Bxe/QsAtDG4zPbnsNoe1mIJGCIH/kcmSjFhMlGJtXDQZd6EKzeMfA5WmX9+jvGRefw=="
"resolved" "https://registry.npmjs.org/babel-plugin-minify-mangle-names/-/babel-plugin-minify-mangle-names-0.2.0.tgz"
"version" "0.2.0"
dependencies:
"babel-helper-mark-eval-scopes" "^0.2.0"
"babel-plugin-minify-numeric-literals@^0.2.0":
"integrity" "sha512-VcLpb+r1YS7+RIOXdRsFVLLqoh22177USpHf+JM/g1nZbzdqENmfd5v534MLAbRErhbz6SyK+NQViVzVtBxu8g=="
"resolved" "https://registry.npmjs.org/babel-plugin-minify-numeric-literals/-/babel-plugin-minify-numeric-literals-0.2.0.tgz"
"version" "0.2.0"
"babel-plugin-minify-replace@^0.2.0":
"integrity" "sha512-SEW6zoSVxh3OH6E1LCgyhhTWMnCv+JIRu5h5IlJDA11tU4ZeSF7uPQcO4vN/o52+FssRB26dmzJ/8D+z0QPg5Q=="
"resolved" "https://registry.npmjs.org/babel-plugin-minify-replace/-/babel-plugin-minify-replace-0.2.0.tgz"
"version" "0.2.0"
"babel-plugin-minify-simplify@^0.2.0":
"integrity" "sha512-Mj3Mwy2zVosMfXDWXZrQH5/uMAyfJdmDQ1NVqit+ArbHC3LlXVzptuyC1JxTyai/wgFvjLaichm/7vSUshkWqw=="
"resolved" "https://registry.npmjs.org/babel-plugin-minify-simplify/-/babel-plugin-minify-simplify-0.2.0.tgz"
"version" "0.2.0"
dependencies:
"babel-helper-flip-expressions" "^0.2.0"
"babel-helper-is-nodes-equiv" "^0.0.1"
"babel-helper-to-multiple-sequence-expressions" "^0.2.0"
"babel-plugin-minify-type-constructors@^0.2.0":
"integrity" "sha512-NiOvvA9Pq6bki6nP4BayXwT5GZadw7DJFDDzHmkpnOQpENWe8RtHtKZM44MG1R6EQ5XxgbLdsdhswIzTkFlO5g=="
"resolved" "https://registry.npmjs.org/babel-plugin-minify-type-constructors/-/babel-plugin-minify-type-constructors-0.2.0.tgz"
"version" "0.2.0"
dependencies:
"babel-helper-is-void-0" "^0.2.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-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.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-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-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-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.13.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.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-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@^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-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.23.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.23.0", "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.22.0", "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", "babel-plugin-transform-es2015-destructuring@^6.23.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.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", "babel-plugin-transform-es2015-for-of@^6.23.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.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.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.23.0", "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.23.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.23.0", "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.22.0", "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.23.0", "babel-plugin-transform-es2015-parameters@^6.24.1":