-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
12883 lines (12883 loc) · 490 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": "electron-ava",
"version": "0.3.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "electron-ava",
"version": "0.3.0",
"license": "MIT",
"dependencies": {
"arrify": "^1.0.1",
"ava": "^0.17.0",
"bluebird": "^3.4.6",
"currently-unhandled": "^0.4.1",
"electron": "^20.0.2",
"figures": "^2.0.0",
"has-flag": "^2.0.0",
"is-ci": "^1.0.10",
"meow": "^3.7.0",
"object-assign": "^4.1.0",
"pkg-conf": "^2.0.0",
"update-notifier": "^1.0.3"
},
"bin": {
"electron-ava": "cli.js"
},
"devDependencies": {
"xo": "^0.17.1"
}
},
"node_modules/@electron/get": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/@electron/get/-/get-1.14.1.tgz",
"integrity": "sha512-BrZYyL/6m0ZXz/lDxy/nlVhQz+WF+iPS6qXolEU8atw7h6v1aYkjwJZ63m+bJMBTxDE66X+r2tPS4a/8C82sZw==",
"dependencies": {
"debug": "^4.1.1",
"env-paths": "^2.2.0",
"fs-extra": "^8.1.0",
"got": "^9.6.0",
"progress": "^2.0.3",
"semver": "^6.2.0",
"sumchecker": "^3.0.1"
},
"engines": {
"node": ">=8.6"
},
"optionalDependencies": {
"global-agent": "^3.0.0",
"global-tunnel-ng": "^2.7.1"
}
},
"node_modules/@electron/get/node_modules/debug": {
"version": "4.3.4",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
"integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
"dependencies": {
"ms": "2.1.2"
},
"engines": {
"node": ">=6.0"
},
"peerDependenciesMeta": {
"supports-color": {
"optional": true
}
}
},
"node_modules/@electron/get/node_modules/ms": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
},
"node_modules/@electron/get/node_modules/semver": {
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/@sindresorhus/is": {
"version": "0.14.0",
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz",
"integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==",
"engines": {
"node": ">=6"
}
},
"node_modules/@szmarczak/http-timer": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz",
"integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==",
"dependencies": {
"defer-to-connect": "^1.0.1"
},
"engines": {
"node": ">=6"
}
},
"node_modules/@types/node": {
"version": "16.11.47",
"resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.47.tgz",
"integrity": "sha512-fpP+jk2zJ4VW66+wAMFoBJlx1bxmBKx4DUFf68UHgdGCOuyUTDlLWqsaNPJh7xhNDykyJ9eIzAygilP/4WoN8g=="
},
"node_modules/@types/yauzl": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz",
"integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==",
"optional": true,
"dependencies": {
"@types/node": "*"
}
},
"node_modules/acorn": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-4.0.3.tgz",
"integrity": "sha512-ezz9ine4mmscgFcLME0GLpGi7j9SGgiqGYjaHbG7aymdPH3Zdn5Dkgvv39ErCk+XMfUW/+Pptt00Xv9vjhntjQ==",
"dev": true,
"bin": {
"acorn": "bin/acorn"
},
"engines": {
"node": ">=0.4.0"
}
},
"node_modules/acorn-jsx": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz",
"integrity": "sha512-AU7pnZkguthwBjKgCg6998ByQNIMjbuDQZ8bb78QAFZwPfmKia8AIzgY/gWgqCjnht8JLdXmB4YxA0KaV60ncQ==",
"dev": true,
"dependencies": {
"acorn": "^3.0.4"
}
},
"node_modules/acorn-jsx/node_modules/acorn": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz",
"integrity": "sha512-OLUyIIZ7mF5oaAUT1w0TFqQS81q3saT46x8t7ukpPjMNk+nbs4ZHhs7ToV8EWnLYLepjETXd4XaCE4uxkMeqUw==",
"dev": true,
"bin": {
"acorn": "bin/acorn"
},
"engines": {
"node": ">=0.4.0"
}
},
"node_modules/ajv": {
"version": "4.10.0",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-4.10.0.tgz",
"integrity": "sha512-MyMSPSi5pQZZjTKLSJMs2Ww7HnQ6usesH8x2Z9KtQ+2dw0f5tnTdtfAmiAP+BxPfer8R3H1m91+51sIB9j7dtQ==",
"dev": true,
"dependencies": {
"co": "^4.6.0",
"json-stable-stringify": "^1.0.1"
}
},
"node_modules/ajv-keywords": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.2.0.tgz",
"integrity": "sha512-3L44bBuV9JpvY7Tildrc6mdwD1LtAoFz7cgFEoUiMNk7/xEXKT7JgjW/u2bkgBb1JVIGM04n53a2gRaV2r6E4A==",
"dev": true,
"peerDependencies": {
"ajv": ">=4.9.0"
}
},
"node_modules/ansi-align": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-1.1.0.tgz",
"integrity": "sha512-ncgIO/ZeFcsh3cye0NgGPb5h/3vCiKJxp6HvPtqsFvEL/4b/G2tNgrr8EOYN5RSVnGx69k8dFYSBG/w1yKX58Q==",
"dependencies": {
"string-width": "^1.0.1"
}
},
"node_modules/ansi-escapes": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz",
"integrity": "sha512-wiXutNjDUlNEDWHcYH3jtZUhd3c4/VojassD8zHdHCY13xbZy2XbW+NKQwA0tWGBVzDA9qEzYwfoSsWmviidhw==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/ansi-regex": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz",
"integrity": "sha512-jCcLjwL2jOaTcRIaJkoRteMwNXg8nfJvwT/9K91kwZhH7bf4lsprqZ2+Qa7tSp8BYtejobOCBkDreC07q0KmZw==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/ansi-styles": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
"integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/anymatch": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.0.tgz",
"integrity": "sha512-GbRpOH/EMz/3Zq70whK2Q2tkbxbaM5IAU+EZL4zxnEqGtzJWFCJ3leKc6P/w3UmDFIB/GkwfeZJ7ChL7bZMXJw==",
"dependencies": {
"arrify": "^1.0.0",
"micromatch": "^2.1.5"
}
},
"node_modules/argparse": {
"version": "1.0.9",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz",
"integrity": "sha512-iK7YPKV+GsvihPUTKcM3hh2gq47zSFCpVDv/Ay2O9mzuD7dfvLV4vhms4XcjZvv4VRgXuGLMEts51IlTjS11/A==",
"dev": true,
"dependencies": {
"sprintf-js": "~1.0.2"
}
},
"node_modules/argparse/node_modules/sprintf-js": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
"integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==",
"dev": true
},
"node_modules/arr-diff": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz",
"integrity": "sha512-dtXTVMkh6VkEEA7OhXnN1Ecb8aAGFdZ1LFxtOCoqj4qkyOJMt7+qs6Ahdy6p/NQCPYsRSXXivhSB/J5E9jmYKA==",
"dependencies": {
"arr-flatten": "^1.0.1"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/arr-exclude": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/arr-exclude/-/arr-exclude-1.0.0.tgz",
"integrity": "sha512-TiXbMMkPQNfoHcVi6jeU6IejGAFlcn0hYgVVe7tCiqL/ZtxbNkhDSMarUQjg/PAe9NQNvRd6YCVNutzo3Fxdug==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/arr-flatten": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.1.tgz",
"integrity": "sha512-gr7j7/S9ClfxK5k69IqOowbRqEE0/+rbYuHr5B011xaL7TPLNYRzULsgnTCGbCySJAz2j+e3sBL+0OmZOGykDQ==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/array-differ": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz",
"integrity": "sha512-LeZY+DZDRnvP7eMuQ6LHfCzUGxAAIViUBliK24P3hWXL6y4SortgR6Nim6xrkfSLlmH0+k+9NYNwVC2s53ZrYQ==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/array-find-index": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz",
"integrity": "sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/array-union": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
"integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==",
"dependencies": {
"array-uniq": "^1.0.1"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/array-uniq": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
"integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/array-unique": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz",
"integrity": "sha512-G2n5bG5fSUCpnsXz4+8FUkYsGPkNfLn9YvS66U5qbTIXI2Ynnlo4Bi42bWv+omKUCqz+ejzfClwne0alJWJPhg==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/arrify": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
"integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/async-each": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz",
"integrity": "sha512-STDwmg+1mv249vNFx+s+sF4HrdLxlF5Z6L4npilrkgchWPEuW4X13gKzSJq51qJy9InOgwmPepgfMb9/Qu0fSg=="
},
"node_modules/auto-bind": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/auto-bind/-/auto-bind-0.1.0.tgz",
"integrity": "sha512-JN6qgB5fRhyXXMN9IpHuIpB9kxklpfsyVFVh4NyrzRrdfMptPUVN01Zo7xO4YODgrKQkuLlpjm4dgpO1GCEuJg==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/ava": {
"version": "0.17.0",
"resolved": "https://registry.npmjs.org/ava/-/ava-0.17.0.tgz",
"integrity": "sha512-Cr214Kw3q5TkyP2qV441gB/fiSPU17Q8L1YM6m/8vx2Z+xn4M983n9OF67n2gp5DbF9g8HA8hngDt1tuqX8D+w==",
"dependencies": {
"arr-flatten": "^1.0.1",
"array-union": "^1.0.1",
"array-uniq": "^1.0.2",
"arrify": "^1.0.0",
"auto-bind": "^0.1.0",
"ava-files": "^0.2.0",
"ava-init": "^0.1.0",
"babel-code-frame": "^6.16.0",
"babel-core": "^6.17.0",
"babel-plugin-ava-throws-helper": "^0.1.0",
"babel-plugin-detective": "^2.0.0",
"babel-plugin-espower": "^2.3.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-es2015-node4": "^2.1.0",
"babel-preset-stage-2": "^6.17.0",
"babel-runtime": "^6.11.6",
"bluebird": "^3.0.0",
"caching-transform": "^1.0.0",
"chalk": "^1.0.0",
"chokidar": "^1.4.2",
"clean-yaml-object": "^0.1.0",
"cli-cursor": "^1.0.2",
"cli-spinners": "^0.1.2",
"cli-truncate": "^0.2.0",
"co-with-promise": "^4.6.0",
"common-path-prefix": "^1.0.0",
"convert-source-map": "^1.2.0",
"core-assert": "^0.2.0",
"currently-unhandled": "^0.4.1",
"debug": "^2.2.0",
"empower-core": "^0.6.1",
"figures": "^1.4.0",
"find-cache-dir": "^0.1.1",
"fn-name": "^2.0.0",
"get-port": "^2.1.0",
"has-flag": "^2.0.0",
"ignore-by-default": "^1.0.0",
"is-ci": "^1.0.7",
"is-generator-fn": "^1.0.0",
"is-obj": "^1.0.0",
"is-observable": "^0.2.0",
"is-promise": "^2.1.0",
"last-line-stream": "^1.0.0",
"lodash.debounce": "^4.0.3",
"lodash.difference": "^4.3.0",
"lodash.isequal": "^4.4.0",
"loud-rejection": "^1.2.0",
"matcher": "^0.1.1",
"max-timeout": "^1.0.0",
"md5-hex": "^1.2.0",
"meow": "^3.7.0",
"ms": "^0.7.1",
"object-assign": "^4.0.1",
"observable-to-promise": "^0.4.0",
"option-chain": "^0.1.0",
"package-hash": "^1.1.0",
"pkg-conf": "^1.0.1",
"plur": "^2.0.0",
"power-assert-context-formatter": "^1.0.4",
"power-assert-renderer-assertion": "^1.0.1",
"power-assert-renderer-succinct": "^1.0.1",
"pretty-ms": "^2.0.0",
"repeating": "^2.0.0",
"require-precompiled": "^0.1.0",
"resolve-cwd": "^1.0.0",
"semver": "^5.3.0",
"set-immediate-shim": "^1.0.1",
"source-map-support": "^0.4.0",
"stack-utils": "^0.4.0",
"strip-ansi": "^3.0.1",
"strip-bom": "^2.0.0",
"time-require": "^0.1.2",
"unique-temp-dir": "^1.0.0",
"update-notifier": "^1.0.0"
},
"bin": {
"ava": "cli.js"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/ava-files": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/ava-files/-/ava-files-0.2.0.tgz",
"integrity": "sha512-bczipSuUTsvWFQBnGnFoGlKThQvEaP2TFUe2dg0m/Ca0APMm+lucKzSDqE+z3vMMhamqX1jdjSN9HSQss2otlg==",
"dependencies": {
"auto-bind": "^0.1.0",
"bluebird": "^3.4.1",
"globby": "^6.0.0",
"ignore-by-default": "^1.0.1",
"lodash.flatten": "^4.2.0",
"multimatch": "^2.1.0",
"slash": "^1.0.0"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/ava-init": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/ava-init/-/ava-init-0.1.6.tgz",
"integrity": "sha512-Y6CAxipHCYSRwFf2hJ/WLrUulI7UJZvLg2q727Ls6JpbDgT1vFVKDa5KPB8eDP2EFkLoxTQvfPt8oQwChcrd2Q==",
"dependencies": {
"arr-exclude": "^1.0.0",
"cross-spawn": "^4.0.0",
"pinkie-promise": "^2.0.0",
"read-pkg-up": "^1.0.1",
"the-argv": "^1.0.0",
"write-pkg": "^1.0.0"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/ava/node_modules/figures": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz",
"integrity": "sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==",
"dependencies": {
"escape-string-regexp": "^1.0.5",
"object-assign": "^4.1.0"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/ava/node_modules/find-up": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz",
"integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==",
"dependencies": {
"path-exists": "^2.0.0",
"pinkie-promise": "^2.0.0"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/ava/node_modules/load-json-file": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz",
"integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==",
"dependencies": {
"graceful-fs": "^4.1.2",
"parse-json": "^2.2.0",
"pify": "^2.0.0",
"pinkie-promise": "^2.0.0",
"strip-bom": "^2.0.0"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/ava/node_modules/path-exists": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz",
"integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==",
"dependencies": {
"pinkie-promise": "^2.0.0"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/ava/node_modules/pkg-conf": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-1.1.3.tgz",
"integrity": "sha512-9hHgE5+Xai/ChrnahNP8Ke0VNF/s41IZIB/d24eMHEaRamdPg+wwlRm2lTb5wMvE8eTIKrYZsrxfuOwt3dpsIQ==",
"dependencies": {
"find-up": "^1.0.0",
"load-json-file": "^1.1.0",
"object-assign": "^4.0.1",
"symbol": "^0.2.1"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/babel-code-frame": {
"version": "6.20.0",
"resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.20.0.tgz",
"integrity": "sha512-zPlDuOAAShXlZOprsC1fcMQATRvhm3sCff33ahWfhya61IPSjgl24TLFoiRGqg78/kJGMyhTeGEv6T+gIQ0QJw==",
"dependencies": {
"chalk": "^1.1.0",
"esutils": "^2.0.2",
"js-tokens": "^2.0.0"
}
},
"node_modules/babel-core": {
"version": "6.21.0",
"resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.21.0.tgz",
"integrity": "sha512-N6zAtc4+l3ofgYFk9tUa0V1JDXg+y+wecq9M20/aPgvkBM9VSkTdTB6KEPniBOcxabNZrXDv9C2xBs1/Yyre2w==",
"dependencies": {
"babel-code-frame": "^6.20.0",
"babel-generator": "^6.21.0",
"babel-helpers": "^6.16.0",
"babel-messages": "^6.8.0",
"babel-register": "^6.18.0",
"babel-runtime": "^6.20.0",
"babel-template": "^6.16.0",
"babel-traverse": "^6.21.0",
"babel-types": "^6.21.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"
}
},
"node_modules/babel-generator": {
"version": "6.21.0",
"resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.21.0.tgz",
"integrity": "sha512-VE8qFWG0QMcdoGDuwt7PeBaC5IwVImYV2Xqvve5C4TP46u6LpypgQM3z1jd2SVm0/JreXHR0Mqceyoj5kuhKgw==",
"dependencies": {
"babel-messages": "^6.8.0",
"babel-runtime": "^6.20.0",
"babel-types": "^6.21.0",
"detect-indent": "^4.0.0",
"jsesc": "^1.3.0",
"lodash": "^4.2.0",
"source-map": "^0.5.0"
}
},
"node_modules/babel-helper-bindify-decorators": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.18.0.tgz",
"integrity": "sha512-E0bQ6xSStUCJjfpu7Ebpq7lLwdWF1WRcChBqMidq7lJqxGJJdEvK5rfSr2GxB7ZxRdc1phYgoc4UDz/hbPNyEQ==",
"dependencies": {
"babel-runtime": "^6.0.0",
"babel-traverse": "^6.18.0",
"babel-types": "^6.18.0"
}
},
"node_modules/babel-helper-builder-binary-assignment-operator-visitor": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.18.0.tgz",
"integrity": "sha512-1IMPHTAr8UC547MwfBGFdbiwuheseIETwr2TTZAf5B6ms46vTHwc0UEY3HRqpf+aSwyiWOJGwqWxeqd8FQ4SJA==",
"dependencies": {
"babel-helper-explode-assignable-expression": "^6.18.0",
"babel-runtime": "^6.0.0",
"babel-types": "^6.18.0"
}
},
"node_modules/babel-helper-call-delegate": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.18.0.tgz",
"integrity": "sha512-I3CHwDrXv9e1ImIG3nyy+DcLCjPwhw0UdoZ+ltCTHH7skPVx2OIsfATnIdtCJTfPvM5Q5hZOkddfLzPHgtkb/g==",
"dependencies": {
"babel-helper-hoist-variables": "^6.18.0",
"babel-runtime": "^6.0.0",
"babel-traverse": "^6.18.0",
"babel-types": "^6.18.0"
}
},
"node_modules/babel-helper-define-map": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.18.0.tgz",
"integrity": "sha512-Zj98kEGp/sgeYMGKCjJfNVzTSnQpT8l8l5GsCAua+UIa0bnPbd6N33UyeAXUXaVwNqvGbArZ5lHZh+61AvL3XQ==",
"dependencies": {
"babel-helper-function-name": "^6.18.0",
"babel-runtime": "^6.9.0",
"babel-types": "^6.18.0",
"lodash": "^4.2.0"
}
},
"node_modules/babel-helper-explode-assignable-expression": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.18.0.tgz",
"integrity": "sha512-Ts03TnekHoflo72voJx+epk3rZdFEdkilhRKw1N+gJNF+b/dF72MlItf3BqyjJ9dn3fcygtHG1+YMfmxUBvGtg==",
"dependencies": {
"babel-runtime": "^6.0.0",
"babel-traverse": "^6.18.0",
"babel-types": "^6.18.0"
}
},
"node_modules/babel-helper-explode-class": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babel-helper-explode-class/-/babel-helper-explode-class-6.18.0.tgz",
"integrity": "sha512-UjIw29PVxkmlcqBDUrBsGBF7I8mUS5qumomvuXsQ6yHw05UdMaaGo0mceVHDKiuAH3semdGmslBEC2il+sjq3Q==",
"dependencies": {
"babel-helper-bindify-decorators": "^6.18.0",
"babel-runtime": "^6.0.0",
"babel-traverse": "^6.18.0",
"babel-types": "^6.18.0"
}
},
"node_modules/babel-helper-function-name": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.18.0.tgz",
"integrity": "sha512-hibwSh8POeHXw4GSzR52LX/oNvadDU5oKiPX3L4yQL/oATExlb8I6PuIeFey+Ns0aCznnUB4T9cHrOaFmBjcTg==",
"dependencies": {
"babel-helper-get-function-arity": "^6.18.0",
"babel-runtime": "^6.0.0",
"babel-template": "^6.8.0",
"babel-traverse": "^6.18.0",
"babel-types": "^6.18.0"
}
},
"node_modules/babel-helper-get-function-arity": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.18.0.tgz",
"integrity": "sha512-ThABYJ6cJCQFsZAmhVdb0ndM7CwuvFQNxgPQxfiP7SGma06GKnw9lqwmS9/HiGmSNaXdmbtgzr0Uk/UIl4Avag==",
"dependencies": {
"babel-runtime": "^6.0.0",
"babel-types": "^6.18.0"
}
},
"node_modules/babel-helper-hoist-variables": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.18.0.tgz",
"integrity": "sha512-hKwWVIxJgLVIn7nIP1xbKFnELeod4e8LjdSLeEqrj+BpQBfXoiQTPSWsux7OscpiblHZ8SXlLVJQkzaCsWiIKw==",
"dependencies": {
"babel-runtime": "^6.0.0",
"babel-types": "^6.18.0"
}
},
"node_modules/babel-helper-optimise-call-expression": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.18.0.tgz",
"integrity": "sha512-DEJREpJBrG7go/vde/TV/n4QfUES9yo9Kcj9HMXdFWxuJ/f/cmt3jOSAhte/hO+QMLqo7EmOGGaxCfAiqWqYcQ==",
"dependencies": {
"babel-runtime": "^6.0.0",
"babel-types": "^6.18.0"
}
},
"node_modules/babel-helper-regex": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.18.0.tgz",
"integrity": "sha512-XiECXnlDeOJgHWrAqUQJ7sS6YHtTGY/QpCyv96vtUfFBxtt3nSr56vViQqgVNN7NOth5c6NSvn4k2zCCrbN+aA==",
"dependencies": {
"babel-runtime": "^6.9.0",
"babel-types": "^6.18.0",
"lodash": "^4.2.0"
}
},
"node_modules/babel-helper-remap-async-to-generator": {
"version": "6.20.3",
"resolved": "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.20.3.tgz",
"integrity": "sha512-pBt5BzIQpLhJe3eThuloC3KxIddJVkdgSnrcfMNtgCxxQ5vTbYDpzaoluO+T7cUx3uvokq6yreHmRsIjaEaiRw==",
"dependencies": {
"babel-helper-function-name": "^6.18.0",
"babel-runtime": "^6.20.0",
"babel-template": "^6.16.0",
"babel-traverse": "^6.20.0",
"babel-types": "^6.20.0"
}
},
"node_modules/babel-helper-replace-supers": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.18.0.tgz",
"integrity": "sha512-kFsVTwgpF4A6vOCLnNfLq8P+B1WA6hq0R2AR0KTg2LhUXaQjb6++syshrugtR2meru70J/n4VOxBlvDqxtfv1A==",
"dependencies": {
"babel-helper-optimise-call-expression": "^6.18.0",
"babel-messages": "^6.8.0",
"babel-runtime": "^6.0.0",
"babel-template": "^6.16.0",
"babel-traverse": "^6.18.0",
"babel-types": "^6.18.0"
}
},
"node_modules/babel-helpers": {
"version": "6.16.0",
"resolved": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.16.0.tgz",
"integrity": "sha512-kk/FApU2fbPtPTl7eNVxZBVEmcfYMmdzSEOKv6PQFqmR2ORGXWfaH9CjZIeZFngJ7r9MI2bfjDd7Qk4oFR/UKQ==",
"dependencies": {
"babel-runtime": "^6.0.0",
"babel-template": "^6.16.0"
}
},
"node_modules/babel-messages": {
"version": "6.8.0",
"resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.8.0.tgz",
"integrity": "sha512-JGUVSnPH3sfkuN53+OqQvc3qBnJhxoePQw8a3gjUy/eyyIAc5CJbKsrKMquRBNDkvkQx3ErjhkgW9uaCxqGpMw==",
"dependencies": {
"babel-runtime": "^6.0.0"
}
},
"node_modules/babel-plugin-ava-throws-helper": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/babel-plugin-ava-throws-helper/-/babel-plugin-ava-throws-helper-0.1.0.tgz",
"integrity": "sha512-tX+9XRUU+fV+xiuPm33U/A28sxiEZUpqTMkxgPLERMGLPpxz1Cbu9ThNfS5hnTzHRAYbb3JJmdYNmLmFDiEuwQ==",
"dependencies": {
"babel-template": "^6.7.0",
"babel-types": "^6.7.2"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/babel-plugin-check-es2015-constants": {
"version": "6.8.0",
"resolved": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.8.0.tgz",
"integrity": "sha512-LXi2Dw8pYEPhYE3+SFrcV1QhO2PomtGB9Nc3yOXdd52p2UnBNgIOO4+e5IyBDpslVG4Xu2gEr5RQs7qyMvAOpg==",
"dependencies": {
"babel-runtime": "^6.0.0"
}
},
"node_modules/babel-plugin-detective": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/babel-plugin-detective/-/babel-plugin-detective-2.0.0.tgz",
"integrity": "sha512-9HWQMFo9AJVSg+y2QFpjP6naI6e3V+WxLxbGAp64+QD7Uv/ij36BKXONojcAZ9c6zpyw5zq2BdSHPYoWnmTUaQ==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/babel-plugin-espower": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/babel-plugin-espower/-/babel-plugin-espower-2.3.1.tgz",
"integrity": "sha512-SaKO96kLkuyyYy8AofFvigb7B3H5jLQGOBuo+PpiyIDae6AE0SAnEZbFH9YK4XvbSwmuVjYpc0IKUj7Zc94ZCw==",
"dependencies": {
"babel-generator": "^6.1.0",
"babylon": "^6.1.0",
"call-matcher": "^1.0.0",
"core-js": "^2.0.0",
"espower-location-detector": "^0.1.1",
"espurify": "^1.6.0",
"estraverse": "^4.1.1"
}
},
"node_modules/babel-plugin-syntax-async-functions": {
"version": "6.13.0",
"resolved": "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz",
"integrity": "sha512-4Zp4unmHgw30A1eWI5EpACji2qMocisdXhAftfhXoSV9j0Tvj6nRFE3tOmRY912E0FMRm/L5xWE7MGVT2FoLnw=="
},
"node_modules/babel-plugin-syntax-async-generators": {
"version": "6.13.0",
"resolved": "https://registry.npmjs.org/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz",
"integrity": "sha512-EbciFN5Jb9iqU9bqaLmmFLx2G8pAUsvpWJ6OzOWBNrSY9qTohXj+7YfZx6Ug1Qqh7tCb1EA7Jvn9bMC1HBiucg=="
},
"node_modules/babel-plugin-syntax-class-properties": {
"version": "6.13.0",
"resolved": "https://registry.npmjs.org/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz",
"integrity": "sha512-chI3Rt9T1AbrQD1s+vxw3KcwC9yHtF621/MacuItITfZX344uhQoANjpoSJZleAmW2tjlolqB/f+h7jIqXa7pA=="
},
"node_modules/babel-plugin-syntax-decorators": {
"version": "6.13.0",
"resolved": "https://registry.npmjs.org/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz",
"integrity": "sha512-AWj19x2aDm8qFQ5O2JcD6pwJDW1YdcnO+1b81t7gxrGjz5VHiUqeYWAR4h7zueWMalRelrQDXprv2FrY1dbpbw=="
},
"node_modules/babel-plugin-syntax-dynamic-import": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz",
"integrity": "sha512-MioUE+LfjCEz65Wf7Z/Rm4XCP5k2c+TbMd2Z2JKc7U9uwjBhAfNPE48KC4GTGKhppMeYVepwDBNO/nGY6NYHBA=="
},
"node_modules/babel-plugin-syntax-exponentiation-operator": {
"version": "6.13.0",
"resolved": "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz",
"integrity": "sha512-Z/flU+T9ta0aIEKl1tGEmN/pZiI1uXmCiGFRegKacQfEJzp7iNsKloZmyJlQr+75FCJtiFfGIK03SiCvCt9cPQ=="
},
"node_modules/babel-plugin-syntax-object-rest-spread": {
"version": "6.13.0",
"resolved": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz",
"integrity": "sha512-C4Aq+GaAj83pRQ0EFgTvw5YO6T3Qz2KGrNRwIj9mSoNHVvdZY4KO2uA6HNtNXCw993iSZnckY1aLW8nOi8i4+w=="
},
"node_modules/babel-plugin-syntax-trailing-function-commas": {
"version": "6.20.0",
"resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.20.0.tgz",
"integrity": "sha512-BqrwCLSq2CgfRysziVKuYTkpAECWnYAbXLzNTEngUGua7LqqpaDt4yPXDh8jschZf4PynLCaZmUsJihPe26adg=="
},
"node_modules/babel-plugin-transform-async-generator-functions": {
"version": "6.17.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.17.0.tgz",
"integrity": "sha512-B5mn7aJfuFG/aZMYRwGzdvIyFCQpFZuqTHeMTABK2OjyQdlg4yTk51U9eJtaPEluJsNcqNobdnjndLjO13/ntw==",
"dependencies": {
"babel-helper-remap-async-to-generator": "^6.16.2",
"babel-plugin-syntax-async-generators": "^6.5.0",
"babel-runtime": "^6.0.0"
}
},
"node_modules/babel-plugin-transform-async-to-generator": {
"version": "6.16.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.16.0.tgz",
"integrity": "sha512-2t68vwY68BZrkyPb6QyXRzh3/NY8QwNRNs/SYr1smEQowBQrcu9yOJ+ZJjP6Gx6Xzhj/JjxJx4VlAblwdWmK1w==",
"dependencies": {
"babel-helper-remap-async-to-generator": "^6.16.0",
"babel-plugin-syntax-async-functions": "^6.8.0",
"babel-runtime": "^6.0.0"
}
},
"node_modules/babel-plugin-transform-class-properties": {
"version": "6.19.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.19.0.tgz",
"integrity": "sha512-XB0HO/pVZJKtxyfYZ3vfg0xyMBko3FwmdEqie0WMifIHqypENPFCPdfSEIuk3vRRJV2+qepS0R0p1gFjMaDaxQ==",
"dependencies": {
"babel-helper-function-name": "^6.18.0",
"babel-plugin-syntax-class-properties": "^6.8.0",
"babel-runtime": "^6.9.1",
"babel-template": "^6.15.0"
}
},
"node_modules/babel-plugin-transform-decorators": {
"version": "6.13.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.13.0.tgz",
"integrity": "sha512-qHXS/u/tRXs4JqKoRM8VPQ5jL508bDhkEJOSd/8dYVEb3bOXFAWw0iv58eqxU5M7aeLejmgpM/Mu7LOQ5+uAvA==",
"dependencies": {
"babel-helper-define-map": "^6.8.0",
"babel-helper-explode-class": "^6.8.0",
"babel-plugin-syntax-decorators": "^6.13.0",
"babel-runtime": "^6.0.0",
"babel-template": "^6.8.0",
"babel-types": "^6.13.0"
}
},
"node_modules/babel-plugin-transform-es2015-arrow-functions": {
"version": "6.8.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.8.0.tgz",
"integrity": "sha512-ivKIhguaXJPllErxjGkzWv030A58Sk0hJTKxSLzbpl8OHuWL+7IFNJhvk7+6EXfqcUdnf25Zpmyds8ss7uvFjQ==",
"dependencies": {
"babel-runtime": "^6.0.0"
}
},
"node_modules/babel-plugin-transform-es2015-block-scoped-functions": {
"version": "6.8.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.8.0.tgz",
"integrity": "sha512-cQZGHlWJRXheJn4jqPKjlHdrOTe4myceiO2U0MuG0DFGvBuStFNMwWGzi7OImJI1xYHFBzb9qZ2lfZKddTZzSg==",
"dependencies": {
"babel-runtime": "^6.0.0"
}
},
"node_modules/babel-plugin-transform-es2015-block-scoping": {
"version": "6.21.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.21.0.tgz",
"integrity": "sha512-wmzlkGrIIuvz9luX4y4csXzNsE1pehVcL+DQ/iYeHAzV8+t0kIXPEEkbBTxPh0TgynQQAGVCnC7udMCM3VG4EQ==",
"dependencies": {
"babel-runtime": "^6.20.0",
"babel-template": "^6.15.0",
"babel-traverse": "^6.21.0",
"babel-types": "^6.21.0",
"lodash": "^4.2.0"
}
},
"node_modules/babel-plugin-transform-es2015-classes": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.18.0.tgz",
"integrity": "sha512-cohaIr46xjNei0AYlufummJoFD1lfNo0LCS3zhgQXe76OMc0JHb+MBfNrWVOpLGx5olxqWj9S61fRYzKTAvPug==",
"dependencies": {
"babel-helper-define-map": "^6.18.0",
"babel-helper-function-name": "^6.18.0",
"babel-helper-optimise-call-expression": "^6.18.0",
"babel-helper-replace-supers": "^6.18.0",
"babel-messages": "^6.8.0",
"babel-runtime": "^6.9.0",
"babel-template": "^6.14.0",
"babel-traverse": "^6.18.0",
"babel-types": "^6.18.0"
}
},
"node_modules/babel-plugin-transform-es2015-computed-properties": {
"version": "6.8.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.8.0.tgz",
"integrity": "sha512-kB0I0ezxaQP5+W4tDQzBFZyikj08fwVlMOXx1BVDMB7qelU089ImZrBAVEgHW95TBH4KLSbuWhb+DQM0W7lNww==",
"dependencies": {
"babel-helper-define-map": "^6.8.0",
"babel-runtime": "^6.0.0",
"babel-template": "^6.8.0"
}
},
"node_modules/babel-plugin-transform-es2015-destructuring": {
"version": "6.19.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.19.0.tgz",
"integrity": "sha512-Ks+Z6lw03nHxyNpdlMgkceNZLYX2Y/W3SaKGLkg4x62Zd/qk1qDZaUNFllrrwENSt15AxH2eWMp8U254f0vQfQ==",
"dependencies": {
"babel-runtime": "^6.9.0"
}
},
"node_modules/babel-plugin-transform-es2015-duplicate-keys": {
"version": "6.8.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.8.0.tgz",
"integrity": "sha512-Q2WzY4UqX7JLjwp2dwxCpdgE3+OKoCntoGMwNtqI3l9ntoew8r7F67vkSt2/jenVRhHNfYObcxD3IHLSdR/Irw==",
"dependencies": {
"babel-runtime": "^6.0.0",
"babel-types": "^6.8.0"
}
},
"node_modules/babel-plugin-transform-es2015-for-of": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.18.0.tgz",
"integrity": "sha512-pi6NoREF5drjt0FciggGOwvf0wsThPd3aP8q6/mECQvPtKvNBczJ6p1KUrPOw4FvHGyaz7UhHrdoQbkJtgoBUg==",
"dependencies": {
"babel-runtime": "^6.0.0"
}
},
"node_modules/babel-plugin-transform-es2015-function-name": {
"version": "6.9.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.9.0.tgz",
"integrity": "sha512-OIv4YHHOLOB7tlt69IlNlBy2yi94C4/a1ioZGX9MlIeaGocHJRoZTe3TOInGwKCoddlrw8fV/H+Z0uB63WSi/Q==",
"dependencies": {
"babel-helper-function-name": "^6.8.0",
"babel-runtime": "^6.9.0",
"babel-types": "^6.9.0"
}
},
"node_modules/babel-plugin-transform-es2015-literals": {
"version": "6.8.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.8.0.tgz",
"integrity": "sha512-g+g+APMZjS2+wKQBfoPRs4UNE5+Vpid8VcIvYgY7jaJvEZO9CaC8XwZ6DAKXAAxl0deFI5SFE1VqimFn7eYz2A==",
"dependencies": {
"babel-runtime": "^6.0.0"
}
},
"node_modules/babel-plugin-transform-es2015-modules-amd": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.18.0.tgz",
"integrity": "sha512-pDwKChyXNv7F1onUGaLXhdYlvKQJ4rreiO2DmItWlJGqt1H1UYgKCA6iGdM27Gif+AaxOi7UfhuCLHw6B+BiUw==",
"dependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-runtime": "^6.0.0",
"babel-template": "^6.8.0"
}
},
"node_modules/babel-plugin-transform-es2015-modules-commonjs": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.18.0.tgz",
"integrity": "sha512-K1g9dU7rUBl4MeAz9lq9MknrzLisJgoYL51Zxrx5MdyAHURpLHQRBMx6s3YXfBjWuHPg3K3S6uhMshdpsyFyfQ==",
"dependencies": {
"babel-plugin-transform-strict-mode": "^6.18.0",
"babel-runtime": "^6.0.0",
"babel-template": "^6.16.0",
"babel-types": "^6.18.0"
}
},
"node_modules/babel-plugin-transform-es2015-modules-systemjs": {
"version": "6.19.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.19.0.tgz",
"integrity": "sha512-06zjREx6wSo3ZJXV0jWojVJdzuW1FXGrURLNcMkppf4kcQ5rZeFlZ6eUmY/6fPEkdpY9L3aGTOVEQ4Q5jPwdcw==",
"dependencies": {
"babel-helper-hoist-variables": "^6.18.0",
"babel-runtime": "^6.11.6",
"babel-template": "^6.14.0"
}
},
"node_modules/babel-plugin-transform-es2015-modules-umd": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.18.0.tgz",
"integrity": "sha512-M3pjSg+hirP9lix2gnYLTGJRwQl3aTWU3qxGSxM6IOWSaMrZGj8ZH1qLaeeXrmDn3oUIiQf4c1UrHDgyvrwXAg==",
"dependencies": {
"babel-plugin-transform-es2015-modules-amd": "^6.18.0",
"babel-runtime": "^6.0.0",
"babel-template": "^6.8.0"
}
},
"node_modules/babel-plugin-transform-es2015-object-super": {
"version": "6.8.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.8.0.tgz",
"integrity": "sha512-ykia2laeGfLcUS2snae9WlFjwVwJtA2nKKgBua5hj/yw6c+8YsIDNBsUufFeqe9hzykFKlx1x9dUo7QyOPG+AA==",
"dependencies": {
"babel-helper-replace-supers": "^6.8.0",
"babel-runtime": "^6.0.0"
}
},
"node_modules/babel-plugin-transform-es2015-parameters": {
"version": "6.21.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.21.0.tgz",
"integrity": "sha512-aL5KTZS0i/bs2+N7xIGVKoLmcq/nB13VZLra5Zginp47IHcm+RWxGahPUmGV7s2w459IneYu3m+2YEpupvz6sA==",
"dependencies": {
"babel-helper-call-delegate": "^6.18.0",
"babel-helper-get-function-arity": "^6.18.0",
"babel-runtime": "^6.9.0",
"babel-template": "^6.16.0",
"babel-traverse": "^6.21.0",
"babel-types": "^6.21.0"
}
},
"node_modules/babel-plugin-transform-es2015-shorthand-properties": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.18.0.tgz",
"integrity": "sha512-4eqXt6ce71OpvfDaBrVqO7F12wG8m1BhWlm7jZAg+sKBLnP515LchDnbomiNb07fYTWgYzvV6BUiEnb/nH6uhA==",
"dependencies": {
"babel-runtime": "^6.0.0",
"babel-types": "^6.18.0"
}
},
"node_modules/babel-plugin-transform-es2015-spread": {
"version": "6.8.0",