-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
3065 lines (2629 loc) · 108 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@babel/code-frame@^7.0.0":
"integrity" "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/highlight" "^7.8.3"
"@babel/helper-validator-identifier@^7.9.0":
"integrity" "sha512-/8arLKUFq882w4tWGj9JYzRpAlZgiWUJ+dtteNTDqrRBz9Iguck9Rn3ykuBDoUwh2TO4tSAJlrxDUOXWklJe4g=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz"
"version" "7.9.5"
"@babel/highlight@^7.8.3":
"integrity" "sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.9.0.tgz"
"version" "7.9.0"
dependencies:
"@babel/helper-validator-identifier" "^7.9.0"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@commitlint/cli@^8.3.5":
"integrity" "sha512-6+L0vbw55UEdht71pgWOE55SRgb+8OHcEwGDB234VlIBFGK9P2QOBU7MHiYJ5cjdjCQ0rReNrGjOHmJ99jwf0w=="
"resolved" "https://registry.npmjs.org/@commitlint/cli/-/cli-8.3.5.tgz"
"version" "8.3.5"
dependencies:
"@commitlint/format" "^8.3.4"
"@commitlint/lint" "^8.3.5"
"@commitlint/load" "^8.3.5"
"@commitlint/read" "^8.3.4"
"babel-polyfill" "6.26.0"
"chalk" "2.4.2"
"get-stdin" "7.0.0"
"lodash" "4.17.15"
"meow" "5.0.0"
"resolve-from" "5.0.0"
"resolve-global" "1.0.0"
"@commitlint/config-conventional@^7.0.1":
"integrity" "sha1-J2l3+O5g2MVtf91DKWr3bf7ptfc="
"resolved" "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-7.0.1.tgz"
"version" "7.0.1"
"@commitlint/ensure@^8.3.4":
"integrity" "sha512-8NW77VxviLhD16O3EUd02lApMFnrHexq10YS4F4NftNoErKbKaJ0YYedktk2boKrtNRf/gQHY/Qf65edPx4ipw=="
"resolved" "https://registry.npmjs.org/@commitlint/ensure/-/ensure-8.3.4.tgz"
"version" "8.3.4"
dependencies:
"lodash" "4.17.15"
"@commitlint/execute-rule@^8.3.4":
"integrity" "sha512-f4HigYjeIBn9f7OuNv5zh2y5vWaAhNFrfeul8CRJDy82l3Y+09lxOTGxfF3uMXKrZq4LmuK6qvvRCZ8mUrVvzQ=="
"resolved" "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-8.3.4.tgz"
"version" "8.3.4"
"@commitlint/format@^8.3.4":
"integrity" "sha512-809wlQ/ND6CLZON+w2Rb3YM2TLNDfU2xyyqpZeqzf2reJNpySMSUAeaO/fNDJSOKIsOsR3bI01rGu6hv28k+Nw=="
"resolved" "https://registry.npmjs.org/@commitlint/format/-/format-8.3.4.tgz"
"version" "8.3.4"
dependencies:
"chalk" "^2.0.1"
"@commitlint/is-ignored@^8.3.5":
"integrity" "sha512-Zo+8a6gJLFDTqyNRx53wQi/XTiz8mncvmWf/4oRG+6WRcBfjSSHY7KPVj5Y6UaLy2EgZ0WQ2Tt6RdTDeQiQplA=="
"resolved" "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-8.3.5.tgz"
"version" "8.3.5"
dependencies:
"semver" "6.3.0"
"@commitlint/lint@^8.3.5":
"integrity" "sha512-02AkI0a6PU6rzqUvuDkSi6rDQ2hUgkq9GpmdJqfai5bDbxx2939mK4ZO+7apbIh4H6Pae7EpYi7ffxuJgm+3hQ=="
"resolved" "https://registry.npmjs.org/@commitlint/lint/-/lint-8.3.5.tgz"
"version" "8.3.5"
dependencies:
"@commitlint/is-ignored" "^8.3.5"
"@commitlint/parse" "^8.3.4"
"@commitlint/rules" "^8.3.4"
"babel-runtime" "^6.23.0"
"lodash" "4.17.15"
"@commitlint/load@^8.3.5":
"integrity" "sha512-poF7R1CtQvIXRmVIe63FjSQmN9KDqjRtU5A6hxqXBga87yB2VUJzic85TV6PcQc+wStk52cjrMI+g0zFx+Zxrw=="
"resolved" "https://registry.npmjs.org/@commitlint/load/-/load-8.3.5.tgz"
"version" "8.3.5"
dependencies:
"@commitlint/execute-rule" "^8.3.4"
"@commitlint/resolve-extends" "^8.3.5"
"babel-runtime" "^6.23.0"
"chalk" "2.4.2"
"cosmiconfig" "^5.2.0"
"lodash" "4.17.15"
"resolve-from" "^5.0.0"
"@commitlint/message@^8.3.4":
"integrity" "sha512-nEj5tknoOKXqBsaQtCtgPcsAaf5VCg3+fWhss4Vmtq40633xLq0irkdDdMEsYIx8rGR0XPBTukqzln9kAWCkcA=="
"resolved" "https://registry.npmjs.org/@commitlint/message/-/message-8.3.4.tgz"
"version" "8.3.4"
"@commitlint/parse@^8.3.4":
"integrity" "sha512-b3uQvpUQWC20EBfKSfMRnyx5Wc4Cn778bVeVOFErF/cXQK725L1bYFvPnEjQO/GT8yGVzq2wtLaoEqjm1NJ/Bw=="
"resolved" "https://registry.npmjs.org/@commitlint/parse/-/parse-8.3.4.tgz"
"version" "8.3.4"
dependencies:
"conventional-changelog-angular" "^1.3.3"
"conventional-commits-parser" "^3.0.0"
"lodash" "^4.17.11"
"@commitlint/read@^8.3.4":
"integrity" "sha512-FKv1kHPrvcAG5j+OSbd41IWexsbLhfIXpxVC/YwQZO+FR0EHmygxQNYs66r+GnhD1EfYJYM4WQIqd5bJRx6OIw=="
"resolved" "https://registry.npmjs.org/@commitlint/read/-/read-8.3.4.tgz"
"version" "8.3.4"
dependencies:
"@commitlint/top-level" "^8.3.4"
"@marionebl/sander" "^0.6.0"
"babel-runtime" "^6.23.0"
"git-raw-commits" "^2.0.0"
"@commitlint/resolve-extends@^8.3.5":
"integrity" "sha512-nHhFAK29qiXNe6oH6uG5wqBnCR+BQnxlBW/q5fjtxIaQALgfoNLHwLS9exzbIRFqwJckpR6yMCfgMbmbAOtklQ=="
"resolved" "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-8.3.5.tgz"
"version" "8.3.5"
dependencies:
"import-fresh" "^3.0.0"
"lodash" "4.17.15"
"resolve-from" "^5.0.0"
"resolve-global" "^1.0.0"
"@commitlint/rules@^8.3.4":
"integrity" "sha512-xuC9dlqD5xgAoDFgnbs578cJySvwOSkMLQyZADb1xD5n7BNcUJfP8WjT9W1Aw8K3Wf8+Ym/ysr9FZHXInLeaRg=="
"resolved" "https://registry.npmjs.org/@commitlint/rules/-/rules-8.3.4.tgz"
"version" "8.3.4"
dependencies:
"@commitlint/ensure" "^8.3.4"
"@commitlint/message" "^8.3.4"
"@commitlint/to-lines" "^8.3.4"
"babel-runtime" "^6.23.0"
"@commitlint/to-lines@^8.3.4":
"integrity" "sha512-5AvcdwRsMIVq0lrzXTwpbbG5fKRTWcHkhn/hCXJJ9pm1JidsnidS1y0RGkb3O50TEHGewhXwNoavxW9VToscUA=="
"resolved" "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-8.3.4.tgz"
"version" "8.3.4"
"@commitlint/top-level@^8.3.4":
"integrity" "sha512-nOaeLBbAqSZNpKgEtO6NAxmui1G8ZvLG+0wb4rvv6mWhPDzK1GNZkCd8FUZPahCoJ1iHDoatw7F8BbJLg4nDjg=="
"resolved" "https://registry.npmjs.org/@commitlint/top-level/-/top-level-8.3.4.tgz"
"version" "8.3.4"
dependencies:
"find-up" "^4.0.0"
"@marionebl/sander@^0.6.0":
"integrity" "sha1-GViWWHTyS8Ub5Ih1/rUNZC/EH3s="
"resolved" "https://registry.npmjs.org/@marionebl/sander/-/sander-0.6.1.tgz"
"version" "0.6.1"
dependencies:
"graceful-fs" "^4.1.3"
"mkdirp" "^0.5.1"
"rimraf" "^2.5.2"
"@types/color-name@^1.1.1":
"integrity" "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ=="
"resolved" "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz"
"version" "1.1.1"
"@types/minimist@^1.2.0":
"integrity" "sha1-aaI6OtKcrwCX8G7aWbNh7i8GOfY="
"resolved" "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.0.tgz"
"version" "1.2.0"
"@types/normalize-package-data@^2.4.0":
"integrity" "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA=="
"resolved" "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz"
"version" "2.4.0"
"add-stream@^1.0.0":
"integrity" "sha1-anmQQ3ynNtXhKI25K9MmbV9csqo="
"resolved" "https://registry.npmjs.org/add-stream/-/add-stream-1.0.0.tgz"
"version" "1.0.0"
"ansi-escapes@^1.1.0":
"integrity" "sha1-06ioOzGapneTZisT52HHkRQiMG4="
"resolved" "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz"
"version" "1.4.0"
"ansi-regex@^2.0.0":
"integrity" "sha1-w7M6te42DYbg5ijwRorn7yfWVN8="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"
"version" "2.1.1"
"ansi-regex@^3.0.0":
"integrity" "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz"
"version" "3.0.0"
"ansi-regex@^5.0.0":
"integrity" "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz"
"version" "5.0.0"
"ansi-styles@^2.2.1":
"integrity" "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"
"version" "2.2.1"
"ansi-styles@^3.2.1":
"integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
"version" "3.2.1"
dependencies:
"color-convert" "^1.9.0"
"ansi-styles@^4.0.0":
"integrity" "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz"
"version" "4.2.1"
dependencies:
"@types/color-name" "^1.1.1"
"color-convert" "^2.0.1"
"argparse@^1.0.7":
"integrity" "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="
"resolved" "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"
"version" "1.0.10"
dependencies:
"sprintf-js" "~1.0.2"
"arr-diff@^2.0.0":
"integrity" "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8="
"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-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="
"resolved" "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz"
"version" "1.1.0"
"array-find-index@^1.0.1":
"integrity" "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E="
"resolved" "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz"
"version" "1.0.2"
"array-ify@^1.0.0":
"integrity" "sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4="
"resolved" "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz"
"version" "1.0.0"
"array-unique@^0.2.1":
"integrity" "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM="
"resolved" "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz"
"version" "0.2.1"
"arrify@^1.0.1":
"integrity" "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0="
"resolved" "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz"
"version" "1.0.1"
"arrify@^2.0.1":
"integrity" "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug=="
"resolved" "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz"
"version" "2.0.1"
"integrity" "sha1-g2TKYt+Or7gwSZ9pkXdGbDsDSZ0="
"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"
"integrity" "sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM="
"resolved" "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz"
"version" "6.26.0"
dependencies:
"babel-runtime" "^6.26.0"
"core-js" "^2.5.0"
"regenerator-runtime" "^0.10.5"
"babel-runtime@^6.22.0", "babel-runtime@^6.23.0", "babel-runtime@^6.26.0":
"integrity" "sha1-llxwWGaOgrVde/4E/yM3vItWR/4="
"resolved" "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz"
"version" "6.26.0"
dependencies:
"core-js" "^2.4.0"
"regenerator-runtime" "^0.11.0"
"balanced-match@^1.0.0":
"integrity" "sha1-ibTRmasr7kneFk6gK4nORi1xt2c="
"resolved" "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz"
"version" "1.0.0"
"brace-expansion@^1.1.7":
"integrity" "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="
"resolved" "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"
"version" "1.1.11"
dependencies:
"balanced-match" "^1.0.0"
"concat-map" "0.0.1"
"braces@^1.8.2":
"integrity" "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc="
"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-from@^1.0.0":
"integrity" "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A=="
"resolved" "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz"
"version" "1.1.1"
"builtin-modules@^1.0.0":
"integrity" "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8="
"resolved" "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz"
"version" "1.1.1"
"cachedir@^1.1.0":
"integrity" "sha512-O1ji32oyON9laVPJL1IZ5bmwd2cB46VfpxkDequezH+15FDzzVddEyrGEeX4WusDSqKxdyFdDQDEG1yo1GoWkg=="
"resolved" "https://registry.npmjs.org/cachedir/-/cachedir-1.3.0.tgz"
"version" "1.3.0"
dependencies:
"os-homedir" "^1.0.1"
"caller-callsite@^2.0.0":
"integrity" "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ="
"resolved" "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"callsites" "^2.0.0"
"caller-path@^2.0.0":
"integrity" "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ="
"resolved" "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"caller-callsite" "^2.0.0"
"callsites@^2.0.0":
"integrity" "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA="
"resolved" "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz"
"version" "2.0.0"
"callsites@^3.0.0":
"integrity" "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="
"resolved" "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz"
"version" "3.1.0"
"camelcase-keys@^2.0.0":
"integrity" "sha1-MIvur/3ygRkFHvodkyITyRuPkuc="
"resolved" "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz"
"version" "2.1.0"
dependencies:
"camelcase" "^2.0.0"
"map-obj" "^1.0.0"
"camelcase-keys@^4.0.0":
"integrity" "sha1-oqpfsa9oh1glnDLBQUJteJI7m3c="
"resolved" "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-4.2.0.tgz"
"version" "4.2.0"
dependencies:
"camelcase" "^4.1.0"
"map-obj" "^2.0.0"
"quick-lru" "^1.0.0"
"camelcase-keys@^6.2.2":
"integrity" "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg=="
"resolved" "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz"
"version" "6.2.2"
dependencies:
"camelcase" "^5.3.1"
"map-obj" "^4.0.0"
"quick-lru" "^4.0.1"
"camelcase@^2.0.0":
"integrity" "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8="
"resolved" "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz"
"version" "2.1.1"
"camelcase@^4.1.0":
"integrity" "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0="
"resolved" "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz"
"version" "4.1.0"
"camelcase@^5.0.0":
"integrity" "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
"resolved" "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz"
"version" "5.3.1"
"camelcase@^5.3.1":
"integrity" "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
"resolved" "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz"
"version" "5.3.1"
"camelcase@^6.0.0":
"integrity" "sha512-8KMDF1Vz2gzOq54ONPJS65IvTUaB1cHJ2DMM7MbPmLZljDH1qpzzLsWdiN9pHh6qvkRVDTi/07+eNGch/oLU4w=="
"resolved" "https://registry.npmjs.org/camelcase/-/camelcase-6.0.0.tgz"
"version" "6.0.0"
"chalk@^1.0.0", "[email protected]":
"integrity" "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg="
"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"
"strip-ansi" "^3.0.0"
"supports-color" "^2.0.0"
"chalk@^2.0.0":
"integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="
"resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"
"version" "2.4.2"
dependencies:
"ansi-styles" "^3.2.1"
"escape-string-regexp" "^1.0.5"
"supports-color" "^5.3.0"
"chalk@^2.0.1":
"integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="
"resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"
"version" "2.4.2"
dependencies:
"ansi-styles" "^3.2.1"
"escape-string-regexp" "^1.0.5"
"supports-color" "^5.3.0"
"chalk@^2.4.2":
"integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="
"resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"
"version" "2.4.2"
dependencies:
"ansi-styles" "^3.2.1"
"escape-string-regexp" "^1.0.5"
"supports-color" "^5.3.0"
"integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="
"resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"
"version" "2.4.2"
dependencies:
"ansi-styles" "^3.2.1"
"escape-string-regexp" "^1.0.5"
"supports-color" "^5.3.0"
"chardet@^0.4.0":
"integrity" "sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I="
"resolved" "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz"
"version" "0.4.2"
"ci-info@^1.0.0":
"integrity" "sha512-SK/846h/Rcy8q9Z9CAwGBLfCJ6EkjJWdpelWDufQpqVDYq2Wnnv8zlSO6AMQap02jvhVruKKpEtQOufo3pFhLg=="
"resolved" "https://registry.npmjs.org/ci-info/-/ci-info-1.1.3.tgz"
"version" "1.1.3"
"cli-cursor@^1.0.1":
"integrity" "sha1-ZNo/fValRBLll5S9Ytw1KV6PKYc="
"resolved" "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"restore-cursor" "^1.0.1"
"cli-cursor@^2.1.0":
"integrity" "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU="
"resolved" "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz"
"version" "2.1.0"
dependencies:
"restore-cursor" "^2.0.0"
"cli-width@^2.0.0":
"integrity" "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk="
"resolved" "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz"
"version" "2.2.0"
"cliui@^6.0.0":
"integrity" "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ=="
"resolved" "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz"
"version" "6.0.0"
dependencies:
"string-width" "^4.2.0"
"strip-ansi" "^6.0.0"
"wrap-ansi" "^6.2.0"
"code-point-at@^1.0.0":
"integrity" "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c="
"resolved" "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz"
"version" "1.1.0"
"color-convert@^1.9.0":
"integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="
"resolved" "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"
"version" "1.9.3"
dependencies:
"color-name" "1.1.3"
"color-convert@^2.0.1":
"integrity" "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="
"resolved" "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"
"version" "2.0.1"
dependencies:
"color-name" "~1.1.4"
"color-name@~1.1.4":
"integrity" "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
"resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
"version" "1.1.4"
"integrity" "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
"resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
"version" "1.1.3"
"commitizen@^2.10.1":
"integrity" "sha1-jDld7zSolfTpSVLC78PJ60w2g70="
"resolved" "https://registry.npmjs.org/commitizen/-/commitizen-2.10.1.tgz"
"version" "2.10.1"
dependencies:
"cachedir" "^1.1.0"
"chalk" "1.1.3"
"cz-conventional-changelog" "2.0.0"
"dedent" "0.6.0"
"detect-indent" "4.0.0"
"find-node-modules" "1.0.4"
"find-root" "1.0.0"
"fs-extra" "^1.0.0"
"glob" "7.1.1"
"inquirer" "1.2.3"
"lodash" "4.17.5"
"minimist" "1.2.0"
"opencollective" "1.0.3"
"path-exists" "2.1.0"
"shelljs" "0.7.6"
"strip-json-comments" "2.0.1"
"compare-func@^1.3.1":
"integrity" "sha1-md0LpFfh+bxyKxLAjsM+6rMfpkg="
"resolved" "https://registry.npmjs.org/compare-func/-/compare-func-1.3.2.tgz"
"version" "1.3.2"
dependencies:
"array-ify" "^1.0.0"
"dot-prop" "^3.0.0"
"integrity" "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
"resolved" "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
"version" "0.0.1"
"concat-stream@^1.4.7":
"integrity" "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw=="
"resolved" "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz"
"version" "1.6.2"
dependencies:
"buffer-from" "^1.0.0"
"inherits" "^2.0.3"
"readable-stream" "^2.2.2"
"typedarray" "^0.0.6"
"concat-stream@^2.0.0":
"integrity" "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A=="
"resolved" "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"buffer-from" "^1.0.0"
"inherits" "^2.0.3"
"readable-stream" "^3.0.2"
"typedarray" "^0.0.6"
"conventional-changelog-angular@^1.3.3":
"integrity" "sha512-suQnFSqCxRwyBxY68pYTsFkG0taIdinHLNEAX5ivtw8bCRnIgnpvcHmlR/yjUyZIrNPYAoXlY1WiEKWgSE4BNg=="
"resolved" "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-1.6.6.tgz"
"version" "1.6.6"
dependencies:
"compare-func" "^1.3.1"
"q" "^1.5.1"
"conventional-changelog-angular@^5.0.10":
"integrity" "sha512-k7RPPRs0vp8+BtPsM9uDxRl6KcgqtCJmzRD1wRtgqmhQ96g8ifBGo9O/TZBG23jqlXS/rg8BKRDELxfnQQGiaA=="
"resolved" "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.10.tgz"
"version" "5.0.10"
dependencies:
"compare-func" "^1.3.1"
"q" "^1.5.1"
"conventional-changelog-atom@^2.0.7":
"integrity" "sha512-7dOREZwzB+tCEMjRTDfen0OHwd7vPUdmU0llTy1eloZgtOP4iSLVzYIQqfmdRZEty+3w5Jz+AbhfTJKoKw1JeQ=="
"resolved" "https://registry.npmjs.org/conventional-changelog-atom/-/conventional-changelog-atom-2.0.7.tgz"
"version" "2.0.7"
dependencies:
"q" "^1.5.1"
"conventional-changelog-codemirror@^2.0.7":
"integrity" "sha512-Oralk1kiagn3Gb5cR5BffenWjVu59t/viE6UMD/mQa1hISMPkMYhJIqX+CMeA1zXgVBO+YHQhhokEj99GP5xcg=="
"resolved" "https://registry.npmjs.org/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.7.tgz"
"version" "2.0.7"
dependencies:
"q" "^1.5.1"
"integrity" "sha512-IpVePh16EbbB02V+UA+HQnnPIohgXvJRxHcS5+Uwk4AT5LjzCZJm5sp/yqs5C6KZJ1jMsV4paEV13BN1pvDuxQ=="
"resolved" "https://registry.npmjs.org/conventional-changelog-config-spec/-/conventional-changelog-config-spec-2.1.0.tgz"
"version" "2.1.0"
"conventional-changelog-conventionalcommits@^4.3.0", "[email protected]":
"integrity" "sha512-oYHydvZKU+bS8LnGqTMlNrrd7769EsuEHKy4fh1oMdvvDi7fem8U+nvfresJ1IDB8K00Mn4LpiA/lR+7Gs6rgg=="
"resolved" "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"compare-func" "^1.3.1"
"lodash" "^4.17.15"
"q" "^1.5.1"
"conventional-changelog-core@^4.1.7":
"integrity" "sha512-UBvSrQR2RdKbSQKh7RhueiiY4ZAIOW3+CSWdtKOwRv+KxIMNFKm1rOcGBFx0eA8AKhGkkmmacoTWJTqyz7Q0VA=="
"resolved" "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-4.1.7.tgz"
"version" "4.1.7"
dependencies:
"add-stream" "^1.0.0"
"conventional-changelog-writer" "^4.0.16"
"conventional-commits-parser" "^3.1.0"
"dateformat" "^3.0.0"
"get-pkg-repo" "^1.0.0"
"git-raw-commits" "2.0.0"
"git-remote-origin-url" "^2.0.0"
"git-semver-tags" "^4.0.0"
"lodash" "^4.17.15"
"normalize-package-data" "^2.3.5"
"q" "^1.5.1"
"read-pkg" "^3.0.0"
"read-pkg-up" "^3.0.0"
"shelljs" "^0.8.3"
"through2" "^3.0.0"
"conventional-changelog-ember@^2.0.8":
"integrity" "sha512-JEMEcUAMg4Q9yxD341OgWlESQ4gLqMWMXIWWUqoQU8yvTJlKnrvcui3wk9JvnZQyONwM2g1MKRZuAjKxr8hAXA=="
"resolved" "https://registry.npmjs.org/conventional-changelog-ember/-/conventional-changelog-ember-2.0.8.tgz"
"version" "2.0.8"
dependencies:
"q" "^1.5.1"
"conventional-changelog-eslint@^3.0.8":
"integrity" "sha512-5rTRltgWG7TpU1PqgKHMA/2ivjhrB+E+S7OCTvj0zM/QGg4vmnVH67Vq/EzvSNYtejhWC+OwzvDrLk3tqPry8A=="
"resolved" "https://registry.npmjs.org/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.8.tgz"
"version" "3.0.8"
dependencies:
"q" "^1.5.1"
"conventional-changelog-express@^2.0.5":
"integrity" "sha512-pW2hsjKG+xNx/Qjof8wYlAX/P61hT5gQ/2rZ2NsTpG+PgV7Rc8RCfITvC/zN9K8fj0QmV6dWmUefCteD9baEAw=="
"resolved" "https://registry.npmjs.org/conventional-changelog-express/-/conventional-changelog-express-2.0.5.tgz"
"version" "2.0.5"
dependencies:
"q" "^1.5.1"
"conventional-changelog-jquery@^3.0.10":
"integrity" "sha512-QCW6wF8QgPkq2ruPaxc83jZxoWQxLkt/pNxIDn/oYjMiVgrtqNdd7lWe3vsl0hw5ENHNf/ejXuzDHk6suKsRpg=="
"resolved" "https://registry.npmjs.org/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.10.tgz"
"version" "3.0.10"
dependencies:
"q" "^1.5.1"
"conventional-changelog-jshint@^2.0.7":
"integrity" "sha512-qHA8rmwUnLiIxANJbz650+NVzqDIwNtc0TcpIa0+uekbmKHttidvQ1dGximU3vEDdoJVKFgR3TXFqYuZmYy9ZQ=="
"resolved" "https://registry.npmjs.org/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.7.tgz"
"version" "2.0.7"
dependencies:
"compare-func" "^1.3.1"
"q" "^1.5.1"
"conventional-changelog-preset-loader@^2.3.4":
"integrity" "sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g=="
"resolved" "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz"
"version" "2.3.4"
"conventional-changelog-writer@^4.0.16":
"integrity" "sha512-jmU1sDJDZpm/dkuFxBeRXvyNcJQeKhGtVcFFkwTphUAzyYWcwz2j36Wcv+Mv2hU3tpvLMkysOPXJTLO55AUrYQ=="
"resolved" "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-4.0.16.tgz"
"version" "4.0.16"
dependencies:
"compare-func" "^1.3.1"
"conventional-commits-filter" "^2.0.6"
"dateformat" "^3.0.0"
"handlebars" "^4.7.6"
"json-stringify-safe" "^5.0.1"
"lodash" "^4.17.15"
"meow" "^7.0.0"
"semver" "^6.0.0"
"split" "^1.0.0"
"through2" "^3.0.0"
"integrity" "sha512-ZGecVZPEo3aC75VVE4nu85589dDhpMyqfqgUM5Myq6wfKWiNqhDJLSDMsc8qKXshZoY7dqs1hR0H/15kI/G2jQ=="
"resolved" "https://registry.npmjs.org/conventional-changelog/-/conventional-changelog-3.1.21.tgz"
"version" "3.1.21"
dependencies:
"conventional-changelog-angular" "^5.0.10"
"conventional-changelog-atom" "^2.0.7"
"conventional-changelog-codemirror" "^2.0.7"
"conventional-changelog-conventionalcommits" "^4.3.0"
"conventional-changelog-core" "^4.1.7"
"conventional-changelog-ember" "^2.0.8"
"conventional-changelog-eslint" "^3.0.8"
"conventional-changelog-express" "^2.0.5"
"conventional-changelog-jquery" "^3.0.10"
"conventional-changelog-jshint" "^2.0.7"
"conventional-changelog-preset-loader" "^2.3.4"
"conventional-commit-types@^2.0.0":
"integrity" "sha1-XblXOdbCEqy+e29lahG5QLqmiUY="
"resolved" "https://registry.npmjs.org/conventional-commit-types/-/conventional-commit-types-2.2.0.tgz"
"version" "2.2.0"
"conventional-commits-filter@^2.0.6":
"integrity" "sha512-4g+sw8+KA50/Qwzfr0hL5k5NWxqtrOVw4DDk3/h6L85a9Gz0/Eqp3oP+CWCNfesBvZZZEFHF7OTEbRe+yYSyKw=="
"resolved" "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-2.0.6.tgz"
"version" "2.0.6"
dependencies:
"lodash.ismatch" "^4.4.0"
"modify-values" "^1.0.0"
"conventional-commits-parser@^3.0.0":
"integrity" "sha512-RSo5S0WIwXZiRxUGTPuYFbqvrR4vpJ1BDdTlthFgvHt5kEdnd1+pdvwWphWn57/oIl4V72NMmOocFqqJ8mFFhA=="
"resolved" "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"is-text-path" "^1.0.1"
"JSONStream" "^1.0.4"
"lodash" "^4.17.15"
"meow" "^7.0.0"
"split2" "^2.0.0"
"through2" "^3.0.0"
"trim-off-newlines" "^1.0.0"
"conventional-commits-parser@^3.1.0":
"integrity" "sha512-RSo5S0WIwXZiRxUGTPuYFbqvrR4vpJ1BDdTlthFgvHt5kEdnd1+pdvwWphWn57/oIl4V72NMmOocFqqJ8mFFhA=="
"resolved" "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"is-text-path" "^1.0.1"
"JSONStream" "^1.0.4"
"lodash" "^4.17.15"
"meow" "^7.0.0"
"split2" "^2.0.0"
"through2" "^3.0.0"
"trim-off-newlines" "^1.0.0"
"integrity" "sha512-DpRmW1k8CpRrcsXHOPGgHgOd4BMGiq2gtXAveGM8B9pSd9b4r4WKnqp1Fd0vkDtk8l973mIk8KKKUYnKRr9SFw=="
"resolved" "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-6.0.9.tgz"
"version" "6.0.9"
dependencies:
"concat-stream" "^2.0.0"
"conventional-changelog-preset-loader" "^2.3.4"
"conventional-commits-filter" "^2.0.6"
"conventional-commits-parser" "^3.1.0"
"git-raw-commits" "2.0.0"
"git-semver-tags" "^4.0.0"
"meow" "^7.0.0"
"q" "^1.5.1"
"core-js@^2.4.0", "core-js@^2.5.0":
"integrity" "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw=="
"resolved" "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz"
"version" "2.5.7"
"core-util-is@~1.0.0":
"integrity" "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
"resolved" "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"
"version" "1.0.2"
"cosmiconfig@^5.0.2":
"integrity" "sha512-94j37OtvxS5w7qr7Ta6dt67tWdnOxigBVN4VnSxNXFez9o18PGQ0D33SchKP17r9LAcWVTYV72G6vDayAUBFIg=="
"resolved" "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.0.5.tgz"
"version" "5.0.5"
dependencies:
"is-directory" "^0.3.1"
"js-yaml" "^3.9.0"
"parse-json" "^4.0.0"
"cosmiconfig@^5.2.0":
"integrity" "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA=="
"resolved" "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz"
"version" "5.2.1"
dependencies:
"import-fresh" "^2.0.0"
"is-directory" "^0.3.1"
"js-yaml" "^3.13.1"
"parse-json" "^4.0.0"
"cross-spawn@^5.0.1":
"integrity" "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk="
"resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz"
"version" "5.1.0"
dependencies:
"lru-cache" "^4.0.1"
"shebang-command" "^1.2.0"
"which" "^1.2.9"
"currently-unhandled@^0.4.1":
"integrity" "sha1-mI3zP+qxke95mmE2nddsF635V+o="
"resolved" "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz"
"version" "0.4.1"
dependencies:
"array-find-index" "^1.0.1"
"cz-conventional-changelog@^2.1.0":
"integrity" "sha1-L0vHOQ4yROTfKT5ro1Hkx0Cnx2Q="
"resolved" "https://registry.npmjs.org/cz-conventional-changelog/-/cz-conventional-changelog-2.1.0.tgz"
"version" "2.1.0"
dependencies:
"conventional-commit-types" "^2.0.0"
"lodash.map" "^4.5.1"
"longest" "^1.0.1"
"right-pad" "^1.0.1"
"word-wrap" "^1.0.3"
"integrity" "sha1-Val5r9/pXnAkh50qD1kkYwFwtTM="
"resolved" "https://registry.npmjs.org/cz-conventional-changelog/-/cz-conventional-changelog-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"conventional-commit-types" "^2.0.0"
"lodash.map" "^4.5.1"
"longest" "^1.0.1"
"pad-right" "^0.2.2"
"right-pad" "^1.0.1"
"word-wrap" "^1.0.3"
"dargs@^4.0.1":
"integrity" "sha1-A6nbtLXC8Tm/FK5T8LiipqhvThc="
"resolved" "https://registry.npmjs.org/dargs/-/dargs-4.1.0.tgz"
"version" "4.1.0"
dependencies:
"number-is-nan" "^1.0.0"
"dargs@^7.0.0":
"integrity" "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg=="
"resolved" "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz"
"version" "7.0.0"
"dateformat@^3.0.0":
"integrity" "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q=="
"resolved" "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz"
"version" "3.0.3"
"decamelize-keys@^1.0.0", "decamelize-keys@^1.1.0":
"integrity" "sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk="
"resolved" "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz"
"version" "1.1.0"
dependencies:
"decamelize" "^1.1.0"
"map-obj" "^1.0.0"
"decamelize@^1.1.0", "decamelize@^1.1.2", "decamelize@^1.2.0":
"integrity" "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA="
"resolved" "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"
"version" "1.2.0"
"integrity" "sha1-Dm2o8M5Sg471zsXI+TlrDBtko8s="
"resolved" "https://registry.npmjs.org/dedent/-/dedent-0.6.0.tgz"
"version" "0.6.0"
"detect-file@^0.1.0":
"integrity" "sha1-STXe39lIhkjgBrASlWbpOGcR6mM="
"resolved" "https://registry.npmjs.org/detect-file/-/detect-file-0.1.0.tgz"
"version" "0.1.0"
dependencies:
"fs-exists-sync" "^0.1.0"
"detect-indent@^6.0.0":
"integrity" "sha512-oSyFlqaTHCItVRGK5RmrmjB+CmaMOW7IaNA/kdxqhoa6d17j/5ce9O9eWXmV/KEdRwqpQA+Vqe8a8Bsybu4YnA=="
"resolved" "https://registry.npmjs.org/detect-indent/-/detect-indent-6.0.0.tgz"
"version" "6.0.0"
"integrity" "sha1-920GQ1LN9Docts5hnE7jqUdd4gg="
"resolved" "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz"
"version" "4.0.0"
dependencies:
"repeating" "^2.0.0"
"detect-newline@^3.1.0":
"integrity" "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA=="
"resolved" "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz"
"version" "3.1.0"
"dot-prop@^3.0.0":
"integrity" "sha1-G3CK8JSknJoOfbyteQq6U52sEXc="
"resolved" "https://registry.npmjs.org/dot-prop/-/dot-prop-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"is-obj" "^1.0.0"
"dotgitignore@^2.1.0":
"integrity" "sha512-sCm11ak2oY6DglEPpCB8TixLjWAxd3kJTs6UIcSasNYxXdFPV+YKlye92c8H4kKFqV5qYMIh7d+cYecEg0dIkA=="
"resolved" "https://registry.npmjs.org/dotgitignore/-/dotgitignore-2.1.0.tgz"
"version" "2.1.0"
dependencies:
"find-up" "^3.0.0"
"minimatch" "^3.0.4"
"emoji-regex@^8.0.0":
"integrity" "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
"resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz"
"version" "8.0.0"
"encoding@^0.1.11":
"integrity" "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s="
"resolved" "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz"
"version" "0.1.12"
dependencies:
"iconv-lite" "~0.4.13"
"error-ex@^1.2.0", "error-ex@^1.3.1":
"integrity" "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="
"resolved" "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz"
"version" "1.3.2"
dependencies:
"is-arrayish" "^0.2.1"
"escape-string-regexp@^1.0.2", "escape-string-regexp@^1.0.5":
"integrity" "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
"resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"
"version" "1.0.5"
"esprima@^4.0.0":
"integrity" "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
"resolved" "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz"
"version" "4.0.1"
"execa@^0.9.0":
"integrity" "sha512-BbUMBiX4hqiHZUA5+JujIjNb6TyAlp2D5KLheMjMluwOuzcnylDL4AxZYLLn1n2AGB49eSWwyKvvEQoRpnAtmA=="
"resolved" "https://registry.npmjs.org/execa/-/execa-0.9.0.tgz"
"version" "0.9.0"
dependencies:
"cross-spawn" "^5.0.1"
"get-stream" "^3.0.0"
"is-stream" "^1.1.0"
"npm-run-path" "^2.0.0"
"p-finally" "^1.0.0"
"signal-exit" "^3.0.0"
"strip-eof" "^1.0.0"
"exit-hook@^1.0.0":
"integrity" "sha1-8FyiM7SMBdVP/wd2XfhQfpXAL/g="
"resolved" "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz"
"version" "1.1.1"
"expand-brackets@^0.1.4":
"integrity" "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s="
"resolved" "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz"
"version" "0.1.5"
dependencies:
"is-posix-bracket" "^0.1.0"
"expand-range@^1.8.1":
"integrity" "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc="
"resolved" "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz"
"version" "1.8.2"
dependencies:
"fill-range" "^2.1.0"
"expand-tilde@^1.2.2":
"integrity" "sha1-C4HrqJflo9MdHD0QL48BRB5VlEk="
"resolved" "https://registry.npmjs.org/expand-tilde/-/expand-tilde-1.2.2.tgz"
"version" "1.2.2"
dependencies:
"os-homedir" "^1.0.1"
"extend@^3.0.0":
"integrity" "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="
"resolved" "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz"
"version" "3.0.2"
"external-editor@^1.1.0":
"integrity" "sha1-Etew24UPf/fnCBuvQAVwAGDEYAs="
"resolved" "https://registry.npmjs.org/external-editor/-/external-editor-1.1.1.tgz"
"version" "1.1.1"
dependencies:
"extend" "^3.0.0"
"spawn-sync" "^1.0.15"
"tmp" "^0.0.29"
"external-editor@^2.0.1":
"integrity" "sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A=="
"resolved" "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz"
"version" "2.2.0"
dependencies:
"chardet" "^0.4.0"
"iconv-lite" "^0.4.17"
"tmp" "^0.0.33"