-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
8569 lines (7425 loc) · 347 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/code-frame@^7.10.4":
"integrity" "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/highlight" "^7.16.7"
"@babel/helper-validator-identifier@^7.16.7":
"integrity" "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz"
"version" "7.16.7"
"@babel/highlight@^7.16.7":
"integrity" "sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.12.tgz"
"version" "7.17.12"
dependencies:
"@babel/helper-validator-identifier" "^7.16.7"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/runtime@^7.12.5", "@babel/runtime@^7.9.2":
"integrity" "sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.3.tgz"
"version" "7.18.3"
dependencies:
"regenerator-runtime" "^0.13.4"
"@emailjs/browser@^3.6.2":
"integrity" "sha512-Swc8w+vwDX4XPy6tPegOFGSwHqNiEmEsIKbtAkqHo2WqnS0ORZUnnuZats2R3XqwfxNQD0F6RwnlVWHIMf6sCQ=="
"resolved" "https://registry.npmjs.org/@emailjs/browser/-/browser-3.6.2.tgz"
"version" "3.6.2"
"@emotion/is-prop-valid@^0.8.2":
"integrity" "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA=="
"resolved" "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz"
"version" "0.8.8"
dependencies:
"@emotion/memoize" "0.7.4"
"@emotion/[email protected]":
"integrity" "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw=="
"resolved" "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz"
"version" "0.7.4"
"@jest/schemas@^28.0.2":
"integrity" "sha512-YVDJZjd4izeTDkij00vHHAymNXQ6WWsdChFRK86qck6Jpr3DCL5W3Is3vslviRlP+bLuMYRLbdp98amMvqudhA=="
"resolved" "https://registry.npmjs.org/@jest/schemas/-/schemas-28.0.2.tgz"
"version" "28.0.2"
dependencies:
"@sinclair/typebox" "^0.23.3"
"@motionone/animation@^10.12.0":
"integrity" "sha512-dxQ+1wWxL6iFHDy1uv6hhcPjIdOg36eDT56jN4LI7Z5HZRyLpq8x1t7JFQclo/IEIb+6Bk4atmyinGFdXVECuA=="
"resolved" "https://registry.npmjs.org/@motionone/animation/-/animation-10.13.1.tgz"
"version" "10.13.1"
dependencies:
"@motionone/easing" "^10.13.1"
"@motionone/types" "^10.13.0"
"@motionone/utils" "^10.13.1"
"tslib" "^2.3.1"
"@motionone/[email protected]":
"integrity" "sha512-UdPTtLMAktHiqV0atOczNYyDd/d8Cf5fFsd1tua03PqTwwCe/6lwhLSQ8a7TbnQ5SN0gm44N1slBfj+ORIhrqw=="
"resolved" "https://registry.npmjs.org/@motionone/dom/-/dom-10.12.0.tgz"
"version" "10.12.0"
dependencies:
"@motionone/animation" "^10.12.0"
"@motionone/generators" "^10.12.0"
"@motionone/types" "^10.12.0"
"@motionone/utils" "^10.12.0"
"hey-listen" "^1.0.8"
"tslib" "^2.3.1"
"@motionone/easing@^10.13.1":
"integrity" "sha512-INEsInHHDHVgx0dp5qlXi1lMXBqYicgLMMSn3zfGzaIvcaEbI1Uz8BoyNV4BiclTupG7RYIh+T6BU83ZcEe74g=="
"resolved" "https://registry.npmjs.org/@motionone/easing/-/easing-10.13.1.tgz"
"version" "10.13.1"
dependencies:
"@motionone/utils" "^10.13.1"
"tslib" "^2.3.1"
"@motionone/generators@^10.12.0":
"integrity" "sha512-+HK5u2YcNJCckTTqfOLgSVcrWv2z1dVwrSZEMVJuAh0EnWEWGDJRvMBoPc0cFf/osbkA2Rq9bH2+vP0Ex/D8uw=="
"resolved" "https://registry.npmjs.org/@motionone/generators/-/generators-10.13.1.tgz"
"version" "10.13.1"
dependencies:
"@motionone/types" "^10.13.0"
"@motionone/utils" "^10.13.1"
"tslib" "^2.3.1"
"@motionone/types@^10.12.0", "@motionone/types@^10.13.0":
"integrity" "sha512-qegk4qg8U1N9ZwAJ187BG3TkZz1k9LP/pvNtCSlqdq/PMUDKlCFG4ZnjJ481P0IOH/vIw1OzIbKIuyg0A3rk9g=="
"resolved" "https://registry.npmjs.org/@motionone/types/-/types-10.13.0.tgz"
"version" "10.13.0"
"@motionone/utils@^10.12.0", "@motionone/utils@^10.13.1":
"integrity" "sha512-TjDPTIppaf3ofBXQv4ZzAketJgN0sclALXfZ6mfrkjJkOy83mLls9744F+6S+VKCpBmvbZcBY4PQfrfhAfeMtA=="
"resolved" "https://registry.npmjs.org/@motionone/utils/-/utils-10.13.1.tgz"
"version" "10.13.1"
dependencies:
"@motionone/types" "^10.13.0"
"hey-listen" "^1.0.8"
"tslib" "^2.3.1"
"@remix-run/[email protected]":
"integrity" "sha512-GRSOFhJzjGN+d4sKHTMSvNeUPoZiDHWmRnXfzaxrqe7dE/Nzlc8BiMSJdLDESZlndM7jIUrZ/F4yWqVYlI0rwQ=="
"resolved" "https://registry.npmjs.org/@remix-run/router/-/router-1.0.2.tgz"
"version" "1.0.2"
"@sinclair/typebox@^0.23.3":
"integrity" "sha512-AFBVi/iT4g20DHoujvMH1aEDn8fGJh4xsRGCP6d8RpLPMqsNPvW01Jcn0QysXTsg++/xj25NmJsGyH9xug/wKg=="
"resolved" "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.23.5.tgz"
"version" "0.23.5"
"@testing-library/dom@^8.5.0", "@testing-library/dom@>=7.21.4":
"integrity" "sha512-m8FOdUo77iMTwVRCyzWcqxlEIk+GnopbrRI15a0EaLbpZSCinIVI4kSQzWhkShK83GogvEFJSsHF3Ws0z1vrqA=="
"resolved" "https://registry.npmjs.org/@testing-library/dom/-/dom-8.14.0.tgz"
"version" "8.14.0"
dependencies:
"@babel/code-frame" "^7.10.4"
"@babel/runtime" "^7.12.5"
"@types/aria-query" "^4.2.0"
"aria-query" "^5.0.0"
"chalk" "^4.1.0"
"dom-accessibility-api" "^0.5.9"
"lz-string" "^1.4.4"
"pretty-format" "^27.0.2"
"@testing-library/jest-dom@^5.16.4":
"integrity" "sha512-Gy+IoFutbMQcky0k+bqqumXZ1cTGswLsFqmNLzNdSKkU9KGV2u9oXhukCbbJ9/LRPKiqwxEE8VpV/+YZlfkPUA=="
"resolved" "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.16.4.tgz"
"version" "5.16.4"
dependencies:
"@babel/runtime" "^7.9.2"
"@types/testing-library__jest-dom" "^5.9.1"
"aria-query" "^5.0.0"
"chalk" "^3.0.0"
"css" "^3.0.0"
"css.escape" "^1.5.1"
"dom-accessibility-api" "^0.5.6"
"lodash" "^4.17.15"
"redent" "^3.0.0"
"@testing-library/react@^13.3.0":
"integrity" "sha512-DB79aA426+deFgGSjnf5grczDPiL4taK3hFaa+M5q7q20Kcve9eQottOG5kZ74KEr55v0tU2CQormSSDK87zYQ=="
"resolved" "https://registry.npmjs.org/@testing-library/react/-/react-13.3.0.tgz"
"version" "13.3.0"
dependencies:
"@babel/runtime" "^7.12.5"
"@testing-library/dom" "^8.5.0"
"@types/react-dom" "^18.0.0"
"@testing-library/user-event@^13.5.0":
"integrity" "sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg=="
"resolved" "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.5.0.tgz"
"version" "13.5.0"
dependencies:
"@babel/runtime" "^7.12.5"
"@types/aria-query@^4.2.0":
"integrity" "sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig=="
"resolved" "https://registry.npmjs.org/@types/aria-query/-/aria-query-4.2.2.tgz"
"version" "4.2.2"
"@types/jest@*":
"integrity" "sha512-Tsbjk8Y2hkBaY/gJsataeb4q9Mubw9EOz7+4RjPkzD5KjTvHHs7cpws22InaoXxAVAhF5HfFbzJjo6oKWqSZLw=="
"resolved" "https://registry.npmjs.org/@types/jest/-/jest-28.1.3.tgz"
"version" "28.1.3"
dependencies:
"jest-matcher-utils" "^28.0.0"
"pretty-format" "^28.0.0"
"@types/prop-types@*":
"integrity" "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w=="
"resolved" "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz"
"version" "15.7.5"
"@types/react-dom@^18.0.0":
"integrity" "sha512-OWPWTUrY/NIrjsAPkAk1wW9LZeIjSvkXRhclsFO8CZcZGCOg2G0YZy4ft+rOyYxy8B7ui5iZzi9OkDebZ7/QSA=="
"resolved" "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.5.tgz"
"version" "18.0.5"
dependencies:
"@types/react" "*"
"@types/react@*":
"integrity" "sha512-x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q=="
"resolved" "https://registry.npmjs.org/@types/react/-/react-18.0.14.tgz"
"version" "18.0.14"
dependencies:
"@types/prop-types" "*"
"@types/scheduler" "*"
"csstype" "^3.0.2"
"@types/scheduler@*":
"integrity" "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew=="
"resolved" "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz"
"version" "0.16.2"
"@types/testing-library__jest-dom@^5.9.1":
"integrity" "sha512-SBwbxYoyPIvxHbeHxTZX2Pe/74F/tX2/D3mMvzabdeJ25bBojfW0TyB8BHrbq/9zaaKICJZjLP+8r6AeZMFCuQ=="
"resolved" "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.5.tgz"
"version" "5.14.5"
dependencies:
"@types/jest" "*"
"@webassemblyjs/[email protected]":
"integrity" "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz"
"version" "1.9.0"
dependencies:
"@webassemblyjs/helper-module-context" "1.9.0"
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
"@webassemblyjs/wast-parser" "1.9.0"
"@webassemblyjs/[email protected]":
"integrity" "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz"
"version" "1.9.0"
"@webassemblyjs/[email protected]":
"integrity" "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz"
"version" "1.9.0"
"@webassemblyjs/[email protected]":
"integrity" "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz"
"version" "1.9.0"
"@webassemblyjs/[email protected]":
"integrity" "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz"
"version" "1.9.0"
dependencies:
"@webassemblyjs/wast-printer" "1.9.0"
"@webassemblyjs/[email protected]":
"integrity" "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz"
"version" "1.9.0"
"@webassemblyjs/[email protected]":
"integrity" "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz"
"version" "1.9.0"
dependencies:
"@webassemblyjs/ast" "1.9.0"
"@webassemblyjs/[email protected]":
"integrity" "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz"
"version" "1.9.0"
"@webassemblyjs/[email protected]":
"integrity" "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz"
"version" "1.9.0"
dependencies:
"@webassemblyjs/ast" "1.9.0"
"@webassemblyjs/helper-buffer" "1.9.0"
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
"@webassemblyjs/wasm-gen" "1.9.0"
"@webassemblyjs/[email protected]":
"integrity" "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz"
"version" "1.9.0"
dependencies:
"@xtuc/ieee754" "^1.2.0"
"@webassemblyjs/[email protected]":
"integrity" "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz"
"version" "1.9.0"
dependencies:
"@xtuc/long" "4.2.2"
"@webassemblyjs/[email protected]":
"integrity" "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz"
"version" "1.9.0"
"@webassemblyjs/[email protected]":
"integrity" "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz"
"version" "1.9.0"
dependencies:
"@webassemblyjs/ast" "1.9.0"
"@webassemblyjs/helper-buffer" "1.9.0"
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
"@webassemblyjs/helper-wasm-section" "1.9.0"
"@webassemblyjs/wasm-gen" "1.9.0"
"@webassemblyjs/wasm-opt" "1.9.0"
"@webassemblyjs/wasm-parser" "1.9.0"
"@webassemblyjs/wast-printer" "1.9.0"
"@webassemblyjs/[email protected]":
"integrity" "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz"
"version" "1.9.0"
dependencies:
"@webassemblyjs/ast" "1.9.0"
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
"@webassemblyjs/ieee754" "1.9.0"
"@webassemblyjs/leb128" "1.9.0"
"@webassemblyjs/utf8" "1.9.0"
"@webassemblyjs/[email protected]":
"integrity" "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz"
"version" "1.9.0"
dependencies:
"@webassemblyjs/ast" "1.9.0"
"@webassemblyjs/helper-buffer" "1.9.0"
"@webassemblyjs/wasm-gen" "1.9.0"
"@webassemblyjs/wasm-parser" "1.9.0"
"@webassemblyjs/[email protected]":
"integrity" "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz"
"version" "1.9.0"
dependencies:
"@webassemblyjs/ast" "1.9.0"
"@webassemblyjs/helper-api-error" "1.9.0"
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
"@webassemblyjs/ieee754" "1.9.0"
"@webassemblyjs/leb128" "1.9.0"
"@webassemblyjs/utf8" "1.9.0"
"@webassemblyjs/[email protected]":
"integrity" "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz"
"version" "1.9.0"
dependencies:
"@webassemblyjs/ast" "1.9.0"
"@webassemblyjs/floating-point-hex-parser" "1.9.0"
"@webassemblyjs/helper-api-error" "1.9.0"
"@webassemblyjs/helper-code-frame" "1.9.0"
"@webassemblyjs/helper-fsm" "1.9.0"
"@xtuc/long" "4.2.2"
"@webassemblyjs/[email protected]":
"integrity" "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz"
"version" "1.9.0"
dependencies:
"@webassemblyjs/ast" "1.9.0"
"@webassemblyjs/wast-parser" "1.9.0"
"@xtuc/long" "4.2.2"
"@xtuc/ieee754@^1.2.0":
"integrity" "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA=="
"resolved" "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz"
"version" "1.2.0"
"@xtuc/[email protected]":
"integrity" "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ=="
"resolved" "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz"
"version" "4.2.2"
"abab@^1.0.3":
"integrity" "sha512-I+Wi+qiE2kUXyrRhNsWv6XsjUTBJjSoVSctKNBfLG5zG/Xe7Rjbxf13+vqYHNTwHaFU+FtSlVxOCTiMEVtPv0A=="
"resolved" "https://registry.npmjs.org/abab/-/abab-1.0.4.tgz"
"version" "1.0.4"
"accepts@~1.3.4", "accepts@~1.3.5", "accepts@~1.3.8":
"integrity" "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw=="
"resolved" "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz"
"version" "1.3.8"
dependencies:
"mime-types" "~2.1.34"
"negotiator" "0.6.3"
"acorn-globals@^3.1.0":
"integrity" "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-jsx@^3.0.0":
"integrity" "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@^3.0.0":
"integrity" "sha512-OLUyIIZ7mF5oaAUT1w0TFqQS81q3saT46x8t7ukpPjMNk+nbs4ZHhs7ToV8EWnLYLepjETXd4XaCE4uxkMeqUw=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz"
"version" "3.3.0"
"acorn@^3.0.4":
"integrity" "sha512-OLUyIIZ7mF5oaAUT1w0TFqQS81q3saT46x8t7ukpPjMNk+nbs4ZHhs7ToV8EWnLYLepjETXd4XaCE4uxkMeqUw=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz"
"version" "3.3.0"
"acorn@^4.0.4":
"integrity" "sha512-fu2ygVGuMmlzG8ZeRJ0bvR41nsAkxxhbyk8bZ1SS521Z7vmgJFTQQlfz/Mp/nJexGBz+v8sC9bM6+lNgskt4Ug=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz"
"version" "4.0.13"
"acorn@^5.5.0":
"integrity" "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz"
"version" "5.7.4"
"acorn@^6.4.1":
"integrity" "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz"
"version" "6.4.2"
"ajv-errors@^1.0.0":
"integrity" "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ=="
"resolved" "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz"
"version" "1.0.1"
"ajv-keywords@^1.0.0":
"integrity" "sha512-vuBv+fm2s6cqUyey2A7qYcvsik+GMDJsw8BARP2sDE76cqmaZVarsvHf7Vx6VJ0Xk8gLl+u3MoAPf6gKzJefeA=="
"resolved" "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.5.1.tgz"
"version" "1.5.1"
"ajv-keywords@^3.1.0", "ajv-keywords@^3.4.1":
"integrity" "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ=="
"resolved" "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz"
"version" "3.5.2"
"ajv@^4.7.0", "ajv@>=4.10.0":
"integrity" "sha512-I/bSHSNEcFFqXLf91nchoNB9D1Kie3QKcWdchYUaoIg1+1bdWDkdfdlvdIOJbi9U8xR0y+MWc5D+won9v95WlQ=="
"resolved" "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz"
"version" "4.11.8"
dependencies:
"co" "^4.6.0"
"json-stable-stringify" "^1.0.1"
"ajv@^6.1.0", "ajv@^6.10.2", "ajv@^6.12.3", "ajv@^6.9.1", "ajv@>=5.0.0":
"integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="
"resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
"version" "6.12.6"
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"
"align-text@^0.1.1", "align-text@^0.1.3":
"integrity" "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" "sha512-0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ=="
"resolved" "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz"
"version" "1.0.2"
"amdefine@>=0.0.4":
"integrity" "sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg=="
"resolved" "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz"
"version" "1.0.1"
"ansi-escapes@^1.1.0", "ansi-escapes@^1.4.0":
"integrity" "sha512-wiXutNjDUlNEDWHcYH3jtZUhd3c4/VojassD8zHdHCY13xbZy2XbW+NKQwA0tWGBVzDA9qEzYwfoSsWmviidhw=="
"resolved" "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz"
"version" "1.4.0"
"ansi-escapes@^3.1.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"
"integrity" "sha512-+R2eluMDgRRhdXVAB0baJ2A0Yt2S7836k2J8PhGS5WyvBKx4NGyUQ0VisjrJjAFyUJuJTagRE38baQ/UZIuMiw=="
"resolved" "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.5.tgz"
"version" "0.0.5"
"ansi-regex@^2.0.0":
"integrity" "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" "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz"
"version" "3.0.1"
"ansi-regex@^5.0.1":
"integrity" "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"
"version" "5.0.1"
"ansi-styles@^2.2.1":
"integrity" "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"
"version" "2.2.1"
"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"
"ansi-styles@^4.1.0":
"integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"color-convert" "^2.0.1"
"ansi-styles@^5.0.0":
"integrity" "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz"
"version" "5.2.0"
"ansicolors@~0.3.2":
"integrity" "sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg=="
"resolved" "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz"
"version" "0.3.2"
"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"
"anymatch@~3.1.2":
"integrity" "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg=="
"resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz"
"version" "3.1.2"
dependencies:
"normalize-path" "^3.0.0"
"picomatch" "^2.0.4"
"append-transform@^0.4.0":
"integrity" "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.1.1":
"integrity" "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw=="
"resolved" "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz"
"version" "1.2.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"
"aria-query@^5.0.0":
"integrity" "sha512-V+SM7AbUwJ+EBnB8+DXs0hPZHO0W6pqBcc0dW90OwtVG02PswOu/teuARoLQjdDOH+t9pJgGnW5/Qmouf3gPJg=="
"resolved" "https://registry.npmjs.org/aria-query/-/aria-query-5.0.0.tgz"
"version" "5.0.0"
"arr-diff@^2.0.0":
"integrity" "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" "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" "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" "sha512-H3LU5RLiSsGXPhN+Nipar0iR0IofH+8r89G2y1tBKxQ/agagKyAjhkAFDRBfodP2caPrNKHpAWNIM/c9yeL7uA=="
"resolved" "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz"
"version" "1.0.0"
"integrity" "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg=="
"resolved" "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz"
"version" "1.1.1"
"array-unique@^0.2.1":
"integrity" "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" "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ=="
"resolved" "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz"
"version" "0.3.2"
"arrify@^1.0.1":
"integrity" "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA=="
"resolved" "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz"
"version" "1.0.1"
"asap@~2.0.3":
"integrity" "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA=="
"resolved" "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz"
"version" "2.0.6"
"asn1.js@^5.2.0":
"integrity" "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA=="
"resolved" "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz"
"version" "5.4.1"
dependencies:
"bn.js" "^4.0.0"
"inherits" "^2.0.1"
"minimalistic-assert" "^1.0.0"
"safer-buffer" "^2.1.0"
"asn1@~0.2.3":
"integrity" "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ=="
"resolved" "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz"
"version" "0.2.6"
dependencies:
"safer-buffer" "~2.1.0"
"assert-plus@^1.0.0", "[email protected]":
"integrity" "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" "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", "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@^0.9.0":
"integrity" "sha512-l6ToIJIotphWahxxHyzK9bnLR6kM4jJIIgLShZeqLY7iboHoGkdgFl7W2/Ivi4SkMJYGKqW8vSuk0uKUj6qsSw=="
"resolved" "https://registry.npmjs.org/async/-/async-0.9.2.tgz"
"version" "0.9.2"
"async@^1.3.0", "async@^1.5.0":
"integrity" "sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w=="
"resolved" "https://registry.npmjs.org/async/-/async-1.5.2.tgz"
"version" "1.5.2"
"async@^2.1.4":
"integrity" "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA=="
"resolved" "https://registry.npmjs.org/async/-/async-2.6.4.tgz"
"version" "2.6.4"
dependencies:
"lodash" "^4.17.14"
"async@~0.2.6":
"integrity" "sha512-eAkdoKxU6/LkKDBzLpT+t6Ff5EtfSF4wx1WfJiPEEV7WNLnDaRXk0oVysiEPm262roaachGexwUv94WhSgN5TQ=="
"resolved" "https://registry.npmjs.org/async/-/async-0.2.10.tgz"
"version" "0.2.10"
"asynckit@^0.4.0":
"integrity" "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"
"autoprefixer@^6.3.1", "[email protected]":
"integrity" "sha512-BrtFd8nGiHJrfPfGZ4/iv3yFH15Fvo/+nb/ObqjfEaPM/KTUWprhJTBKdp5V3hATndPNV5v6ZLxHiqiQeZBgqQ=="
"resolved" "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.2.tgz"
"version" "6.7.2"
dependencies:
"browserslist" "^1.7.1"
"caniuse-db" "^1.0.30000618"
"normalize-range" "^0.1.2"
"num2fraction" "^1.2.2"
"postcss" "^5.2.11"
"postcss-value-parser" "^3.2.3"
"aws-sign2@~0.7.0":
"integrity" "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-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA=="
"resolved" "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz"
"version" "1.11.0"
"babel-code-frame@^6.11.0", "babel-code-frame@^6.16.0", "babel-code-frame@^6.22.0", "babel-code-frame@^6.26.0":
"integrity" "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", "[email protected]":
"integrity" "sha512-Rrtz+eCX9d+sOkHEOFV3HfQ+ZF9w7caIOrKR8niL/0590dvzpTY/k3nmPz+31qQO2+i61j9+WB92MDANU4Gt3g=="
"resolved" "https://registry.npmjs.org/babel-core/-/babel-core-6.22.1.tgz"
"version" "6.22.1"
dependencies:
"babel-code-frame" "^6.22.0"
"babel-generator" "^6.22.0"
"babel-helpers" "^6.22.0"
"babel-messages" "^6.22.0"
"babel-register" "^6.22.0"
"babel-runtime" "^6.22.0"
"babel-template" "^6.22.0"
"babel-traverse" "^6.22.1"
"babel-types" "^6.22.0"
"babylon" "^6.11.0"
"convert-source-map" "^1.1.0"
"debug" "^2.1.1"
"json5" "^0.5.0"
"lodash" "^4.2.0"
"minimatch" "^3.0.2"
"path-is-absolute" "^1.0.0"
"private" "^0.1.6"
"slash" "^1.0.0"
"source-map" "^0.5.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.0.0", "[email protected]":
"integrity" "sha512-fDjlUdJc1EsqmCvin6uLH6Oxz2XbEegkgD70zYwHW6yJNYoz4DJ0P+v4MesQo6u+OGr4k1cm7yYXHCx4SvYSug=="
"resolved" "https://registry.npmjs.org/babel-eslint/-/babel-eslint-7.1.1.tgz"
"version" "7.1.1"
dependencies:
"babel-code-frame" "^6.16.0"
"babel-traverse" "^6.15.0"
"babel-types" "^6.15.0"
"babylon" "^6.13.0"
"lodash.pickby" "^4.6.0"
"babel-generator@^6.18.0", "babel-generator@^6.22.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-builder-binary-assignment-operator-visitor@^6.24.1":
"integrity" "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.22.0":
"integrity" "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" "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" "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" "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-function-name@^6.22.0", "babel-helper-function-name@^6.24.1":
"integrity" "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" "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" "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" "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" "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" "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" "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.22.0", "babel-helpers@^6.24.1":
"integrity" "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@^18.0.0", "[email protected]":
"integrity" "sha512-bUl0sQk2V73Xssp9C0NLX+nCIuxocWKVsPSI5qHb72ZovPxq6jCZqwfcCYkFGtQ7w20RCzguJpuNmwaZtjD0WA=="
"resolved" "https://registry.npmjs.org/babel-jest/-/babel-jest-18.0.0.tgz"
"version" "18.0.0"
dependencies:
"babel-core" "^6.0.0"
"babel-plugin-istanbul" "^3.0.0"
"babel-preset-jest" "^18.0.0"
"integrity" "sha512-9FwQCj5nwsbSPhICckjDTCwrp7kwgPfn9uHQk2XphIPoGQNJpVmfAdbpg94RkVJO1IO/rXWtAQJKAz7rq0PSPQ=="
"resolved" "https://registry.npmjs.org/babel-loader/-/babel-loader-6.2.10.tgz"
"version" "6.2.10"
dependencies:
"find-cache-dir" "^0.1.1"
"loader-utils" "^0.2.11"
"mkdirp" "^0.5.1"
"object-assign" "^4.0.1"
"babel-messages@^6.22.0", "babel-messages@^6.23.0":
"integrity" "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", "babel-plugin-check-es2015-constants@^6.3.13":
"integrity" "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@^3.0.0":
"integrity" "sha512-2JhVigOPM/hqUonjl8otcjQD7z/SgXCVQEMCtOxP1jTzLYl0QPY/YR9H4hDtoG3w5l/YGSktJlA0tPPs0waeLg=="
"resolved" "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-3.1.2.tgz"
"version" "3.1.2"
dependencies:
"find-up" "^1.1.2"
"istanbul-lib-instrument" "^1.4.2"
"object-assign" "^4.1.0"
"test-exclude" "^3.3.0"
"babel-plugin-jest-hoist@^18.0.0":
"integrity" "sha512-Y26YgbdPh84sgTfYGOSnyEJKQle9PtkGQqsMoztgh+pREUe5UumAwB848RxV3CP7y1nzKK2nxdW46sknkibhwg=="
"resolved" "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-18.0.0.tgz"
"version" "18.0.0"
"babel-plugin-syntax-async-functions@^6.8.0":
"integrity" "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-class-properties@^6.8.0":
"integrity" "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-exponentiation-operator@^6.8.0":
"integrity" "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", "babel-plugin-syntax-flow@^6.3.13":
"integrity" "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" "sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz"
"version" "6.18.0"