forked from jesusoterogomez/react-notify-toast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
4314 lines (4314 loc) · 204 KB
/
package-lock.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "react-notify-toast",
"version": "0.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"acorn": {
"version": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz",
"integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=",
"dev": true
},
"acorn-to-esprima": {
"version": "https://registry.npmjs.org/acorn-to-esprima/-/acorn-to-esprima-1.0.7.tgz",
"integrity": "sha1-lDYll2AJj56tm52iJC+rL0hQKBs=",
"dev": true
},
"align-text": {
"version": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz",
"integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=",
"dev": true,
"requires": {
"kind-of": "https://registry.npmjs.org/kind-of/-/kind-of-3.1.0.tgz",
"longest": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz",
"repeat-string": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz"
}
},
"alter": {
"version": "https://registry.npmjs.org/alter/-/alter-0.2.0.tgz",
"integrity": "sha1-x1iICGF1cgNKrmJICvJrHU0cs80=",
"dev": true,
"requires": {
"stable": "https://registry.npmjs.org/stable/-/stable-0.1.5.tgz"
}
},
"amdefine": {
"version": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz",
"integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=",
"dev": true
},
"ansi-escapes": {
"version": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz",
"integrity": "sha1-06ioOzGapneTZisT52HHkRQiMG4=",
"dev": true
},
"ansi-regex": {
"version": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz",
"integrity": "sha1-xQYbbg74qBd15Q9dZhUb9r83EQc=",
"dev": true
},
"ansi-styles": {
"version": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
"integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
"dev": true
},
"anymatch": {
"version": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.0.tgz",
"integrity": "sha1-o+Uvo5FoyCX/V7AkgSbOWo/5VQc=",
"dev": true,
"optional": true,
"requires": {
"arrify": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
"micromatch": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz"
}
},
"argparse": {
"version": "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz",
"integrity": "sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY=",
"dev": true,
"requires": {
"sprintf-js": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"
}
},
"arr-diff": {
"version": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz",
"integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=",
"dev": true,
"optional": true,
"requires": {
"arr-flatten": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.1.tgz"
}
},
"arr-flatten": {
"version": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.1.tgz",
"integrity": "sha1-5f/lTUXhnzLyFukeuZyM6JK7YEs=",
"dev": true,
"optional": true
},
"array-union": {
"version": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
"integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=",
"dev": true,
"requires": {
"array-uniq": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz"
}
},
"array-uniq": {
"version": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
"integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=",
"dev": true
},
"array-unique": {
"version": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz",
"integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=",
"dev": true,
"optional": true
},
"arrify": {
"version": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
"integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=",
"dev": true
},
"asap": {
"version": "https://registry.npmjs.org/asap/-/asap-2.0.5.tgz",
"integrity": "sha1-UidltQw1EEkOUtfc/ghe+bqWlY8="
},
"ast-traverse": {
"version": "https://registry.npmjs.org/ast-traverse/-/ast-traverse-0.1.1.tgz",
"integrity": "sha1-ac8rg4bxnc2hux4F1o/jWdiJfeY=",
"dev": true
},
"ast-types": {
"version": "https://registry.npmjs.org/ast-types/-/ast-types-0.9.2.tgz",
"integrity": "sha1-LMGZedFcZVEIv1ZTI7jn7jh1H2s=",
"dev": true
},
"async": {
"version": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
"integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=",
"dev": true
},
"async-each": {
"version": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz",
"integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=",
"dev": true,
"optional": true
},
"babel-cli": {
"version": "https://registry.npmjs.org/babel-cli/-/babel-cli-6.18.0.tgz",
"integrity": "sha1-khF/NBrdnerZD2+n0Kl8DMCOwYY=",
"dev": true,
"requires": {
"babel-core": "https://registry.npmjs.org/babel-core/-/babel-core-6.21.0.tgz",
"babel-polyfill": "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.20.0.tgz",
"babel-register": "https://registry.npmjs.org/babel-register/-/babel-register-6.18.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"chokidar": "https://registry.npmjs.org/chokidar/-/chokidar-1.6.1.tgz",
"commander": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz",
"convert-source-map": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.3.0.tgz",
"fs-readdir-recursive": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz",
"glob": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.2.tgz",
"output-file-sync": "https://registry.npmjs.org/output-file-sync/-/output-file-sync-1.1.2.tgz",
"path-is-absolute": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
"slash": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz",
"source-map": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz",
"v8flags": "https://registry.npmjs.org/v8flags/-/v8flags-2.0.11.tgz"
}
},
"babel-code-frame": {
"version": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.20.0.tgz",
"integrity": "sha1-uWj4OQkPmovG1Bk4+5bLhPc4eyY=",
"dev": true,
"requires": {
"chalk": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
"esutils": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz",
"js-tokens": "https://registry.npmjs.org/js-tokens/-/js-tokens-2.0.0.tgz"
}
},
"babel-core": {
"version": "https://registry.npmjs.org/babel-core/-/babel-core-6.21.0.tgz",
"integrity": "sha1-dVJUgMIcgD+CbvOGfSLBnwgKNyQ=",
"dev": true,
"requires": {
"babel-code-frame": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.20.0.tgz",
"babel-generator": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.21.0.tgz",
"babel-helpers": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.16.0.tgz",
"babel-messages": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz",
"babel-register": "https://registry.npmjs.org/babel-register/-/babel-register-6.18.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.16.0.tgz",
"babel-traverse": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.21.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz",
"babylon": "https://registry.npmjs.org/babylon/-/babylon-6.14.1.tgz",
"convert-source-map": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.3.0.tgz",
"debug": "https://registry.npmjs.org/debug/-/debug-2.4.5.tgz",
"json5": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.2.tgz",
"minimatch": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz",
"path-is-absolute": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
"private": "https://registry.npmjs.org/private/-/private-0.1.6.tgz",
"slash": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz",
"source-map": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz"
}
},
"babel-eslint": {
"version": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-4.1.8.tgz",
"integrity": "sha1-T3nnpPWHns8D9Iyxb1UqNV/MMbI=",
"dev": true,
"requires": {
"acorn-to-esprima": "https://registry.npmjs.org/acorn-to-esprima/-/acorn-to-esprima-1.0.7.tgz",
"babel-core": "https://registry.npmjs.org/babel-core/-/babel-core-5.8.38.tgz",
"lodash.assign": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-3.2.0.tgz",
"lodash.pick": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-3.1.0.tgz"
},
"dependencies": {
"babel-core": {
"version": "https://registry.npmjs.org/babel-core/-/babel-core-5.8.38.tgz",
"integrity": "sha1-H8ruedfmG3ULALjlT238nQr4ZVg=",
"dev": true,
"requires": {
"babel-plugin-constant-folding": "https://registry.npmjs.org/babel-plugin-constant-folding/-/babel-plugin-constant-folding-1.0.1.tgz",
"babel-plugin-dead-code-elimination": "https://registry.npmjs.org/babel-plugin-dead-code-elimination/-/babel-plugin-dead-code-elimination-1.0.2.tgz",
"babel-plugin-eval": "https://registry.npmjs.org/babel-plugin-eval/-/babel-plugin-eval-1.0.1.tgz",
"babel-plugin-inline-environment-variables": "https://registry.npmjs.org/babel-plugin-inline-environment-variables/-/babel-plugin-inline-environment-variables-1.0.1.tgz",
"babel-plugin-jscript": "https://registry.npmjs.org/babel-plugin-jscript/-/babel-plugin-jscript-1.0.4.tgz",
"babel-plugin-member-expression-literals": "https://registry.npmjs.org/babel-plugin-member-expression-literals/-/babel-plugin-member-expression-literals-1.0.1.tgz",
"babel-plugin-property-literals": "https://registry.npmjs.org/babel-plugin-property-literals/-/babel-plugin-property-literals-1.0.1.tgz",
"babel-plugin-proto-to-assign": "https://registry.npmjs.org/babel-plugin-proto-to-assign/-/babel-plugin-proto-to-assign-1.0.4.tgz",
"babel-plugin-react-constant-elements": "https://registry.npmjs.org/babel-plugin-react-constant-elements/-/babel-plugin-react-constant-elements-1.0.3.tgz",
"babel-plugin-react-display-name": "https://registry.npmjs.org/babel-plugin-react-display-name/-/babel-plugin-react-display-name-1.0.3.tgz",
"babel-plugin-remove-console": "https://registry.npmjs.org/babel-plugin-remove-console/-/babel-plugin-remove-console-1.0.1.tgz",
"babel-plugin-remove-debugger": "https://registry.npmjs.org/babel-plugin-remove-debugger/-/babel-plugin-remove-debugger-1.0.1.tgz",
"babel-plugin-runtime": "https://registry.npmjs.org/babel-plugin-runtime/-/babel-plugin-runtime-1.0.7.tgz",
"babel-plugin-undeclared-variables-check": "https://registry.npmjs.org/babel-plugin-undeclared-variables-check/-/babel-plugin-undeclared-variables-check-1.0.2.tgz",
"babel-plugin-undefined-to-void": "https://registry.npmjs.org/babel-plugin-undefined-to-void/-/babel-plugin-undefined-to-void-1.1.6.tgz",
"babylon": "https://registry.npmjs.org/babylon/-/babylon-5.8.38.tgz",
"bluebird": "https://registry.npmjs.org/bluebird/-/bluebird-2.11.0.tgz",
"chalk": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
"convert-source-map": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.3.0.tgz",
"core-js": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz",
"debug": "https://registry.npmjs.org/debug/-/debug-2.4.5.tgz",
"detect-indent": "https://registry.npmjs.org/detect-indent/-/detect-indent-3.0.1.tgz",
"esutils": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz",
"fs-readdir-recursive": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-0.1.2.tgz",
"globals": "https://registry.npmjs.org/globals/-/globals-6.4.1.tgz",
"home-or-tmp": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-1.0.0.tgz",
"is-integer": "https://registry.npmjs.org/is-integer/-/is-integer-1.0.6.tgz",
"js-tokens": "https://registry.npmjs.org/js-tokens/-/js-tokens-1.0.1.tgz",
"json5": "https://registry.npmjs.org/json5/-/json5-0.4.0.tgz",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz",
"minimatch": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz",
"output-file-sync": "https://registry.npmjs.org/output-file-sync/-/output-file-sync-1.1.2.tgz",
"path-exists": "https://registry.npmjs.org/path-exists/-/path-exists-1.0.0.tgz",
"path-is-absolute": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
"private": "https://registry.npmjs.org/private/-/private-0.1.6.tgz",
"regenerator": "https://registry.npmjs.org/regenerator/-/regenerator-0.8.40.tgz",
"regexpu": "https://registry.npmjs.org/regexpu/-/regexpu-1.3.0.tgz",
"repeating": "https://registry.npmjs.org/repeating/-/repeating-1.1.3.tgz",
"resolve": "https://registry.npmjs.org/resolve/-/resolve-1.2.0.tgz",
"shebang-regex": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
"slash": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz",
"source-map": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz",
"source-map-support": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.2.10.tgz",
"to-fast-properties": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.2.tgz",
"trim-right": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz",
"try-resolve": "https://registry.npmjs.org/try-resolve/-/try-resolve-1.0.1.tgz"
}
},
"babylon": {
"version": "https://registry.npmjs.org/babylon/-/babylon-5.8.38.tgz",
"integrity": "sha1-7JsSCxG/bM1Bc6GL8hfmC3mFn/0=",
"dev": true
},
"detect-indent": {
"version": "https://registry.npmjs.org/detect-indent/-/detect-indent-3.0.1.tgz",
"integrity": "sha1-ncXl3bzu+DJXZLlFGwK8bVQIT3U=",
"dev": true,
"requires": {
"get-stdin": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz",
"minimist": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
"repeating": "https://registry.npmjs.org/repeating/-/repeating-1.1.3.tgz"
}
},
"fs-readdir-recursive": {
"version": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-0.1.2.tgz",
"integrity": "sha1-MVtPuMHKW4xH3v7zGdBz2tNWgFk=",
"dev": true
},
"globals": {
"version": "https://registry.npmjs.org/globals/-/globals-6.4.1.tgz",
"integrity": "sha1-hJgDKzttHMge68X3lpDY/in6v08=",
"dev": true
},
"home-or-tmp": {
"version": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-1.0.0.tgz",
"integrity": "sha1-S58eQIAMPlDGwn94FnavzOcfOYU=",
"dev": true,
"requires": {
"os-tmpdir": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
"user-home": "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz"
}
},
"js-tokens": {
"version": "https://registry.npmjs.org/js-tokens/-/js-tokens-1.0.1.tgz",
"integrity": "sha1-zENaXIuUrRWst5gxQPyAGCyJrq4=",
"dev": true
},
"json5": {
"version": "https://registry.npmjs.org/json5/-/json5-0.4.0.tgz",
"integrity": "sha1-BUNS5MTIDIbAkjh31EneF2pzLI0=",
"dev": true
},
"lodash": {
"version": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz",
"integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=",
"dev": true
},
"minimatch": {
"version": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz",
"integrity": "sha1-jQh8OcazjAAbl/ynzm0OHoCvusc=",
"dev": true,
"requires": {
"brace-expansion": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.6.tgz"
}
},
"minimist": {
"version": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
"integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=",
"dev": true
},
"repeating": {
"version": "https://registry.npmjs.org/repeating/-/repeating-1.1.3.tgz",
"integrity": "sha1-PUEUIYh3U3SU+X93+Xhfq4EPpKw=",
"dev": true,
"requires": {
"is-finite": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz"
}
},
"source-map-support": {
"version": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.2.10.tgz",
"integrity": "sha1-6lo5AKHByyUJagrozFwrSxDe09w=",
"dev": true,
"requires": {
"source-map": "https://registry.npmjs.org/source-map/-/source-map-0.1.32.tgz"
},
"dependencies": {
"source-map": {
"version": "https://registry.npmjs.org/source-map/-/source-map-0.1.32.tgz",
"integrity": "sha1-yLbBZ3l7pHQKjqMyUhYv8IWRsmY=",
"dev": true,
"requires": {
"amdefine": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz"
}
}
}
}
}
},
"babel-generator": {
"version": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.21.0.tgz",
"integrity": "sha1-YF8SacSJocdd7sp+oW1D1GVshJQ=",
"dev": true,
"requires": {
"babel-messages": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz",
"detect-indent": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz",
"jsesc": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.2.tgz",
"source-map": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz"
}
},
"babel-helper-bindify-decorators": {
"version": "https://registry.npmjs.org/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.18.0.tgz",
"integrity": "sha1-/ADFc2dqbnAv/6AAGVgIkuyHgKU=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-traverse": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.21.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz"
}
},
"babel-helper-builder-binary-assignment-operator-visitor": {
"version": "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.18.0.tgz",
"integrity": "sha1-iugUmJ96U2ghUuNAGgT6vQuzM6Y=",
"dev": true,
"requires": {
"babel-helper-explode-assignable-expression": "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.18.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz"
}
},
"babel-helper-builder-react-jsx": {
"version": "https://registry.npmjs.org/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.21.1.tgz",
"integrity": "sha1-xKJCCGVb6dwczPFNNm2hdvIGReQ=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz",
"esutils": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.2.tgz"
}
},
"babel-helper-call-delegate": {
"version": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.18.0.tgz",
"integrity": "sha1-BbFKr6QwiEsDQJfvKenwZ+pBM70=",
"dev": true,
"requires": {
"babel-helper-hoist-variables": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.18.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-traverse": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.21.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz"
}
},
"babel-helper-define-map": {
"version": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.18.0.tgz",
"integrity": "sha1-jWyF3H+7TBm+PeQEdNGOl8NnbsI=",
"dev": true,
"requires": {
"babel-helper-function-name": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.18.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.2.tgz"
}
},
"babel-helper-explode-assignable-expression": {
"version": "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.18.0.tgz",
"integrity": "sha1-FLjowtA61zXUsg8YQLJM0fZSOf4=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-traverse": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.21.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz"
}
},
"babel-helper-explode-class": {
"version": "https://registry.npmjs.org/babel-helper-explode-class/-/babel-helper-explode-class-6.18.0.tgz",
"integrity": "sha1-xE929PojucXWB8usXUEV56dvYss=",
"dev": true,
"requires": {
"babel-helper-bindify-decorators": "https://registry.npmjs.org/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.18.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-traverse": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.21.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz"
}
},
"babel-helper-function-name": {
"version": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.18.0.tgz",
"integrity": "sha1-aOxxrrofPiiypvBzAZC3VKm/MOY=",
"dev": true,
"requires": {
"babel-helper-get-function-arity": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.18.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.16.0.tgz",
"babel-traverse": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.21.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz"
}
},
"babel-helper-get-function-arity": {
"version": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.18.0.tgz",
"integrity": "sha1-pbGWlf0/nN/DKDmLR9r81wlPnyQ=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz"
}
},
"babel-helper-hoist-variables": {
"version": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.18.0.tgz",
"integrity": "sha1-qDW1q4tG1t6bq++uTZjqQehmuCo=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz"
}
},
"babel-helper-optimise-call-expression": {
"version": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.18.0.tgz",
"integrity": "sha1-kmHQKZ7hpPCKbdKLe3x3c0j9jw8=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz"
}
},
"babel-helper-regex": {
"version": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.18.0.tgz",
"integrity": "sha1-rg6/133obLLxryWOLMILX+iT7MY=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.2.tgz"
}
},
"babel-helper-remap-async-to-generator": {
"version": "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.20.3.tgz",
"integrity": "sha1-ndOzlvE+Ne9j5TgJhQCtwkxjxOc=",
"dev": true,
"requires": {
"babel-helper-function-name": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.18.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.16.0.tgz",
"babel-traverse": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.21.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz"
}
},
"babel-helper-replace-supers": {
"version": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.18.0.tgz",
"integrity": "sha1-KOxph3vkFE29ZPTMOjN+ifKakk4=",
"dev": true,
"requires": {
"babel-helper-optimise-call-expression": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.18.0.tgz",
"babel-messages": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.16.0.tgz",
"babel-traverse": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.21.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz"
}
},
"babel-helpers": {
"version": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.16.0.tgz",
"integrity": "sha1-EJXsENmSeUYFU+Z+s+7plz04Z+M=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.16.0.tgz"
}
},
"babel-messages": {
"version": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz",
"integrity": "sha1-v1BHNsqWfm1l7wrbWipflHyODrk=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz"
}
},
"babel-plugin-check-es2015-constants": {
"version": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.8.0.tgz",
"integrity": "sha1-2/Akwy7Te/2o3uHnbaAjhqjSb+c=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz"
}
},
"babel-plugin-constant-folding": {
"version": "https://registry.npmjs.org/babel-plugin-constant-folding/-/babel-plugin-constant-folding-1.0.1.tgz",
"integrity": "sha1-g2HTZMmORJw2kr26Ue/whEKQqo4=",
"dev": true
},
"babel-plugin-dead-code-elimination": {
"version": "https://registry.npmjs.org/babel-plugin-dead-code-elimination/-/babel-plugin-dead-code-elimination-1.0.2.tgz",
"integrity": "sha1-X3xFEnTc18zNv7s+C4XdKBIfD2U=",
"dev": true
},
"babel-plugin-eval": {
"version": "https://registry.npmjs.org/babel-plugin-eval/-/babel-plugin-eval-1.0.1.tgz",
"integrity": "sha1-ovrtJc5r5preS/7CY/cBaRlZUNo=",
"dev": true
},
"babel-plugin-inline-environment-variables": {
"version": "https://registry.npmjs.org/babel-plugin-inline-environment-variables/-/babel-plugin-inline-environment-variables-1.0.1.tgz",
"integrity": "sha1-H1jOkSB61qgmqL9kX6/mj/X+P/4=",
"dev": true
},
"babel-plugin-jscript": {
"version": "https://registry.npmjs.org/babel-plugin-jscript/-/babel-plugin-jscript-1.0.4.tgz",
"integrity": "sha1-jzQsOCduh6R9X6CovT1etsytj8w=",
"dev": true
},
"babel-plugin-member-expression-literals": {
"version": "https://registry.npmjs.org/babel-plugin-member-expression-literals/-/babel-plugin-member-expression-literals-1.0.1.tgz",
"integrity": "sha1-zF7bD6qNyScXDnTW0cAkQAIWJNM=",
"dev": true
},
"babel-plugin-property-literals": {
"version": "https://registry.npmjs.org/babel-plugin-property-literals/-/babel-plugin-property-literals-1.0.1.tgz",
"integrity": "sha1-AlIwGQAZKYCxwRjv6kjOk6q4MzY=",
"dev": true
},
"babel-plugin-proto-to-assign": {
"version": "https://registry.npmjs.org/babel-plugin-proto-to-assign/-/babel-plugin-proto-to-assign-1.0.4.tgz",
"integrity": "sha1-xJ56/QL1d7xNoF6i3wAiUM980SM=",
"dev": true,
"requires": {
"lodash": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz"
},
"dependencies": {
"lodash": {
"version": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz",
"integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=",
"dev": true
}
}
},
"babel-plugin-react-constant-elements": {
"version": "https://registry.npmjs.org/babel-plugin-react-constant-elements/-/babel-plugin-react-constant-elements-1.0.3.tgz",
"integrity": "sha1-lGc26DeEKcvDSdz/YvUcFDs041o=",
"dev": true
},
"babel-plugin-react-display-name": {
"version": "https://registry.npmjs.org/babel-plugin-react-display-name/-/babel-plugin-react-display-name-1.0.3.tgz",
"integrity": "sha1-dU/jiSboQkpOexWrbqYTne4FFPw=",
"dev": true
},
"babel-plugin-remove-console": {
"version": "https://registry.npmjs.org/babel-plugin-remove-console/-/babel-plugin-remove-console-1.0.1.tgz",
"integrity": "sha1-2PJFVsOgUAXUKqqv0neH9T/wE6c=",
"dev": true
},
"babel-plugin-remove-debugger": {
"version": "https://registry.npmjs.org/babel-plugin-remove-debugger/-/babel-plugin-remove-debugger-1.0.1.tgz",
"integrity": "sha1-/S6jzWGkKK0fO5yJiC/0KT6MFMc=",
"dev": true
},
"babel-plugin-runtime": {
"version": "https://registry.npmjs.org/babel-plugin-runtime/-/babel-plugin-runtime-1.0.7.tgz",
"integrity": "sha1-v3x9lm3Vbs1cF/ocslPJrLflSq8=",
"dev": true
},
"babel-plugin-syntax-async-functions": {
"version": "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz",
"integrity": "sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU=",
"dev": true
},
"babel-plugin-syntax-async-generators": {
"version": "https://registry.npmjs.org/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz",
"integrity": "sha1-a8lj67FuzLrmuStZbrfzXDQqi5o=",
"dev": true
},
"babel-plugin-syntax-class-constructor-call": {
"version": "https://registry.npmjs.org/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz",
"integrity": "sha1-nLnTn+Q8hgC+yBRkVt3L1OGnZBY=",
"dev": true
},
"babel-plugin-syntax-class-properties": {
"version": "https://registry.npmjs.org/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz",
"integrity": "sha1-1+sjt5oxf4VDlixQW4J8fWysJ94=",
"dev": true
},
"babel-plugin-syntax-decorators": {
"version": "https://registry.npmjs.org/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz",
"integrity": "sha1-MSVjtNvePMgGzuPkFszurd0RrAs=",
"dev": true
},
"babel-plugin-syntax-do-expressions": {
"version": "https://registry.npmjs.org/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz",
"integrity": "sha1-V0d1YTmqJtOQ0JQQsDdEugfkeW0=",
"dev": true
},
"babel-plugin-syntax-dynamic-import": {
"version": "https://registry.npmjs.org/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz",
"integrity": "sha1-jWomIpyDdFqZgqRBBRVyyqF5sdo=",
"dev": true
},
"babel-plugin-syntax-exponentiation-operator": {
"version": "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz",
"integrity": "sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4=",
"dev": true
},
"babel-plugin-syntax-export-extensions": {
"version": "https://registry.npmjs.org/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz",
"integrity": "sha1-cKFITw+QiaToStRLrDU8lbmxJyE=",
"dev": true
},
"babel-plugin-syntax-flow": {
"version": "https://registry.npmjs.org/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz",
"integrity": "sha1-TDqyCiryaqIM0lmVw5jE63AxDI0=",
"dev": true
},
"babel-plugin-syntax-function-bind": {
"version": "https://registry.npmjs.org/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz",
"integrity": "sha1-SMSV8Xe98xqYHnMvVa3AvdJgH0Y=",
"dev": true
},
"babel-plugin-syntax-jsx": {
"version": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz",
"integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=",
"dev": true
},
"babel-plugin-syntax-object-rest-spread": {
"version": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz",
"integrity": "sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=",
"dev": true
},
"babel-plugin-syntax-trailing-function-commas": {
"version": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.20.0.tgz",
"integrity": "sha1-RCg14ZF59FuH6S1HfXC58fGLXE8=",
"dev": true
},
"babel-plugin-transform-async-generator-functions": {
"version": "https://registry.npmjs.org/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.17.0.tgz",
"integrity": "sha1-0LWisvCUDyskX6IKAFGe17xsrlQ=",
"dev": true,
"requires": {
"babel-helper-remap-async-to-generator": "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.20.3.tgz",
"babel-plugin-syntax-async-generators": "https://registry.npmjs.org/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz"
}
},
"babel-plugin-transform-async-to-generator": {
"version": "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.16.0.tgz",
"integrity": "sha1-Gew2yxSGtZ+fRorfpCzhOQjKKZk=",
"dev": true,
"requires": {
"babel-helper-remap-async-to-generator": "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.20.3.tgz",
"babel-plugin-syntax-async-functions": "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz"
}
},
"babel-plugin-transform-class-constructor-call": {
"version": "https://registry.npmjs.org/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.18.0.tgz",
"integrity": "sha1-gIVeOKGrR7jGxkf46hvNLADKOq4=",
"dev": true,
"requires": {
"babel-plugin-syntax-class-constructor-call": "https://registry.npmjs.org/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.16.0.tgz"
}
},
"babel-plugin-transform-class-properties": {
"version": "https://registry.npmjs.org/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.19.0.tgz",
"integrity": "sha1-EnSzSauq3INRZOIAT0okRKJ4jV8=",
"dev": true,
"requires": {
"babel-helper-function-name": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.18.0.tgz",
"babel-plugin-syntax-class-properties": "https://registry.npmjs.org/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.16.0.tgz"
}
},
"babel-plugin-transform-decorators": {
"version": "https://registry.npmjs.org/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.13.0.tgz",
"integrity": "sha1-gtZcFHCug+LRPuvssKHCR21i2p0=",
"dev": true,
"requires": {
"babel-helper-define-map": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.18.0.tgz",
"babel-helper-explode-class": "https://registry.npmjs.org/babel-helper-explode-class/-/babel-helper-explode-class-6.18.0.tgz",
"babel-plugin-syntax-decorators": "https://registry.npmjs.org/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.16.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz"
}
},
"babel-plugin-transform-do-expressions": {
"version": "https://registry.npmjs.org/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.8.0.tgz",
"integrity": "sha1-/aaSrzOYNcwlW7dUTvuPfBMGwnM=",
"dev": true,
"requires": {
"babel-plugin-syntax-do-expressions": "https://registry.npmjs.org/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz"
}
},
"babel-plugin-transform-es2015-arrow-functions": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.8.0.tgz",
"integrity": "sha1-W2Ovwxgb3JqMTUgbWk8/fX/vPZ0=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz"
}
},
"babel-plugin-transform-es2015-block-scoped-functions": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.8.0.tgz",
"integrity": "sha1-7ZXWKcS1pxriloK5mPcNmDPrNm0=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz"
}
},
"babel-plugin-transform-es2015-block-scoping": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.21.0.tgz",
"integrity": "sha1-6EBof5IucPssQrsTUBg4wXShFe0=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.16.0.tgz",
"babel-traverse": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.21.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.2.tgz"
}
},
"babel-plugin-transform-es2015-classes": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.18.0.tgz",
"integrity": "sha1-/+ehcyG/g+SU3NoK4/xy30j/0dk=",
"dev": true,
"requires": {
"babel-helper-define-map": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.18.0.tgz",
"babel-helper-function-name": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.18.0.tgz",
"babel-helper-optimise-call-expression": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.18.0.tgz",
"babel-helper-replace-supers": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.18.0.tgz",
"babel-messages": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.16.0.tgz",
"babel-traverse": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.21.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz"
}
},
"babel-plugin-transform-es2015-computed-properties": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.8.0.tgz",
"integrity": "sha1-9RAQ/WGzvXtrYKX9/TB7t6UnmHA=",
"dev": true,
"requires": {
"babel-helper-define-map": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.18.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.16.0.tgz"
}
},
"babel-plugin-transform-es2015-destructuring": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.19.0.tgz",
"integrity": "sha1-/x2RHEs/TKtiG9ZnAqhprNGQBTM=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz"
}
},
"babel-plugin-transform-es2015-duplicate-keys": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.8.0.tgz",
"integrity": "sha1-/Y9/cXH8EIzBxwwxZLnxWoHCX30=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz"
}
},
"babel-plugin-transform-es2015-for-of": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.18.0.tgz",
"integrity": "sha1-TFF1BNtkv4z8EZprjxdyEfICinA=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz"
}
},
"babel-plugin-transform-es2015-function-name": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.9.0.tgz",
"integrity": "sha1-jBNbF9vQZOW7pW7FEbqu4vyoJxk=",
"dev": true,
"requires": {
"babel-helper-function-name": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.18.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz"
}
},
"babel-plugin-transform-es2015-literals": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.8.0.tgz",
"integrity": "sha1-UKouXHlY/CqyXXTsEX4MyY8EZGg=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz"
}
},
"babel-plugin-transform-es2015-modules-amd": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.18.0.tgz",
"integrity": "sha1-SaBUy7divfmuLYqAcHbPreYUHkA=",
"dev": true,
"requires": {
"babel-plugin-transform-es2015-modules-commonjs": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.18.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.16.0.tgz"
}
},
"babel-plugin-transform-es2015-modules-commonjs": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.18.0.tgz",
"integrity": "sha1-wVrluxGzKgq9zJilg3uqTujWe8w=",
"dev": true,
"requires": {
"babel-plugin-transform-strict-mode": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.18.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.16.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz"
}
},
"babel-plugin-transform-es2015-modules-systemjs": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.19.0.tgz",
"integrity": "sha1-UEOBNuunRSfvoApbD++vHcQHHaY=",
"dev": true,
"requires": {
"babel-helper-hoist-variables": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.18.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.16.0.tgz"
}
},
"babel-plugin-transform-es2015-modules-umd": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.18.0.tgz",
"integrity": "sha1-IzUXcOzlwfjoPtZ8sdeZKIRJHlA=",
"dev": true,
"requires": {
"babel-plugin-transform-es2015-modules-amd": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.18.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.16.0.tgz"
}
},
"babel-plugin-transform-es2015-object-super": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.8.0.tgz",
"integrity": "sha1-G4WHQKWkQAiHwj3P9vTVbupKJMU=",
"dev": true,
"requires": {
"babel-helper-replace-supers": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.18.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz"
}
},
"babel-plugin-transform-es2015-parameters": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.21.0.tgz",
"integrity": "sha1-RqZV5oZO+YQJFEjN8CTYe2Cyp9g=",
"dev": true,
"requires": {
"babel-helper-call-delegate": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.18.0.tgz",
"babel-helper-get-function-arity": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.18.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-6.16.0.tgz",
"babel-traverse": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.21.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz"
}
},
"babel-plugin-transform-es2015-shorthand-properties": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.18.0.tgz",
"integrity": "sha1-4u3jt99Hv5gBUZJlNNHdDL6lj0M=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz"
}
},
"babel-plugin-transform-es2015-spread": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.8.0.tgz",
"integrity": "sha1-Ahf3N+O4IfpaZp8YfG7VkgXwXpw=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz"
}
},
"babel-plugin-transform-es2015-sticky-regex": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.8.0.tgz",
"integrity": "sha1-5z0wCkQKNdXGT1wqNE3CNuPfR74=",
"dev": true,
"requires": {
"babel-helper-regex": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.18.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-6.21.0.tgz"
}
},
"babel-plugin-transform-es2015-template-literals": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.8.0.tgz",
"integrity": "sha1-huuHbQosY12k7ASLT33p38iX5ms=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz"
}
},
"babel-plugin-transform-es2015-typeof-symbol": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.18.0.tgz",
"integrity": "sha1-CxTEhinJD/R6BlAHf2qmmb7jV5g=",
"dev": true,
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz"
}
},
"babel-plugin-transform-es2015-unicode-regex": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.11.0.tgz",
"integrity": "sha1-YpjOq6rYjVCj9POS2N6ZcmD27yw=",
"dev": true,
"requires": {
"babel-helper-regex": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.18.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz",
"regexpu-core": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz"
}
},
"babel-plugin-transform-exponentiation-operator": {
"version": "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.8.0.tgz",
"integrity": "sha1-2yV0LpM56t5nbKms7Eb5VVmaaKQ=",
"dev": true,
"requires": {
"babel-helper-builder-binary-assignment-operator-visitor": "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.18.0.tgz",
"babel-plugin-syntax-exponentiation-operator": "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz"
}
},
"babel-plugin-transform-export-extensions": {
"version": "https://registry.npmjs.org/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.8.0.tgz",
"integrity": "sha1-+oD/ZVtjZUlDG/049rgXvYLkf1s=",
"dev": true,
"requires": {
"babel-plugin-syntax-export-extensions": "https://registry.npmjs.org/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz"
}
},
"babel-plugin-transform-flow-strip-types": {
"version": "https://registry.npmjs.org/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.21.0.tgz",
"integrity": "sha1-Luo/i1uyNDObRyg/6sFVz7I3uUg=",
"dev": true,
"requires": {
"babel-plugin-syntax-flow": "https://registry.npmjs.org/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz"
}
},
"babel-plugin-transform-function-bind": {
"version": "https://registry.npmjs.org/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.8.0.tgz",
"integrity": "sha1-5/M0zmn1DSj+hQqCLqqrn6T02CE=",
"dev": true,
"requires": {
"babel-plugin-syntax-function-bind": "https://registry.npmjs.org/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz"
}
},
"babel-plugin-transform-object-rest-spread": {
"version": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.20.2.tgz",
"integrity": "sha1-6BbFW7p3sUwWNl2H4q5IyP0Y/C4=",
"dev": true,
"requires": {
"babel-plugin-syntax-object-rest-spread": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.20.0.tgz"