forked from jira-node/node-jira-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
yarn.lock
3063 lines (2637 loc) · 126 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"abab@^1.0.0":
"integrity" "sha512-Nr2I36rULSLYUzwP7ssOYfvNKy38ud5CAUZCyPIYNArPdJkVzk0wI8VkB6vLsHSFZXoOM+Bp94iMNrdhGU+ZMw=="
"resolved" "https://registry.npmjs.org/abab/-/abab-1.0.3.tgz"
"version" "1.0.3"
"acorn-globals@^1.0.4":
"integrity" "sha512-j3/4pkfih8W4NK22gxVSXcEonTpAHOHh0hu5BoZrKcOsW/4oBPxTi4Yk3SAj+FhC1f3+bRTkXdm4019gw1vg9g=="
"resolved" "https://registry.npmjs.org/acorn-globals/-/acorn-globals-1.0.9.tgz"
"version" "1.0.9"
dependencies:
"acorn" "^2.1.0"
"acorn-jsx@^3.0.0":
"integrity" "sha512-AU7pnZkguthwBjKgCg6998ByQNIMjbuDQZ8bb78QAFZwPfmKia8AIzgY/gWgqCjnht8JLdXmB4YxA0KaV60ncQ=="
"resolved" "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz"
"version" "3.0.1"
dependencies:
"acorn" "^3.0.4"
"acorn@^2.1.0", "acorn@^2.4.0":
"integrity" "sha512-pXK8ez/pVjqFdAgBkF1YPVRacuLQ9EXBKaKWaeh58WNfMkCmZhOZzu+NtKSPD5PHmCCHheQ5cD29qM1K4QTxIg=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-2.7.0.tgz"
"version" "2.7.0"
"acorn@^3.0.4":
"integrity" "sha512-OLUyIIZ7mF5oaAUT1w0TFqQS81q3saT46x8t7ukpPjMNk+nbs4ZHhs7ToV8EWnLYLepjETXd4XaCE4uxkMeqUw=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz"
"version" "3.3.0"
"acorn@4.0.4":
"integrity" "sha512-q2rPPDFLTHr/KffXaU4UGvi4/a7LWaYGVJFqvjIIRyzqaUiH66bdLEs1UeSxrexjAWLH6gNb3HfFaPRvY8HFSw=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-4.0.4.tgz"
"version" "4.0.4"
"ajv-keywords@^1.0.0":
"integrity" "sha512-vuBv+fm2s6cqUyey2A7qYcvsik+GMDJsw8BARP2sDE76cqmaZVarsvHf7Vx6VJ0Xk8gLl+u3MoAPf6gKzJefeA=="
"resolved" "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.5.1.tgz"
"version" "1.5.1"
"ajv@^4.7.0", "ajv@>=4.10.0":
"integrity" "sha512-6HPnEv7e2ruV3hugsg10xFwVWY4ojMZqfy+ZaOvVXNzWQJSdtZGmBDypY4Ky5RE1Rz48l/Hgpy7nXCNC1Sr18A=="
"resolved" "https://registry.npmjs.org/ajv/-/ajv-4.11.3.tgz"
"version" "4.11.3"
dependencies:
"co" "^4.6.0"
"json-stable-stringify" "^1.0.1"
"amdefine@>=0.0.4":
"integrity" "sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg=="
"resolved" "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz"
"version" "1.0.1"
"ansi-escapes@^1.1.0":
"integrity" "sha512-wiXutNjDUlNEDWHcYH3jtZUhd3c4/VojassD8zHdHCY13xbZy2XbW+NKQwA0tWGBVzDA9qEzYwfoSsWmviidhw=="
"resolved" "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz"
"version" "1.4.0"
"ansi-regex@^2.0.0":
"integrity" "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"
"version" "2.1.1"
"ansi-styles@^2.2.1":
"integrity" "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"
"version" "2.2.1"
"anymatch@^1.3.0":
"integrity" "sha512-GbRpOH/EMz/3Zq70whK2Q2tkbxbaM5IAU+EZL4zxnEqGtzJWFCJ3leKc6P/w3UmDFIB/GkwfeZJ7ChL7bZMXJw=="
"resolved" "https://registry.npmjs.org/anymatch/-/anymatch-1.3.0.tgz"
"version" "1.3.0"
dependencies:
"arrify" "^1.0.0"
"micromatch" "^2.1.5"
"argparse@^1.0.7":
"integrity" "sha512-iK7YPKV+GsvihPUTKcM3hh2gq47zSFCpVDv/Ay2O9mzuD7dfvLV4vhms4XcjZvv4VRgXuGLMEts51IlTjS11/A=="
"resolved" "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz"
"version" "1.0.9"
dependencies:
"sprintf-js" "~1.0.2"
"arr-diff@^2.0.0":
"integrity" "sha512-dtXTVMkh6VkEEA7OhXnN1Ecb8aAGFdZ1LFxtOCoqj4qkyOJMt7+qs6Ahdy6p/NQCPYsRSXXivhSB/J5E9jmYKA=="
"resolved" "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"arr-flatten" "^1.0.1"
"arr-flatten@^1.0.1":
"integrity" "sha512-gr7j7/S9ClfxK5k69IqOowbRqEE0/+rbYuHr5B011xaL7TPLNYRzULsgnTCGbCySJAz2j+e3sBL+0OmZOGykDQ=="
"resolved" "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.1.tgz"
"version" "1.0.1"
"array-union@^1.0.1":
"integrity" "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng=="
"resolved" "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"array-uniq" "^1.0.1"
"array-uniq@^1.0.1":
"integrity" "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q=="
"resolved" "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz"
"version" "1.0.3"
"array-unique@^0.2.1":
"integrity" "sha512-G2n5bG5fSUCpnsXz4+8FUkYsGPkNfLn9YvS66U5qbTIXI2Ynnlo4Bi42bWv+omKUCqz+ejzfClwne0alJWJPhg=="
"resolved" "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz"
"version" "0.2.1"
"arrify@^1.0.0":
"integrity" "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA=="
"resolved" "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz"
"version" "1.0.1"
"asn1@~0.2.3":
"integrity" "sha512-6i37w/+EhlWlGUJff3T/Q8u1RGmP5wgbiwYnOnbOqvtrPxT63/sYFyP9RcpxtxGymtfA075IvmOnL7ycNOWl3w=="
"resolved" "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz"
"version" "0.2.3"
"assert-plus@^0.2.0":
"integrity" "sha512-u1L0ZLywRziOVjUhRxI0Qg9G+4RnFB9H/Rq40YWn0dieDgO7vAYeJz6jKAO6t/aruzlDFLAPkQTT87e+f8Imaw=="
"resolved" "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz"
"version" "0.2.0"
"assert-plus@^1.0.0":
"integrity" "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw=="
"resolved" "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"
"version" "1.0.0"
"assertion-error@^1.0.1":
"integrity" "sha512-wzQs0MF+xNG9ji/rooK2bLg8XVqP+dn/IYX6qgejMtmDNB8JRLL+BoBrd4furQNgPaWhJaQRXyMXGa48lzsGtQ=="
"resolved" "https://registry.npmjs.org/assertion-error/-/assertion-error-1.0.2.tgz"
"version" "1.0.2"
"async-each@^1.0.0":
"integrity" "sha512-STDwmg+1mv249vNFx+s+sF4HrdLxlF5Z6L4npilrkgchWPEuW4X13gKzSJq51qJy9InOgwmPepgfMb9/Qu0fSg=="
"resolved" "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz"
"version" "1.0.1"
"asynckit@^0.4.0":
"integrity" "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
"resolved" "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"
"version" "0.4.0"
"aws-sign2@~0.6.0":
"integrity" "sha512-JnJpAS0p9RmixkOvW2XwDxxzs1bd4/VAGIl6Q0EC5YOo+p+hqIhtDhn/nmFnB/xUNXbLkpE2mOjgVIBRKD4xYw=="
"resolved" "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz"
"version" "0.6.0"
"aws4@^1.2.1":
"integrity" "sha512-tkleq4Df8UWu/7xf/tfbo7t2vDa07bcONGnKhl0QXKQsh3fJ0yJ1M5wzpy8BtBSENQw/9VTsthMhLG+yXHfStQ=="
"resolved" "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz"
"version" "1.6.0"
"babel-cli@^6.2.0":
"integrity" "sha512-lwglzizDONhPnHYdwH7BKobEQQgssAVUcdS9q+Xqu2Td6dWbwyB7dlPx34vyvuOr2BSp3sHYBUZ8zY2MMVJG/Q=="
"resolved" "https://registry.npmjs.org/babel-cli/-/babel-cli-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-core" "^6.23.0"
"babel-polyfill" "^6.23.0"
"babel-register" "^6.23.0"
"babel-runtime" "^6.22.0"
"commander" "^2.8.1"
"convert-source-map" "^1.1.0"
"fs-readdir-recursive" "^1.0.0"
"glob" "^7.0.0"
"lodash" "^4.2.0"
"output-file-sync" "^1.1.0"
"path-is-absolute" "^1.0.0"
"slash" "^1.0.0"
"source-map" "^0.5.0"
"v8flags" "^2.0.10"
optionalDependencies:
"chokidar" "^1.6.1"
"babel-code-frame@^6.22.0":
"integrity" "sha512-Dmx3yJCO/UHWgFTKUlBPHUm7h5hCjI5Lfc07gmSv7H4AbUwxS7NHyorp8HN1YEd4xSDCf7P4zqnS63I3aaJTwg=="
"resolved" "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"chalk" "^1.1.0"
"esutils" "^2.0.2"
"js-tokens" "^3.0.0"
"babel-core@^6.2.1", "babel-core@^6.23.0":
"integrity" "sha512-S8R+KCgOPXoDDn9iFJw7dMGMHsv2pEhQkhgViWqBq0P6iV05iF/WRFUMuPcaAdRZeMFXLUOQMXfliBZOtJCT2A=="
"resolved" "https://registry.npmjs.org/babel-core/-/babel-core-6.23.1.tgz"
"version" "6.23.1"
dependencies:
"babel-code-frame" "^6.22.0"
"babel-generator" "^6.23.0"
"babel-helpers" "^6.23.0"
"babel-messages" "^6.23.0"
"babel-register" "^6.23.0"
"babel-runtime" "^6.22.0"
"babel-template" "^6.23.0"
"babel-traverse" "^6.23.1"
"babel-types" "^6.23.0"
"babylon" "^6.11.0"
"convert-source-map" "^1.1.0"
"debug" "^2.1.1"
"json5" "^0.5.0"
"lodash" "^4.2.0"
"minimatch" "^3.0.2"
"path-is-absolute" "^1.0.0"
"private" "^0.1.6"
"slash" "^1.0.0"
"source-map" "^0.5.0"
"babel-eslint@^6.0.2":
"integrity" "sha512-BvFokAiUA0ZXeIzOr/v5m5Hu8IpTNc19ZBVEXn9ISBfRWddI2aUZ31kdlrzQXuXvPvq0wlyf7aw7KB85c9OcUw=="
"resolved" "https://registry.npmjs.org/babel-eslint/-/babel-eslint-6.1.2.tgz"
"version" "6.1.2"
dependencies:
"babel-traverse" "^6.0.20"
"babel-types" "^6.0.19"
"babylon" "^6.0.18"
"lodash.assign" "^4.0.0"
"lodash.pickby" "^4.0.0"
"babel-generator@^6.23.0":
"integrity" "sha512-4KZymo2yFAQnb3vnoN0mgn28g85mLesm1D7zPCKQUWTBKRmXEyDJvy0tFxuRBHjJVLCrCJt3642aRZzXROZJSQ=="
"resolved" "https://registry.npmjs.org/babel-generator/-/babel-generator-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-messages" "^6.23.0"
"babel-runtime" "^6.22.0"
"babel-types" "^6.23.0"
"detect-indent" "^4.0.0"
"jsesc" "^1.3.0"
"lodash" "^4.2.0"
"source-map" "^0.5.0"
"trim-right" "^1.0.1"
"babel-helper-bindify-decorators@^6.22.0":
"integrity" "sha512-75leXU2k0meWlAavyp6y/6GLLLM60zBCRtICbOgKZVNIYBbFCyk728JSePFXIOAr5LIZhDdvxJJcZPN1x6S+WQ=="
"resolved" "https://registry.npmjs.org/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-traverse" "^6.22.0"
"babel-types" "^6.22.0"
"babel-helper-builder-binary-assignment-operator-visitor@^6.22.0":
"integrity" "sha512-tDI5JKM9Ro9DAAPc6XailNOYfH5XDdiwUWGclx7pD8RWnXh4R6T5ACy2bYUXBst+lz/ciNrMWUMQ546flvOB1w=="
"resolved" "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-helper-explode-assignable-expression" "^6.22.0"
"babel-runtime" "^6.22.0"
"babel-types" "^6.22.0"
"babel-helper-call-delegate@^6.22.0":
"integrity" "sha512-kamTQy/pb0+3ogEkR+W20RlUWcoUT7PIX1BazfibSUmKU2CbW43ETqcYaQGxYzND5ZBJ2fjO4TBjUNASYO8T8g=="
"resolved" "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-helper-hoist-variables" "^6.22.0"
"babel-runtime" "^6.22.0"
"babel-traverse" "^6.22.0"
"babel-types" "^6.22.0"
"babel-helper-define-map@^6.23.0":
"integrity" "sha512-tygY6Cu+dBN4VFNbR7I0PWXHTJnTSi+9OHr+St0zWSzYr+44LWUnFNSPY2oiufqxkQRVYbSMktnEQWGE2SPKPg=="
"resolved" "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-helper-function-name" "^6.23.0"
"babel-runtime" "^6.22.0"
"babel-types" "^6.23.0"
"lodash" "^4.2.0"
"babel-helper-explode-assignable-expression@^6.22.0":
"integrity" "sha512-lVMNHRFaRwEfDacIJDrUcn+7LSK+OZx5jKQTnVqEe1eFII1c3bOEAXmUfwzTrrKIqXLax8Z6Sl4qRVemokBYLg=="
"resolved" "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-traverse" "^6.22.0"
"babel-types" "^6.22.0"
"babel-helper-explode-class@^6.22.0":
"integrity" "sha512-wm9uv3zU1Qp0mwtLS0f4YxxK00vY/bM4h7Kz2I8kra8A9T8C3ZviBCRny8wdyvRYTOlOUv5BXR5ZrVCw5oXT8Q=="
"resolved" "https://registry.npmjs.org/babel-helper-explode-class/-/babel-helper-explode-class-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-helper-bindify-decorators" "^6.22.0"
"babel-runtime" "^6.22.0"
"babel-traverse" "^6.22.0"
"babel-types" "^6.22.0"
"babel-helper-function-name@^6.22.0", "babel-helper-function-name@^6.23.0":
"integrity" "sha512-eVDgoRGK7G1BeqxqpELT7M3gAoh/dIoZtuxvZfSxSAEIvg4n2YRHKxiZW7WKcKJrridNxVW1kDqhdbFH2teClA=="
"resolved" "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-helper-get-function-arity" "^6.22.0"
"babel-runtime" "^6.22.0"
"babel-template" "^6.23.0"
"babel-traverse" "^6.23.0"
"babel-types" "^6.23.0"
"babel-helper-get-function-arity@^6.22.0":
"integrity" "sha512-D9BG50pxH5rb2A8YNYTH9v8uxSbOC3rz5hYUnxXkMiD6MP7o0+9DlVQW1/MyqYhvbirnMXqsVwZZldSDUKmu1w=="
"resolved" "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-types" "^6.22.0"
"babel-helper-hoist-variables@^6.22.0":
"integrity" "sha512-+NjaBw3PQuh3unyNv7uIATBolCr9PogscztiY47+IY67uKvBh5CEw5MS5wANK3+2gFk5IKsbam8Tj+CqvkvaIQ=="
"resolved" "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-types" "^6.22.0"
"babel-helper-optimise-call-expression@^6.23.0":
"integrity" "sha512-GkRaN0ufyFWdH1Yaf8+hROikWUkl1kO/v5/oVKEBlNh6R+b3pXAzVU7kyXBjX2M26e5UomUIX/9IOW/q8JJJpA=="
"resolved" "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-types" "^6.23.0"
"babel-helper-regex@^6.22.0":
"integrity" "sha512-DHYGJFuhwdyakKUqSsT9BvIWxPk4Q9n3GCD25tE3i6/ShpcjWU+/uAjjALtd0gumuEHe90df+GR6XK00wKFThw=="
"resolved" "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-types" "^6.22.0"
"lodash" "^4.2.0"
"babel-helper-remap-async-to-generator@^6.22.0":
"integrity" "sha512-amddeHf0KZgdVxwZ+vPUdaTVpbhhkRUdYuEPB82IxCGcCm2pHgHiEzk9h1r0BpVRGtC6/ZEUZk4ClLZj06qpzw=="
"resolved" "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-helper-function-name" "^6.22.0"
"babel-runtime" "^6.22.0"
"babel-template" "^6.22.0"
"babel-traverse" "^6.22.0"
"babel-types" "^6.22.0"
"babel-helper-replace-supers@^6.22.0", "babel-helper-replace-supers@^6.23.0":
"integrity" "sha512-ON1sLopjZiMUVDC1swVrivWADckH045l8N+yrQw36PiuVYf0BXDV3LWqORtD4hMwlMDJHde1TcTlkvxrCC2LSA=="
"resolved" "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-helper-optimise-call-expression" "^6.23.0"
"babel-messages" "^6.23.0"
"babel-runtime" "^6.22.0"
"babel-template" "^6.23.0"
"babel-traverse" "^6.23.0"
"babel-types" "^6.23.0"
"babel-helpers@^6.23.0":
"integrity" "sha512-6+xngcaIeq3iGVz2bIQGP5stq9CQ/BfvOmf+u637o+Mc8R9sWO5HLujw/Xn5XiHHEcOXlo5feOiBjXLSF8qPyA=="
"resolved" "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-template" "^6.23.0"
"babel-messages@^6.23.0":
"integrity" "sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w=="
"resolved" "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-plugin-add-module-exports@^0.1.1":
"integrity" "sha512-1YEru68LeICFdXW561DyAGoNAneB8r9AGyPl8N3h4xBv2jJ+9ZVNoG1z4Asfm7tmemJhFvX7KTaB9/7OQz/fSA=="
"resolved" "https://registry.npmjs.org/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-0.1.4.tgz"
"version" "0.1.4"
dependencies:
"babel-template" "^6.5.0"
"babel-plugin-check-es2015-constants@^6.22.0":
"integrity" "sha512-B1M5KBP29248dViEo1owyY32lk1ZSH2DaNNrXLGt8lyjjHm7pBqAdQ7VKUPR6EEDO323+OvT3MQXbCin8ooWdA=="
"resolved" "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-plugin-syntax-async-functions@^6.8.0":
"integrity" "sha512-4Zp4unmHgw30A1eWI5EpACji2qMocisdXhAftfhXoSV9j0Tvj6nRFE3tOmRY912E0FMRm/L5xWE7MGVT2FoLnw=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz"
"version" "6.13.0"
"babel-plugin-syntax-async-generators@^6.5.0":
"integrity" "sha512-EbciFN5Jb9iqU9bqaLmmFLx2G8pAUsvpWJ6OzOWBNrSY9qTohXj+7YfZx6Ug1Qqh7tCb1EA7Jvn9bMC1HBiucg=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz"
"version" "6.13.0"
"babel-plugin-syntax-class-constructor-call@^6.18.0":
"integrity" "sha512-EEuBcXz/wZ81Jaac0LnMHtD4Mfz9XWn2oH2Xj+CHwz2SZWUqqdtR2BgWPSdTGMmxN/5KLSh4PImt9+9ZedDarA=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz"
"version" "6.18.0"
"babel-plugin-syntax-class-properties@^6.8.0":
"integrity" "sha512-chI3Rt9T1AbrQD1s+vxw3KcwC9yHtF621/MacuItITfZX344uhQoANjpoSJZleAmW2tjlolqB/f+h7jIqXa7pA=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz"
"version" "6.13.0"
"babel-plugin-syntax-decorators@^6.13.0":
"integrity" "sha512-AWj19x2aDm8qFQ5O2JcD6pwJDW1YdcnO+1b81t7gxrGjz5VHiUqeYWAR4h7zueWMalRelrQDXprv2FrY1dbpbw=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz"
"version" "6.13.0"
"babel-plugin-syntax-do-expressions@^6.8.0":
"integrity" "sha512-HD/5qJB9oSXzl0caxM+aRD7ENICXqcc3Up/8toDQk7zNIDE7TzsqtxC5f4t9Rwhu2Ya8l9l4j6b3vOsy+a6qxg=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz"
"version" "6.13.0"
"babel-plugin-syntax-dynamic-import@^6.18.0":
"integrity" "sha512-MioUE+LfjCEz65Wf7Z/Rm4XCP5k2c+TbMd2Z2JKc7U9uwjBhAfNPE48KC4GTGKhppMeYVepwDBNO/nGY6NYHBA=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz"
"version" "6.18.0"
"babel-plugin-syntax-exponentiation-operator@^6.8.0":
"integrity" "sha512-Z/flU+T9ta0aIEKl1tGEmN/pZiI1uXmCiGFRegKacQfEJzp7iNsKloZmyJlQr+75FCJtiFfGIK03SiCvCt9cPQ=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz"
"version" "6.13.0"
"babel-plugin-syntax-export-extensions@^6.8.0":
"integrity" "sha512-Eo0rcRaIDMld/W6mVhePiudIuLW+Cr/8eveW3mBREfZORScZgx4rh6BAPyvzdEc/JZvQ+LkC80t0VGFs6FX+lg=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz"
"version" "6.13.0"
"babel-plugin-syntax-function-bind@^6.8.0":
"integrity" "sha512-m8yMoh9LIiNyeLdQs5I9G+3YXo4nqVsKQkk7YplrG4qAFbNi9hkZlow8HDHxhH9QOVFPHmy8+03NzRCdyChIKw=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz"
"version" "6.13.0"
"babel-plugin-syntax-object-rest-spread@^6.8.0":
"integrity" "sha512-C4Aq+GaAj83pRQ0EFgTvw5YO6T3Qz2KGrNRwIj9mSoNHVvdZY4KO2uA6HNtNXCw993iSZnckY1aLW8nOi8i4+w=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz"
"version" "6.13.0"
"babel-plugin-syntax-trailing-function-commas@^6.22.0":
"integrity" "sha512-Gx9CH3Q/3GKbhs07Bszw5fPTlU+ygrOGfAhEt7W2JICwufpC4SuO0mG0+4NykPBSYPMJhqvVlDBU17qB1D+hMQ=="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz"
"version" "6.22.0"
"babel-plugin-transform-async-generator-functions@^6.22.0":
"integrity" "sha512-Np9MlJcblWSRkh3EeXyDt+652S+tZL9mR2Du5AM++O3pwJIVETJwgQINXU8HTbATOzLh1r5xh4wfd4DRTl1piA=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-helper-remap-async-to-generator" "^6.22.0"
"babel-plugin-syntax-async-generators" "^6.5.0"
"babel-runtime" "^6.22.0"
"babel-plugin-transform-async-to-generator@^6.22.0":
"integrity" "sha512-EO939rjohvS/GvgGc9Ud66Nc/pPPe00wcIja3vTYltDPkAxUxiFs621tDQ2/qTNBZK1D9geRLvqvjRZzIbb5jw=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-helper-remap-async-to-generator" "^6.22.0"
"babel-plugin-syntax-async-functions" "^6.8.0"
"babel-runtime" "^6.22.0"
"babel-plugin-transform-class-constructor-call@^6.22.0":
"integrity" "sha512-iJJ5givsSa8NWaSv+DgCaKt/NvUYv87MEhD6BQE+5YJIscAXZ3ax4Fob3Wl0cGHGgXBO7/nCk9H+kD50CxxFNg=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-plugin-syntax-class-constructor-call" "^6.18.0"
"babel-runtime" "^6.22.0"
"babel-template" "^6.22.0"
"babel-plugin-transform-class-properties@^6.22.0":
"integrity" "sha512-dPmfb1wE6Kk1UrFYZYm9tNWc9VCtv2LI9hW/+WIzk3mr3GK3+Pw9P/Goy6zjntSTCG1R48Xz9rt4ShEEk9Nx6g=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-helper-function-name" "^6.23.0"
"babel-plugin-syntax-class-properties" "^6.8.0"
"babel-runtime" "^6.22.0"
"babel-template" "^6.23.0"
"babel-plugin-transform-decorators@^6.22.0":
"integrity" "sha512-HeuZYYB3RVGJIOFBQSkmN7LUZ7z98+SCVrHY8j8fhAyiWftkH0TYFlsttUaSp7Cz1dTrfvfbkuyJo7Bte3X4gA=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-helper-explode-class" "^6.22.0"
"babel-plugin-syntax-decorators" "^6.13.0"
"babel-runtime" "^6.22.0"
"babel-template" "^6.22.0"
"babel-types" "^6.22.0"
"babel-plugin-transform-do-expressions@^6.22.0":
"integrity" "sha512-yQwYqYg+Tnj1InA8W1rsItsZVhkv1Euc4KVua9ledtPz5PDWYz7LVyy6rDBpVYUWFZj5k6GUm3YZpCbIm8Tqew=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-plugin-syntax-do-expressions" "^6.8.0"
"babel-runtime" "^6.22.0"
"babel-plugin-transform-es2015-arrow-functions@^6.22.0":
"integrity" "sha512-PCqwwzODXW7JMrzu+yZIaYbPQSKjDTAsNNlK2l5Gg9g4rz2VzLnZsStvp/3c46GfXpwkyufb3NCyG9+50FF1Vg=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-plugin-transform-es2015-block-scoped-functions@^6.22.0":
"integrity" "sha512-2+ujAT2UMBzYFm7tidUsYh+ZoIutxJ3pN9IYrF1/H6dCKtECfhmB8UkHVpyxDwkj0CYbQG35ykoz925TUnBc3A=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-plugin-transform-es2015-block-scoping@^6.22.0":
"integrity" "sha512-e2mdCUJTMroXGNgbpcz5opbquNtVizQ3CBK+nJVs/bJvNhx4+viVCLaI9eMtBvrXwyiJyYai+lcsO7a6AwOq4A=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-template" "^6.23.0"
"babel-traverse" "^6.23.0"
"babel-types" "^6.23.0"
"lodash" "^4.2.0"
"babel-plugin-transform-es2015-classes@^6.22.0":
"integrity" "sha512-Ys1+nJROMl7Ppr4AdT8iuuhGVwZfMoTodDHOm6SjKInRo5drkYVxAfThhU4s8CsXQ709GK1lbElTmlNAwIGqbA=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-helper-define-map" "^6.23.0"
"babel-helper-function-name" "^6.23.0"
"babel-helper-optimise-call-expression" "^6.23.0"
"babel-helper-replace-supers" "^6.23.0"
"babel-messages" "^6.23.0"
"babel-runtime" "^6.22.0"
"babel-template" "^6.23.0"
"babel-traverse" "^6.23.0"
"babel-types" "^6.23.0"
"babel-plugin-transform-es2015-computed-properties@^6.22.0":
"integrity" "sha512-PPSuiGSob2Hvjmd3k87ycqwztGeYKJrEYT9OPe1Nnpsjf0gpABCE6B7y34FGXU3yUJIMx8B3hGnHGrXl3kGXjQ=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-template" "^6.22.0"
"babel-plugin-transform-es2015-destructuring@^6.22.0":
"integrity" "sha512-aNv/GDAW0j/f4Uy1OEPZn1mqD+Nfy9viFGBfQ5bZyT35YqOiqx7/tXdyfZkJ1sC21NyEsBdfDY6PYmLHF4r5iA=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-plugin-transform-es2015-duplicate-keys@^6.22.0":
"integrity" "sha512-MxAQX9WMn338W6JwztQA8kdy2T3gFCl457O8jblzVuP74SPmcgn56ThkpRBdNvlRN48KDoZ1kJGxkxe5bgxSwQ=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-types" "^6.22.0"
"babel-plugin-transform-es2015-for-of@^6.22.0":
"integrity" "sha512-DLuRwoygCoXx+YfxHLkVx5/NpeSbVwfoTeBykpJK7JhYWlL/O8hgAK/reforUnZDlxasOrVPPJVI/guE3dCwkw=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-plugin-transform-es2015-function-name@^6.22.0":
"integrity" "sha512-QcQzXK+DnimXypK+et1Q7OlVONYS7G2xFhK+/28uTJbNLYXmjetWd3CL6whPe8Zj3VivChoXm+IyKk0+Q0/lyA=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-helper-function-name" "^6.22.0"
"babel-runtime" "^6.22.0"
"babel-types" "^6.22.0"
"babel-plugin-transform-es2015-literals@^6.22.0":
"integrity" "sha512-tjFl0cwMPpDYyoqYA9li1/7mGFit39XiNX5DKC/uCNjBctMxyL1/PT/l4rSlbvBG1pOKI88STRdUsWXB3/Q9hQ=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-plugin-transform-es2015-modules-amd@^6.22.0":
"integrity" "sha512-IyRFOco6CgLH5cXE9wW27PeIZ50FC93ETYNR0kT9LTtfKv9YISMMwQFbohaYtVUSKJyR9wqbTVec8c7YN4FLCg=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-plugin-transform-es2015-modules-commonjs" "^6.22.0"
"babel-runtime" "^6.22.0"
"babel-template" "^6.22.0"
"babel-plugin-transform-es2015-modules-commonjs@^6.22.0":
"integrity" "sha512-hGtbK7id/NWs0FB0ifnIKQtkX5giq5AL4cjrAvx0s/Rb07JJ0pFTDN54A44yXbxTvNDQEekXxFMQo+cT5m96Ew=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-plugin-transform-strict-mode" "^6.22.0"
"babel-runtime" "^6.22.0"
"babel-template" "^6.23.0"
"babel-types" "^6.23.0"
"babel-plugin-transform-es2015-modules-systemjs@^6.22.0":
"integrity" "sha512-m8n+/bPmKQ/pAbh428786gRdXvdE73wjUtco9BZA6WpmXhAMX6f23Y3FaYVLgqS8R6kHfOSj35QaJPpIes7mPg=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-helper-hoist-variables" "^6.22.0"
"babel-runtime" "^6.22.0"
"babel-template" "^6.23.0"
"babel-plugin-transform-es2015-modules-umd@^6.22.0":
"integrity" "sha512-Ooy+JAnnhyWlBmq7dQXG+WU+a2CwPnRosprEIK6eM87o2ukEVMNT1+0+kVMS1YQV9leymhbtAewcIh6gHjKT0w=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-plugin-transform-es2015-modules-amd" "^6.22.0"
"babel-runtime" "^6.22.0"
"babel-template" "^6.23.0"
"babel-plugin-transform-es2015-object-super@^6.22.0":
"integrity" "sha512-4mWlLSwbGPUpjHKZmh/jZdn1dIVrwyuAAXi0QLaivH5AzNX6mP09kT4RLDCfXNuTT5XcudtWgY0hbe3pfO8Tkw=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-helper-replace-supers" "^6.22.0"
"babel-runtime" "^6.22.0"
"babel-plugin-transform-es2015-parameters@^6.22.0":
"integrity" "sha512-AON4twDnYlN4YNAwT6i4YMbeAMA6mfuNH7dHPiRACY6LoQ+R2dJRmXJaeehgUDg79LATM57hWvydeAv2ZCvRKQ=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-helper-call-delegate" "^6.22.0"
"babel-helper-get-function-arity" "^6.22.0"
"babel-runtime" "^6.22.0"
"babel-template" "^6.23.0"
"babel-traverse" "^6.23.0"
"babel-types" "^6.23.0"
"babel-plugin-transform-es2015-shorthand-properties@^6.22.0":
"integrity" "sha512-uanPrZ0kdKVRdSy1my61ZbiTw15JpTmDfg2qgKIrUsMuTOVQ6DqTnxSeJRr5wxpxP9bN8XglW5rsmgrZYUt30w=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-types" "^6.22.0"
"babel-plugin-transform-es2015-spread@^6.22.0":
"integrity" "sha512-3Ghhi26r4l3d0Js933E5+IhHwk0A1yiutj9gwvzmFbVV0sPMYk2lekhOufHBswX7NCoSeF4Xrl3sCIuSIa+zOg=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-plugin-transform-es2015-sticky-regex@^6.22.0":
"integrity" "sha512-Q+1qk0OpR9QBWr5ahELzVBshBthuN4fcldxMKiPV4P7itDo1Omz8KP9BjM9hXIqaO31NYOh6SZk0vD/nNS0XIA=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-helper-regex" "^6.22.0"
"babel-runtime" "^6.22.0"
"babel-types" "^6.22.0"
"babel-plugin-transform-es2015-template-literals@^6.22.0":
"integrity" "sha512-x8b9W0ngnKzDMHimVtTfn5ryimars1ByTqsfBDwAqLibmuuQY6pgBQi5z1ErIsUOWBdw1bW9FSz5RZUojM4apg=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-plugin-transform-es2015-typeof-symbol@^6.22.0":
"integrity" "sha512-fz6J2Sf4gYN6gWgRZaoFXmq93X+Li/8vf+fb0sGDVtdeWvxC9y5/bTD7bvfWMEq6zetGEHpWjtzRGSugt5kNqw=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-plugin-transform-es2015-unicode-regex@^6.22.0":
"integrity" "sha512-Xoacw/AXA2w7KltZUOm0x5cKVR+9BHZrxLklIeCWEjfmJKtUtCE4k5o45C9lXxbLlwfNI5eYNvJvOVCXNhKdUA=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-helper-regex" "^6.22.0"
"babel-runtime" "^6.22.0"
"regexpu-core" "^2.0.0"
"babel-plugin-transform-exponentiation-operator@^6.22.0":
"integrity" "sha512-omiIQyXGfTfMLuENfUw9WqUv3PDmzZQ4MJXB1GafFWZWtpXDrm9UPXQ3rXuL6WmVX6FfOegwzpF+oBOgfZ7KwA=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-helper-builder-binary-assignment-operator-visitor" "^6.22.0"
"babel-plugin-syntax-exponentiation-operator" "^6.8.0"
"babel-runtime" "^6.22.0"
"babel-plugin-transform-export-extensions@^6.22.0":
"integrity" "sha512-mtzELzINaYqdVglyZrDDVwkcFRuE7s6QUFWXxwffKAHB/NkfbJ2NJSytugB43ytIC8UVt30Ereyx+7gNyTkDLg=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-plugin-syntax-export-extensions" "^6.8.0"
"babel-runtime" "^6.22.0"
"babel-plugin-transform-function-bind@^6.22.0":
"integrity" "sha512-9Ec4KYf1GurT39mlUjDSlN7HWSlB3u3mWRMogQbb+Y88lO0ZM3rJ0ADhPnQwWK9TbO6e/4E+Et1rrfGY9mFimA=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-plugin-syntax-function-bind" "^6.8.0"
"babel-runtime" "^6.22.0"
"babel-plugin-transform-object-rest-spread@^6.22.0":
"integrity" "sha512-d765TwySvTEWS8a31U/Z0GWwr702U61+W2UQMCYepibSLamxKjHuITdTYl5gYZ3n1EW84AiURdQ2E8GHEp+GJg=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-plugin-syntax-object-rest-spread" "^6.8.0"
"babel-runtime" "^6.22.0"
"babel-plugin-transform-regenerator@^6.22.0":
"integrity" "sha512-JmcfBGv2sos9ifvcy9eb7WWhlrUuXAJMZx/CiMRj8Ckxak1bjhHJgXNSic/SaJGQPEdAwiP6zww76jZogu3Fnw=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"regenerator-transform" "0.9.8"
"babel-plugin-transform-runtime@^6.4.3":
"integrity" "sha512-cpGMVC1vt/772y3jx1gwSaTitQVZuFDlllgreMsZ+rTYC6jlYXRyf5FQOgSnckOiA5QmzbXTyBY2A5AmZXF1fA=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-plugin-transform-strict-mode@^6.22.0":
"integrity" "sha512-7187VxQj+8P8nU2o/YnkLw7xmIv4/eRadQlXB0qKyRgrfCg52/Rupe4AMLfqyIpsIexbS33yhRdh09Oxvl6otA=="
"resolved" "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-types" "^6.22.0"
"babel-polyfill@^6.23.0":
"integrity" "sha512-0l7mVU+LrQ2X/ZTUq63T5i3VyR2aTgcRTFmBcD6djQ/Fek6q1A9t5u0F4jZVYHzp78jwWAzGfLpAY1b4/I3lfg=="
"resolved" "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-runtime" "^6.22.0"
"core-js" "^2.4.0"
"regenerator-runtime" "^0.10.0"
"babel-preset-es2015@^6.1.18":
"integrity" "sha512-clDvFphlHNqtK1UEQmNAkivHuyYZjjpHYCmUvGsmxzMVGrrN7s62C1pl6MeTdgN3NMH4h1GwF87lfzDK1WCOWw=="
"resolved" "https://registry.npmjs.org/babel-preset-es2015/-/babel-preset-es2015-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-plugin-check-es2015-constants" "^6.22.0"
"babel-plugin-transform-es2015-arrow-functions" "^6.22.0"
"babel-plugin-transform-es2015-block-scoped-functions" "^6.22.0"
"babel-plugin-transform-es2015-block-scoping" "^6.22.0"
"babel-plugin-transform-es2015-classes" "^6.22.0"
"babel-plugin-transform-es2015-computed-properties" "^6.22.0"
"babel-plugin-transform-es2015-destructuring" "^6.22.0"
"babel-plugin-transform-es2015-duplicate-keys" "^6.22.0"
"babel-plugin-transform-es2015-for-of" "^6.22.0"
"babel-plugin-transform-es2015-function-name" "^6.22.0"
"babel-plugin-transform-es2015-literals" "^6.22.0"
"babel-plugin-transform-es2015-modules-amd" "^6.22.0"
"babel-plugin-transform-es2015-modules-commonjs" "^6.22.0"
"babel-plugin-transform-es2015-modules-systemjs" "^6.22.0"
"babel-plugin-transform-es2015-modules-umd" "^6.22.0"
"babel-plugin-transform-es2015-object-super" "^6.22.0"
"babel-plugin-transform-es2015-parameters" "^6.22.0"
"babel-plugin-transform-es2015-shorthand-properties" "^6.22.0"
"babel-plugin-transform-es2015-spread" "^6.22.0"
"babel-plugin-transform-es2015-sticky-regex" "^6.22.0"
"babel-plugin-transform-es2015-template-literals" "^6.22.0"
"babel-plugin-transform-es2015-typeof-symbol" "^6.22.0"
"babel-plugin-transform-es2015-unicode-regex" "^6.22.0"
"babel-plugin-transform-regenerator" "^6.22.0"
"babel-preset-stage-0@^6.1.18":
"integrity" "sha512-P7RFevhnQakUxdJOOP4oVe7rEH9hahBQ8Z1+tYeFH1iJDAgcCg5s0ufMJCiVOwNZAmUfHjlRNJmmsu1RV1fCZA=="
"resolved" "https://registry.npmjs.org/babel-preset-stage-0/-/babel-preset-stage-0-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-plugin-transform-do-expressions" "^6.22.0"
"babel-plugin-transform-function-bind" "^6.22.0"
"babel-preset-stage-1" "^6.22.0"
"babel-preset-stage-1@^6.22.0":
"integrity" "sha512-Z0FOQ8/HS9ytG68EHypermEjasufGmPAbxIpu03ngrjJex7ilLxm+ynUixNXlej8UL/dklfaYIwUyatQx1U1oQ=="
"resolved" "https://registry.npmjs.org/babel-preset-stage-1/-/babel-preset-stage-1-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-plugin-transform-class-constructor-call" "^6.22.0"
"babel-plugin-transform-export-extensions" "^6.22.0"
"babel-preset-stage-2" "^6.22.0"
"babel-preset-stage-2@^6.22.0":
"integrity" "sha512-qFPeXTyhVFlexbozwaIN2Xcd5hL1wP4v5njsjWxbXw6hG4ijJrBJyWhPp2SGPbL8H8iN5/AOO3plNans8tvhEw=="
"resolved" "https://registry.npmjs.org/babel-preset-stage-2/-/babel-preset-stage-2-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-plugin-syntax-dynamic-import" "^6.18.0"
"babel-plugin-transform-class-properties" "^6.22.0"
"babel-plugin-transform-decorators" "^6.22.0"
"babel-preset-stage-3" "^6.22.0"
"babel-preset-stage-3@^6.22.0":
"integrity" "sha512-5c6afh34fe2I08YZ/OT3MS3V4lldld9093WBDr+neooHzdlFrJosAYaZCkkwdGrZOewuva1/5cE/T8fFqCELmA=="
"resolved" "https://registry.npmjs.org/babel-preset-stage-3/-/babel-preset-stage-3-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"babel-plugin-syntax-trailing-function-commas" "^6.22.0"
"babel-plugin-transform-async-generator-functions" "^6.22.0"
"babel-plugin-transform-async-to-generator" "^6.22.0"
"babel-plugin-transform-exponentiation-operator" "^6.22.0"
"babel-plugin-transform-object-rest-spread" "^6.22.0"
"babel-register@^6.23.0":
"integrity" "sha512-2Jd1fAhdXCB2UgGD1AzXbqDVRlvJrQ3K5ACzT81iO82yRA0oBJ8dLT7dNxCcd7tiuZt2R5uRN/8jpobDDpa5Rw=="
"resolved" "https://registry.npmjs.org/babel-register/-/babel-register-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-core" "^6.23.0"
"babel-runtime" "^6.22.0"
"core-js" "^2.4.0"
"home-or-tmp" "^2.0.0"
"lodash" "^4.2.0"
"mkdirp" "^0.5.1"
"source-map-support" "^0.4.2"
"babel-runtime@^6.18.0", "babel-runtime@^6.22.0", "babel-runtime@^6.3.13":
"integrity" "sha512-9Vdluea/MpskdLsLYTH10Wtc5z2U0THGHVJeqec0EHUbfEt2q3zM1piQ+/GjMl9h0drUY1hF8zHV9nmH8Kl+Og=="
"resolved" "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"core-js" "^2.4.0"
"regenerator-runtime" "^0.10.0"
"babel-template@^6.22.0", "babel-template@^6.23.0", "babel-template@^6.5.0":
"integrity" "sha512-YeXJYUh5wMEdJpsmKmz20I/IxtDNarxnurMKaZjT2HIiQtCoJx1YYRcy5mlvZ1cwdNX4RwqzWEsSfmhCkjpvgA=="
"resolved" "https://registry.npmjs.org/babel-template/-/babel-template-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-runtime" "^6.22.0"
"babel-traverse" "^6.23.0"
"babel-types" "^6.23.0"
"babylon" "^6.11.0"
"lodash" "^4.2.0"
"babel-traverse@^6.0.20", "babel-traverse@^6.22.0", "babel-traverse@^6.23.0", "babel-traverse@^6.23.1":
"integrity" "sha512-kwwn8lC9L7L7BBHueShzZlYZ5zRHRYrKV/RAd9mdNvkYKamF21AhqpR6eFnule/EOxZgZ2NQTN2qlHTQ+UfMmg=="
"resolved" "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.23.1.tgz"
"version" "6.23.1"
dependencies:
"babel-code-frame" "^6.22.0"
"babel-messages" "^6.23.0"
"babel-runtime" "^6.22.0"
"babel-types" "^6.23.0"
"babylon" "^6.15.0"
"debug" "^2.2.0"
"globals" "^9.0.0"
"invariant" "^2.2.0"
"lodash" "^4.2.0"
"babel-types@^6.0.19", "babel-types@^6.19.0", "babel-types@^6.22.0", "babel-types@^6.23.0":
"integrity" "sha512-NYwkqoqNBNVHrVnqhb1oZI6A7D1lzhme01ormWk9vYO8Epe70sfYQu3NkCa2Rfd9+H8r7WB2/LJkGylBDvK6bQ=="
"resolved" "https://registry.npmjs.org/babel-types/-/babel-types-6.23.0.tgz"
"version" "6.23.0"
dependencies:
"babel-runtime" "^6.22.0"
"esutils" "^2.0.2"
"lodash" "^4.2.0"
"to-fast-properties" "^1.0.1"
"babylon@^6.0.18", "babylon@^6.11.0", "babylon@^6.15.0":
"integrity" "sha512-WBQnJspthcRVkTCm9VPlUf6J38UZf5Sp+eV1IJoWTqZAHJBaKCuFP93fa6i/NcUhdiunFimemWn6/zDHZtUjLA=="
"resolved" "https://registry.npmjs.org/babylon/-/babylon-6.16.1.tgz"
"version" "6.16.1"
"babylon@5.8.20":
"integrity" "sha512-C2FmUgJHSyHRJYsM5hBHoudaqw6zAI9TJWdNpdmdphgZI/n4TlOAhR3UvitV6MmJ1m285Nwy8cbKYpltRSZB+g=="
"resolved" "https://registry.npmjs.org/babylon/-/babylon-5.8.20.tgz"
"version" "5.8.20"
"balanced-match@^0.4.1":
"integrity" "sha512-STw03mQKnGUYtoNjmowo4F2cRmIIxYEGiMsjjwla/u5P1lxadj/05WkNaFjNiKTgJkj8KiXbgAiRTmcQRwQNtg=="
"resolved" "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz"
"version" "0.4.2"
"bcrypt-pbkdf@^1.0.0":
"integrity" "sha512-vY4sOrSlpwNZXsinfJ0HpbSkFft4nhSVLeUrQ4j2ydGmBOiVY83aMJStJATBy0C3+XdaYa990kIA1qkC2mUq6g=="
"resolved" "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"tweetnacl" "^0.14.3"
"binary-extensions@^1.0.0":
"integrity" "sha512-3WXXKEv/uJx27dQVWm5nZnXAU3FFymNhLPcI9j8G7i0QuyJy+f4ocGHSQs+pae+3FOO51DmDYqgFBhno3MTaiQ=="
"resolved" "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.8.0.tgz"
"version" "1.8.0"
"bluebird@^3.3":
"integrity" "sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA=="
"resolved" "https://registry.npmjs.org/bluebird/-/bluebird-3.4.7.tgz"
"version" "3.4.7"
"boolbase@~1.0.0":
"integrity" "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww=="
"resolved" "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz"
"version" "1.0.0"
"boom@2.x.x":
"integrity" "sha512-KbiZEa9/vofNcVJXGwdWWn25reQ3V3dHBWbS07FTF3/TOehLnm9GEhJV4T6ZvGPkShRpmUqYwnaCrkj0mRnP6Q=="
"resolved" "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz"
"version" "2.10.1"
dependencies:
"hoek" "2.x.x"
"brace-expansion@^1.0.0":
"integrity" "sha512-do+EUHPJZmz1wYWxOspwBMwgEqs0T5xSClPfYRwug3giEKZoiuMN9Ans1hjT8yZZ1Dkx1oaU4yRe540HKKHA0A=="
"resolved" "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.6.tgz"
"version" "1.1.6"
dependencies:
"balanced-match" "^0.4.1"
"concat-map" "0.0.1"
"braces@^1.8.2":
"integrity" "sha512-xU7bpz2ytJl1bH9cgIurjpg/n8Gohy9GTw81heDYLJQ4RU60dlyJsa+atVF2pI0yMMvKxI9HkKwjePCj5XI1hw=="
"resolved" "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz"
"version" "1.8.5"
dependencies:
"expand-range" "^1.8.1"
"preserve" "^0.2.0"
"repeat-element" "^1.1.2"
"buffer-shims@^1.0.0":
"integrity" "sha512-Zy8ZXMyxIT6RMTeY7OP/bDndfj6bwCan7SS98CEndS6deHwWPpseeHlwarNcBim+etXnF9HBc1non5JgDaJU1g=="
"resolved" "https://registry.npmjs.org/buffer-shims/-/buffer-shims-1.0.0.tgz"
"version" "1.0.0"
"caller-path@^0.1.0":
"integrity" "sha512-UJiE1otjXPF5/x+T3zTnSFiTOEmJoGTD9HmBoxnCUwho61a2eSNn/VwtwuIBDAo2SEOv1AJ7ARI5gCmohFLu/g=="
"resolved" "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz"
"version" "0.1.0"
dependencies:
"callsites" "^0.2.0"
"callsites@^0.2.0":
"integrity" "sha512-Zv4Dns9IbXXmPkgRRUjAaJQgfN4xX5p6+RQFhWUqscdvvK2xK/ZL8b3IXIJsj+4sD+f24NwnWy2BY8AJ82JB0A=="
"resolved" "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz"
"version" "0.2.0"
"camelcase@^2.0.1":
"integrity" "sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw=="
"resolved" "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz"
"version" "2.1.1"
"caseless@~0.11.0":
"integrity" "sha512-ODLXH644w9C2fMPAm7bMDQ3GRvipZWZfKc+8As6hIadRIelE0n0xZuN38NS6kiK3KPEVrpymmQD8bvncAHWQkQ=="
"resolved" "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz"
"version" "0.11.0"
"chai-as-promised@^5.1.0":
"integrity" "sha512-pgAOHklxHtjFAU+SXt8aDJt/OQxR4om8ZSJXQT6nObuxwGEVZ69VZR0JZzj4mDLo6OHKCO6uLTmAhPyuHJw0rw=="
"resolved" "https://registry.npmjs.org/chai-as-promised/-/chai-as-promised-5.3.0.tgz"
"version" "5.3.0"
"chai@^3.4.1", "chai@>= 2.1.2 < 4":
"integrity" "sha512-eRYY0vPS2a9zt5w5Z0aCeWbrXTEyvk7u/Xf71EzNObrjSCPgMm1Nku/D/u2tiqHBX5j40wWhj54YJLtgn8g55A=="
"resolved" "https://registry.npmjs.org/chai/-/chai-3.5.0.tgz"
"version" "3.5.0"
dependencies:
"assertion-error" "^1.0.1"
"deep-eql" "^0.1.3"
"type-detect" "^1.0.0"
"chalk@^1.0.0", "chalk@^1.1.0", "chalk@^1.1.1", "chalk@^1.1.3":
"integrity" "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A=="
"resolved" "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz"
"version" "1.1.3"
dependencies:
"ansi-styles" "^2.2.1"
"escape-string-regexp" "^1.0.2"
"has-ansi" "^2.0.0"