-
Notifications
You must be signed in to change notification settings - Fork 4
/
yarn.lock
3100 lines (2657 loc) · 118 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", "@babel/code-frame@^7.12.13":
"integrity" "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/highlight" "^7.12.13"
"@babel/generator@^7.14.0", "@babel/generator@^7.4.0":
"integrity" "sha512-TMGhsXMXCP/O1WtQmZjpEYDhCYC9vFhayWZPJSZCGkPJgUqX0rF0wwtrYvnzVxIjcF80tkUertXVk5cwqi5cAQ=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.14.1.tgz"
"version" "7.14.1"
dependencies:
"@babel/types" "^7.14.1"
"jsesc" "^2.5.1"
"source-map" "^0.5.0"
"@babel/helper-function-name@^7.12.13":
"integrity" "sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA=="
"resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/helper-get-function-arity" "^7.12.13"
"@babel/template" "^7.12.13"
"@babel/types" "^7.12.13"
"@babel/helper-get-function-arity@^7.12.13":
"integrity" "sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg=="
"resolved" "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/types" "^7.12.13"
"@babel/helper-split-export-declaration@^7.12.13":
"integrity" "sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg=="
"resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/types" "^7.12.13"
"@babel/helper-validator-identifier@^7.14.0":
"integrity" "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz"
"version" "7.14.0"
"@babel/highlight@^7.12.13":
"integrity" "sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.0.tgz"
"version" "7.14.0"
dependencies:
"@babel/helper-validator-identifier" "^7.14.0"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/parser@^7.12.13", "@babel/parser@^7.14.0", "@babel/parser@^7.4.3":
"integrity" "sha512-muUGEKu8E/ftMTPlNp+mc6zL3E9zKWmF5sDHZ5MSsoTP9Wyz64AhEf9kD08xYJ7w6Hdcu8H550ircnPyWSIF0Q=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.14.1.tgz"
"version" "7.14.1"
"@babel/template@^7.12.13", "@babel/template@^7.4.0":
"integrity" "sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA=="
"resolved" "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/code-frame" "^7.12.13"
"@babel/parser" "^7.12.13"
"@babel/types" "^7.12.13"
"@babel/traverse@^7.4.3":
"integrity" "sha512-dZ/a371EE5XNhTHomvtuLTUyx6UEoJmYX+DT5zBCQN3McHemsuIaKKYqsc/fs26BEkHs/lBZy0J571LP5z9kQA=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.0.tgz"
"version" "7.14.0"
dependencies:
"@babel/code-frame" "^7.12.13"
"@babel/generator" "^7.14.0"
"@babel/helper-function-name" "^7.12.13"
"@babel/helper-split-export-declaration" "^7.12.13"
"@babel/parser" "^7.14.0"
"@babel/types" "^7.14.0"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.12.13", "@babel/types@^7.14.0", "@babel/types@^7.14.1", "@babel/types@^7.4.0":
"integrity" "sha512-S13Qe85fzLs3gYRUnrpyeIrBJIMYv33qSTg1qoBwiG6nPKwUWAD9odSzWhEedpwOIzSEI6gbdQIWEMiCI42iBA=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.14.1.tgz"
"version" "7.14.1"
dependencies:
"@babel/helper-validator-identifier" "^7.14.0"
"to-fast-properties" "^2.0.0"
"@nodelib/fs.scandir@2.1.4":
"integrity" "sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz"
"version" "2.1.4"
dependencies:
"@nodelib/fs.stat" "2.0.4"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.4":
"integrity" "sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz"
"version" "2.0.4"
"@nodelib/fs.walk@^1.2.3":
"integrity" "sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz"
"version" "1.2.6"
dependencies:
"@nodelib/fs.scandir" "2.1.4"
"fastq" "^1.6.0"
"@oclif/command@^1", "@oclif/command@^1.5.20", "@oclif/command@^1.6.0", "@oclif/command@^1.8.0":
"integrity" "sha512-5vwpq6kbvwkQwKqAoOU3L72GZ3Ta8RRrewKj9OJRolx28KLJJ8Dg9Rf7obRwt5jQA9bkYd8gqzMTrI7H3xLfaw=="
"resolved" "https://registry.npmjs.org/@oclif/command/-/command-1.8.0.tgz"
"version" "1.8.0"
dependencies:
"@oclif/config" "^1.15.1"
"@oclif/errors" "^1.3.3"
"@oclif/parser" "^3.8.3"
"@oclif/plugin-help" "^3"
"debug" "^4.1.1"
"semver" "^7.3.2"
"@oclif/config@^1", "@oclif/config@^1.15.1", "@oclif/config@^1.17.0":
"integrity" "sha512-Lmfuf6ubjQ4ifC/9bz1fSCHc6F6E653oyaRXxg+lgT4+bYf9bk+nqrUpAbrXyABkCqgIBiFr3J4zR/kiFdE1PA=="
"resolved" "https://registry.npmjs.org/@oclif/config/-/config-1.17.0.tgz"
"version" "1.17.0"
dependencies:
"@oclif/errors" "^1.3.3"
"@oclif/parser" "^3.8.0"
"debug" "^4.1.1"
"globby" "^11.0.1"
"is-wsl" "^2.1.1"
"tslib" "^2.0.0"
"@oclif/dev-cli@^1":
"integrity" "sha512-272udZP+bG4qahoAcpWcMTJKiA+V42kRMqQM7n4tgW35brYb2UP5kK+p08PpF8sgSfRTV8MoJVJG9ax5kY82PA=="
"resolved" "https://registry.npmjs.org/@oclif/dev-cli/-/dev-cli-1.26.0.tgz"
"version" "1.26.0"
dependencies:
"@oclif/command" "^1.8.0"
"@oclif/config" "^1.17.0"
"@oclif/errors" "^1.3.3"
"@oclif/plugin-help" "^3.2.0"
"cli-ux" "^5.2.1"
"debug" "^4.1.1"
"find-yarn-workspace-root" "^2.0.0"
"fs-extra" "^8.1"
"github-slugger" "^1.2.1"
"lodash" "^4.17.11"
"normalize-package-data" "^3.0.0"
"qqjs" "^0.3.10"
"tslib" "^2.0.3"
"@oclif/errors@^1.2.1", "@oclif/errors@^1.2.2", "@oclif/errors@^1.3.3":
"integrity" "sha512-pJKXyEqwdfRTUdM8n5FIHiQQHg5ETM0Wlso8bF9GodczO40mF5Z3HufnYWJE7z8sGKxOeJCdbAVZbS8Y+d5GCw=="
"resolved" "https://registry.npmjs.org/@oclif/errors/-/errors-1.3.4.tgz"
"version" "1.3.4"
dependencies:
"clean-stack" "^3.0.0"
"fs-extra" "^8.1"
"indent-string" "^4.0.0"
"strip-ansi" "^6.0.0"
"wrap-ansi" "^7.0.0"
"@oclif/linewrap@^1.0.0":
"integrity" "sha512-Ups2dShK52xXa8w6iBWLgcjPJWjais6KPJQq3gQ/88AY6BXoTX+MIGFPrWQO1KLMiQfoTpcLnUwloN4brrVUHw=="
"resolved" "https://registry.npmjs.org/@oclif/linewrap/-/linewrap-1.0.0.tgz"
"version" "1.0.0"
"@oclif/parser@^3.8.0", "@oclif/parser@^3.8.3":
"integrity" "sha512-yojzeEfmSxjjkAvMRj0KzspXlMjCfBzNRPkWw8ZwOSoNWoJn+OCS/m/S+yfV6BvAM4u2lTzX9Y5rCbrFIgkJLg=="
"resolved" "https://registry.npmjs.org/@oclif/parser/-/parser-3.8.5.tgz"
"version" "3.8.5"
dependencies:
"@oclif/errors" "^1.2.2"
"@oclif/linewrap" "^1.0.0"
"chalk" "^2.4.2"
"tslib" "^1.9.3"
"@oclif/plugin-help@^3", "@oclif/plugin-help@^3.2.0":
"integrity" "sha512-SPZ8U8PBYK0n4srFjCLedk0jWU4QlxgEYLCXIBShJgOwPhTTQknkUlsEwaMIevvCU4iCQZhfMX+D8Pz5GZjFgA=="
"resolved" "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-3.2.2.tgz"
"version" "3.2.2"
dependencies:
"@oclif/command" "^1.5.20"
"@oclif/config" "^1.15.1"
"@oclif/errors" "^1.2.2"
"chalk" "^4.1.0"
"indent-string" "^4.0.0"
"lodash.template" "^4.4.0"
"string-width" "^4.2.0"
"strip-ansi" "^6.0.0"
"widest-line" "^3.1.0"
"wrap-ansi" "^4.0.0"
"@oclif/screen@^1.0.3":
"integrity" "sha512-60CHpq+eqnTxLZQ4PGHYNwUX572hgpMHGPtTWMjdTMsAvlm69lZV/4ly6O3sAYkomo4NggGcomrDpBe34rxUqw=="
"resolved" "https://registry.npmjs.org/@oclif/screen/-/screen-1.0.4.tgz"
"version" "1.0.4"
"@oclif/test@^1":
"integrity" "sha512-HCh0qPge1JCqTEw4s2ScnicEZd4Ro4/0VvdjpsfCiX6fuDV53fRZ2uqLTgxKGHrVoqOZnVrRZHyhFyEsFGs+zQ=="
"resolved" "https://registry.npmjs.org/@oclif/test/-/test-1.2.8.tgz"
"version" "1.2.8"
dependencies:
"fancy-test" "^1.4.3"
"@sinonjs/commons@^1.7.0":
"integrity" "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ=="
"resolved" "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz"
"version" "1.8.3"
dependencies:
"type-detect" "4.0.8"
"@sinonjs/fake-timers@^7.0.4":
"integrity" "sha512-fUt6b15bjV/VW93UP5opNXJxdwZSbK1EdiwnhN7XrQrcpaOhMJpZ/CjwFpM3THpxwA+YviBUJKSuEqKlCK5alw=="
"resolved" "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-7.0.5.tgz"
"version" "7.0.5"
dependencies:
"@sinonjs/commons" "^1.7.0"
"@types/chai@*", "@types/chai@^4":
"integrity" "sha512-LaiwWNnYuL8xJlQcE91QB2JoswWZckq9A4b+nMPq8dt8AP96727Nb3X4e74u+E3tm4NLTILNI9MYFsyVc30wSA=="
"resolved" "https://registry.npmjs.org/@types/chai/-/chai-4.2.17.tgz"
"version" "4.2.17"
"@types/eslint-visitor-keys@^1.0.0":
"integrity" "sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag=="
"resolved" "https://registry.npmjs.org/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz"
"version" "1.0.0"
"@types/glob@^7.1.1":
"integrity" "sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w=="
"resolved" "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz"
"version" "7.1.3"
dependencies:
"@types/minimatch" "*"
"@types/node" "*"
"@types/json-schema@^7.0.3":
"integrity" "sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA=="
"resolved" "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz"
"version" "7.0.7"
"@types/lodash@*":
"integrity" "sha512-oVfRvqHV/V6D1yifJbVRU3TMp8OT6o6BG+U9MkwuJ3U8/CsDHvalRpsxBqivn71ztOFZBTfJMvETbqHiaNSj7Q=="
"resolved" "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.168.tgz"
"version" "4.14.168"
"@types/minimatch@*":
"integrity" "sha512-1z8k4wzFnNjVK/tlxvrWuK5WMt6mydWWP7+zvH5eFep4oj+UkrfiJTRtjCeBXNpwaA/FYqqtb4/QS4ianFpIRA=="
"resolved" "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.4.tgz"
"version" "3.0.4"
"@types/mocha@^5":
"integrity" "sha512-NYrtPht0wGzhwe9+/idPaBB+TqkY9AhTvOLMkThm0IoEfLaiVQZwBwyJ5puCkO3AUCWrmcoePjp2mbFocKy4SQ=="
"resolved" "https://registry.npmjs.org/@types/mocha/-/mocha-5.2.7.tgz"
"version" "5.2.7"
"@types/node@*", "@types/node@^10":
"integrity" "sha512-7Uc8IRrL8yZz5ti45RaFxpbU8TxlzdC3HvxV+hOWo1EyLsuKv/w7y0n+TwZzwL3vdx3oZ2k3ubxPq131hNtXyg=="
"resolved" "https://registry.npmjs.org/@types/node/-/node-10.17.59.tgz"
"version" "10.17.59"
"@types/sinon@*":
"integrity" "sha512-jDZ55oCKxqlDmoTBBbBBEx+N8ZraUVhggMZ9T5t+6/Dh8/4NiOjSUfpLrPiEwxQDlAe3wpAkoXhWvE6LibtsMQ=="
"resolved" "https://registry.npmjs.org/@types/sinon/-/sinon-10.0.0.tgz"
"version" "10.0.0"
dependencies:
"@sinonjs/fake-timers" "^7.0.4"
"@typescript-eslint/eslint-plugin@^2.6.1":
"integrity" "sha512-4zY3Z88rEE99+CNvTbXSyovv2z9PNOVffTWD2W8QF5s2prBQtwN2zadqERcrHpcR7O/+KMI3fcTAmUUhK/iQcQ=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.34.0.tgz"
"version" "2.34.0"
dependencies:
"@typescript-eslint/experimental-utils" "2.34.0"
"functional-red-black-tree" "^1.0.1"
"regexpp" "^3.0.0"
"tsutils" "^3.17.1"
"@typescript-eslint/experimental-utils@2.34.0":
"integrity" "sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-2.34.0.tgz"
"version" "2.34.0"
dependencies:
"@types/json-schema" "^7.0.3"
"@typescript-eslint/typescript-estree" "2.34.0"
"eslint-scope" "^5.0.0"
"eslint-utils" "^2.0.0"
"@typescript-eslint/parser@^2.0.0", "@typescript-eslint/parser@^2.6.1":
"integrity" "sha512-03ilO0ucSD0EPTw2X4PntSIRFtDPWjrVq7C3/Z3VQHRC7+13YB55rcJI3Jt+YgeHbjUdJPcPa7b23rXCBokuyA=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-2.34.0.tgz"
"version" "2.34.0"
dependencies:
"@types/eslint-visitor-keys" "^1.0.0"
"@typescript-eslint/experimental-utils" "2.34.0"
"@typescript-eslint/typescript-estree" "2.34.0"
"eslint-visitor-keys" "^1.1.0"
"@typescript-eslint/typescript-estree@2.34.0":
"integrity" "sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-2.34.0.tgz"
"version" "2.34.0"
dependencies:
"debug" "^4.1.1"
"eslint-visitor-keys" "^1.1.0"
"glob" "^7.1.6"
"is-glob" "^4.0.1"
"lodash" "^4.17.15"
"semver" "^7.3.2"
"tsutils" "^3.17.1"
"acorn-jsx@^5.0.0":
"integrity" "sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng=="
"resolved" "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz"
"version" "5.3.1"
"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", "acorn@^6.0.7":
"integrity" "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz"
"version" "6.4.2"
"ajv@^6.10.2", "ajv@^6.9.1":
"integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="
"resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
"version" "6.12.6"
dependencies:
"fast-deep-equal" "^3.1.1"
"fast-json-stable-stringify" "^2.0.0"
"json-schema-traverse" "^0.4.1"
"uri-js" "^4.2.2"
"ansi-escapes@^3.1.0":
"integrity" "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ=="
"resolved" "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz"
"version" "3.2.0"
"ansi-escapes@^3.2.0":
"integrity" "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ=="
"resolved" "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz"
"version" "3.2.0"
"ansi-escapes@^4.3.0":
"integrity" "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ=="
"resolved" "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz"
"version" "4.3.2"
dependencies:
"type-fest" "^0.21.3"
"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@^4.1.0":
"integrity" "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz"
"version" "4.1.0"
"ansi-regex@^5.0.1":
"integrity" "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"
"version" "5.0.1"
"ansi-styles@^3.2.0", "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-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"color-convert" "^2.0.1"
"ansi-styles@^4.1.0", "ansi-styles@^4.2.0":
"integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"color-convert" "^2.0.1"
"ansicolors@~0.3.2":
"integrity" "sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk="
"resolved" "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz"
"version" "0.3.2"
"append-transform@^1.0.0":
"integrity" "sha512-P009oYkeHyU742iSZJzZZywj4QRJdnTWffaKuJQLablCZ1uz6/cW4yaRgcDaoQ+uwOxxnt0gRUcwfsNP2ri0gw=="
"resolved" "https://registry.npmjs.org/append-transform/-/append-transform-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"default-require-extensions" "^2.0.0"
"archy@^1.0.0":
"integrity" "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA="
"resolved" "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz"
"version" "1.0.0"
"arg@^4.1.0":
"integrity" "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA=="
"resolved" "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz"
"version" "4.1.3"
"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"
"array-union@^2.1.0":
"integrity" "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="
"resolved" "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz"
"version" "2.1.0"
"assertion-error@^1.1.0":
"integrity" "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw=="
"resolved" "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz"
"version" "1.1.0"
"astral-regex@^1.0.0":
"integrity" "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg=="
"resolved" "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz"
"version" "1.0.0"
"axios@^0.21.1":
"integrity" "sha512-JtoZ3Ndke/+Iwt5n+BgSli/3idTvpt5OjKyoCmz4LX5+lPiY5l7C1colYezhlxThjNa/NhngCUWZSZFypIFuaA=="
"resolved" "https://registry.npmjs.org/axios/-/axios-0.21.3.tgz"
"version" "0.21.3"
dependencies:
"follow-redirects" "^1.14.0"
"balanced-match@^1.0.0":
"integrity" "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
"resolved" "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"
"version" "1.0.2"
"base64-js@^1.3.1":
"integrity" "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
"resolved" "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz"
"version" "1.5.1"
"bl@^4.0.3":
"integrity" "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w=="
"resolved" "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz"
"version" "4.1.0"
dependencies:
"buffer" "^5.5.0"
"inherits" "^2.0.4"
"readable-stream" "^3.4.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@^3.0.1":
"integrity" "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A=="
"resolved" "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz"
"version" "3.0.2"
dependencies:
"fill-range" "^7.0.1"
"browser-stdout@1.3.1":
"integrity" "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw=="
"resolved" "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz"
"version" "1.3.1"
"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"
"buffer@^5.5.0":
"integrity" "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ=="
"resolved" "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz"
"version" "5.7.1"
dependencies:
"base64-js" "^1.3.1"
"ieee754" "^1.1.13"
"caching-transform@^3.0.2":
"integrity" "sha512-Mtgcv3lh3U0zRii/6qVgQODdPA4G3zhG+jtbCWj39RXuUFTMzH0vcdMtaJS1jPowd+It2Pqr6y3NJMQqOqCE2w=="
"resolved" "https://registry.npmjs.org/caching-transform/-/caching-transform-3.0.2.tgz"
"version" "3.0.2"
dependencies:
"hasha" "^3.0.0"
"make-dir" "^2.0.0"
"package-hash" "^3.0.0"
"write-file-atomic" "^2.4.2"
"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@^5.0.0":
"integrity" "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
"resolved" "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz"
"version" "5.3.1"
"cardinal@^2.1.1":
"integrity" "sha1-fMEFXYItISlU0HsIXeolHMe8VQU="
"resolved" "https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz"
"version" "2.1.1"
dependencies:
"ansicolors" "~0.3.2"
"redeyed" "~2.1.0"
"chai@^4":
"integrity" "sha512-yS5H68VYOCtN1cjfwumDSuzn/9c+yza4f3reKXlE5rUg7SFcCEy90gJvydNgOYtblyf4Zi6jIWRnXOgErta0KA=="
"resolved" "https://registry.npmjs.org/chai/-/chai-4.3.4.tgz"
"version" "4.3.4"
dependencies:
"assertion-error" "^1.1.0"
"check-error" "^1.0.2"
"deep-eql" "^3.0.1"
"get-func-name" "^2.0.0"
"pathval" "^1.1.1"
"type-detect" "^4.0.5"
"chalk@^2.0.0", "chalk@^2.1.0", "chalk@^2.3.2", "chalk@^2.4.1", "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"
"chalk@^4.1.0":
"integrity" "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg=="
"resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz"
"version" "4.1.1"
dependencies:
"ansi-styles" "^4.1.0"
"supports-color" "^7.1.0"
"chardet@^0.7.0":
"integrity" "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA=="
"resolved" "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz"
"version" "0.7.0"
"check-error@^1.0.2":
"integrity" "sha1-V00xLt2Iu13YkS6Sht1sCu1KrII="
"resolved" "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz"
"version" "1.0.2"
"chownr@^1.1.1":
"integrity" "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg=="
"resolved" "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz"
"version" "1.1.4"
"clean-regexp@^1.0.0":
"integrity" "sha1-jffHquUf02h06PjQW5GAvBGj/tc="
"resolved" "https://registry.npmjs.org/clean-regexp/-/clean-regexp-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"escape-string-regexp" "^1.0.5"
"clean-stack@^3.0.0":
"integrity" "sha512-lR9wNiMRcVQjSB3a7xXGLuz4cr4wJuuXlaAEbRutGowQTmlp7R72/DOgN21e8jdwblMWl9UOJMJXarX94pzKdg=="
"resolved" "https://registry.npmjs.org/clean-stack/-/clean-stack-3.0.1.tgz"
"version" "3.0.1"
dependencies:
"escape-string-regexp" "4.0.0"
"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-progress@^3.4.0":
"integrity" "sha512-kLORQrhYCAtUPLZxqsAt2YJGOvRdt34+O6jl5cQGb7iF3dM55FQZlTR+rQyIK9JUcO9bBMwZsTlND+3dmFU2Cw=="
"resolved" "https://registry.npmjs.org/cli-progress/-/cli-progress-3.10.0.tgz"
"version" "3.10.0"
dependencies:
"string-width" "^4.2.0"
"cli-ux@^5.2.1":
"integrity" "sha512-t3DT1U1C3rArLGYLpKa3m9dr/8uKZRI8HRm/rXKL7UTjm4c+Yd9zHNWg1tP8uaJkUbhmvx5SQHwb3VWpPUVdHQ=="
"resolved" "https://registry.npmjs.org/cli-ux/-/cli-ux-5.5.1.tgz"
"version" "5.5.1"
dependencies:
"@oclif/command" "^1.6.0"
"@oclif/errors" "^1.2.1"
"@oclif/linewrap" "^1.0.0"
"@oclif/screen" "^1.0.3"
"ansi-escapes" "^4.3.0"
"ansi-styles" "^4.2.0"
"cardinal" "^2.1.1"
"chalk" "^4.1.0"
"clean-stack" "^3.0.0"
"cli-progress" "^3.4.0"
"extract-stack" "^2.0.0"
"fs-extra" "^8.1"
"hyperlinker" "^1.0.0"
"indent-string" "^4.0.0"
"is-wsl" "^2.2.0"
"js-yaml" "^3.13.1"
"lodash" "^4.17.11"
"natural-orderby" "^2.0.1"
"object-treeify" "^1.1.4"
"password-prompt" "^1.1.2"
"semver" "^7.3.2"
"string-width" "^4.2.0"
"strip-ansi" "^6.0.0"
"supports-color" "^7.1.0"
"supports-hyperlinks" "^2.1.0"
"tslib" "^2.0.0"
"cli-width@^2.0.0":
"integrity" "sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw=="
"resolved" "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz"
"version" "2.2.1"
"cliui@^5.0.0":
"integrity" "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA=="
"resolved" "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz"
"version" "5.0.0"
dependencies:
"string-width" "^3.1.0"
"strip-ansi" "^5.2.0"
"wrap-ansi" "^5.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"
"color-name@1.1.3":
"integrity" "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
"resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
"version" "1.1.3"
"commander@2.15.1":
"integrity" "sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag=="
"resolved" "https://registry.npmjs.org/commander/-/commander-2.15.1.tgz"
"version" "2.15.1"
"commondir@^1.0.1":
"integrity" "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs="
"resolved" "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz"
"version" "1.0.1"
"compare-versions@^3.6.0":
"integrity" "sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA=="
"resolved" "https://registry.npmjs.org/compare-versions/-/compare-versions-3.6.0.tgz"
"version" "3.6.0"
"concat-map@0.0.1":
"integrity" "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
"resolved" "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
"version" "0.0.1"
"content-type@^1.0.4":
"integrity" "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="
"resolved" "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz"
"version" "1.0.4"
"convert-source-map@^1.6.0":
"integrity" "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA=="
"resolved" "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz"
"version" "1.7.0"
dependencies:
"safe-buffer" "~5.1.1"
"cp-file@^6.2.0":
"integrity" "sha512-fmvV4caBnofhPe8kOcitBwSn2f39QLjnAnGq3gO9dfd75mUytzKNZB1hde6QHunW2Rt+OwuBOMc3i1tNElbszA=="
"resolved" "https://registry.npmjs.org/cp-file/-/cp-file-6.2.0.tgz"
"version" "6.2.0"
dependencies:
"graceful-fs" "^4.1.2"
"make-dir" "^2.0.0"
"nested-error-stacks" "^2.0.0"
"pify" "^4.0.1"
"safe-buffer" "^5.0.1"
"cross-spawn@^4":
"integrity" "sha1-e5JHYhwjrf3ThWAEqCPL45dCTUE="
"resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-4.0.2.tgz"
"version" "4.0.2"
dependencies:
"lru-cache" "^4.0.1"
"which" "^1.2.9"
"cross-spawn@^6.0.0", "cross-spawn@^6.0.5":
"integrity" "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ=="
"resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz"
"version" "6.0.5"
dependencies:
"nice-try" "^1.0.4"
"path-key" "^2.0.1"
"semver" "^5.5.0"
"shebang-command" "^1.2.0"
"which" "^1.2.9"
"debug@^4.0.1", "debug@^4.1.0", "debug@^4.1.1":
"integrity" "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ=="
"resolved" "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz"
"version" "4.3.4"
dependencies:
"ms" "2.1.2"
"debug@3.1.0":
"integrity" "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g=="
"resolved" "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"ms" "2.0.0"
"decamelize@^1.2.0":
"integrity" "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA="
"resolved" "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"
"version" "1.2.0"
"deep-eql@^3.0.1":
"integrity" "sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw=="
"resolved" "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz"
"version" "3.0.1"
dependencies:
"type-detect" "^4.0.0"
"deep-is@~0.1.3":
"integrity" "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ="
"resolved" "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz"
"version" "0.1.3"
"default-require-extensions@^2.0.0":
"integrity" "sha1-9fj7sYp9bVCyH2QfZJ67Uiz+JPc="
"resolved" "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"strip-bom" "^3.0.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"
"diff@^3.5.0", "diff@3.5.0":
"integrity" "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA=="
"resolved" "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz"
"version" "3.5.0"
"diff@^4.0.1":
"integrity" "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A=="
"resolved" "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz"
"version" "4.0.2"
"dir-glob@^3.0.1":
"integrity" "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA=="
"resolved" "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz"
"version" "3.0.1"
dependencies:
"path-type" "^4.0.0"
"doctrine@^3.0.0":
"integrity" "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w=="
"resolved" "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"esutils" "^2.0.2"
"dotenv@^9.0.0":
"integrity" "sha512-I9OvvrHp4pIARv4+x9iuewrWycX6CcZtoAu1XrzPxc5UygMJXJZYmBsynku8IkrJwgypE5DGNjDPmPRhDCptUg=="
"resolved" "https://registry.npmjs.org/dotenv/-/dotenv-9.0.2.tgz"
"version" "9.0.2"
"emoji-regex@^7.0.1":
"integrity" "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="
"resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz"
"version" "7.0.3"
"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"
"emoji-regex@>=6.0.0 <=6.1.1":
"integrity" "sha1-xs0OwbBkLio8Z6ETfvxeeW2k+I4="
"resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-6.1.1.tgz"
"version" "6.1.1"
"end-of-stream@^1.1.0", "end-of-stream@^1.4.1":
"integrity" "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q=="
"resolved" "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz"
"version" "1.4.4"
dependencies:
"once" "^1.4.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"
"es6-error@^4.0.1":
"integrity" "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg=="
"resolved" "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz"
"version" "4.1.1"
"escape-string-regexp@^1.0.5", "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"
"escape-string-regexp@4.0.0":
"integrity" "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="
"resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"
"version" "4.0.0"
"eslint-ast-utils@^1.0.0":
"integrity" "sha512-otzzTim2/1+lVrlH19EfQQJEhVJSu0zOb9ygb3iapN6UlyaDtyRq4b5U1FuW0v1lRa9Fp/GJyHkSwm6NqABgCA=="
"resolved" "https://registry.npmjs.org/eslint-ast-utils/-/eslint-ast-utils-1.1.0.tgz"
"version" "1.1.0"
dependencies:
"lodash.get" "^4.4.2"
"lodash.zip" "^4.2.0"
"eslint-config-oclif-typescript@^0.1":
"integrity" "sha512-BjXNJcH2F02MdaSFml9vJskviUFVkLHbTPGM5tinIt98H6klFNKP7/lQ+fB/Goc2wB45usEuuw6+l/fwAv9i7g=="
"resolved" "https://registry.npmjs.org/eslint-config-oclif-typescript/-/eslint-config-oclif-typescript-0.1.0.tgz"
"version" "0.1.0"
dependencies:
"@typescript-eslint/eslint-plugin" "^2.6.1"
"@typescript-eslint/parser" "^2.6.1"
"eslint-config-oclif" "^3.1.0"
"eslint-config-xo-space" "^0.20.0"
"eslint-plugin-mocha" "^5.2.0"
"eslint-plugin-node" "^7.0.1"
"eslint-plugin-unicorn" "^6.0.1"
"eslint-config-oclif@^3.1", "eslint-config-oclif@^3.1.0":
"integrity" "sha512-Tqgy43cNXsSdhTLWW4RuDYGFhV240sC4ISSv/ZiUEg/zFxExSEUpRE6J+AGnkKY9dYwIW4C9b2YSUVv8z/miMA=="
"resolved" "https://registry.npmjs.org/eslint-config-oclif/-/eslint-config-oclif-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"eslint-config-xo-space" "^0.20.0"
"eslint-plugin-mocha" "^5.2.0"
"eslint-plugin-node" "^7.0.1"
"eslint-plugin-unicorn" "^6.0.1"
"eslint-config-xo-space@^0.20.0":
"integrity" "sha512-bOsoZA8M6v1HviDUIGVq1fLVnSu3mMZzn85m2tqKb73tSzu4GKD4Jd2Py4ZKjCgvCbRRByEB5HPC3fTMnnJ1uw=="
"resolved" "https://registry.npmjs.org/eslint-config-xo-space/-/eslint-config-xo-space-0.20.0.tgz"
"version" "0.20.0"
dependencies:
"eslint-config-xo" "^0.24.0"
"eslint-config-xo@^0.24.0":
"integrity" "sha512-ivQ7qISScW6gfBp+p31nQntz1rg34UCybd3uvlngcxt5Utsf4PMMi9QoAluLFcPUM5Tvqk4JGraR9qu3msKPKQ=="
"resolved" "https://registry.npmjs.org/eslint-config-xo/-/eslint-config-xo-0.24.2.tgz"
"version" "0.24.2"
"eslint-plugin-es@^1.3.1":
"integrity" "sha512-5fa/gR2yR3NxQf+UXkeLeP8FBBl6tSgdrAz1+cF84v1FMM4twGwQoqTnn+QxFLcPOrF4pdKEJKDB/q9GoyJrCA=="
"resolved" "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-1.4.1.tgz"
"version" "1.4.1"
dependencies:
"eslint-utils" "^1.4.2"
"regexpp" "^2.0.1"
"eslint-plugin-mocha@^5.2.0":
"integrity" "sha512-3uwlJVLijjEmBeNyH60nzqgA1gacUWLUmcKV8PIGNvj1kwP/CTgAWQHn2ayyJVwziX+KETkr9opNwT1qD/RZ5A=="
"resolved" "https://registry.npmjs.org/eslint-plugin-mocha/-/eslint-plugin-mocha-5.3.0.tgz"
"version" "5.3.0"
dependencies:
"ramda" "^0.26.1"
"eslint-plugin-node@^7.0.1":
"integrity" "sha512-lfVw3TEqThwq0j2Ba/Ckn2ABdwmL5dkOgAux1rvOk6CO7A6yGyPI2+zIxN6FyNkp1X1X/BSvKOceD6mBWSj4Yw=="
"resolved" "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-7.0.1.tgz"
"version" "7.0.1"
dependencies:
"eslint-plugin-es" "^1.3.1"
"eslint-utils" "^1.3.1"
"ignore" "^4.0.2"
"minimatch" "^3.0.4"
"resolve" "^1.8.1"
"semver" "^5.5.0"
"eslint-plugin-unicorn@^6.0.1":
"integrity" "sha512-hjy9LhTdtL7pz8WTrzS0CGXRkWK3VAPLDjihofj8JC+uxQLfXm0WwZPPPB7xKmcjRyoH+jruPHOCrHNEINpG/Q=="
"resolved" "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-6.0.1.tgz"
"version" "6.0.1"
dependencies:
"clean-regexp" "^1.0.0"
"eslint-ast-utils" "^1.0.0"
"import-modules" "^1.1.0"
"lodash.camelcase" "^4.1.1"
"lodash.kebabcase" "^4.0.1"
"lodash.snakecase" "^4.0.1"
"lodash.upperfirst" "^4.2.0"
"safe-regex" "^1.1.0"
"eslint-scope@^4.0.3":
"integrity" "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg=="
"resolved" "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz"
"version" "4.0.3"
dependencies:
"esrecurse" "^4.1.0"
"estraverse" "^4.1.1"
"eslint-scope@^5.0.0":
"integrity" "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw=="
"resolved" "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz"
"version" "5.1.1"
dependencies:
"esrecurse" "^4.3.0"
"estraverse" "^4.1.1"
"eslint-utils@^1.3.1", "eslint-utils@^1.4.2":
"integrity" "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q=="
"resolved" "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz"
"version" "1.4.3"
dependencies:
"eslint-visitor-keys" "^1.1.0"
"eslint-utils@^2.0.0":
"integrity" "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg=="
"resolved" "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz"
"version" "2.1.0"
dependencies:
"eslint-visitor-keys" "^1.1.0"
"eslint-visitor-keys@^1.0.0", "eslint-visitor-keys@^1.1.0":
"integrity" "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ=="
"resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz"
"version" "1.3.0"
"eslint@*", "eslint@^5.0.0 || ^6.0.0", "eslint@^5.13", "eslint@^5.3.0", "eslint@>= 4.0.0", "eslint@>=4.19.1", "eslint@>=5.0.0", "eslint@>=5.3.0":
"integrity" "sha512-S3Rz11i7c8AA5JPv7xAH+dOyq/Cu/VXHiHXBPOU1k/JAM5dXqQPt3qcrhpHSorXmrpu2g0gkIBVXAqCpzfoZIg=="
"resolved" "https://registry.npmjs.org/eslint/-/eslint-5.16.0.tgz"
"version" "5.16.0"
dependencies:
"@babel/code-frame" "^7.0.0"
"ajv" "^6.9.1"
"chalk" "^2.1.0"
"cross-spawn" "^6.0.5"
"debug" "^4.0.1"
"doctrine" "^3.0.0"
"eslint-scope" "^4.0.3"
"eslint-utils" "^1.3.1"
"eslint-visitor-keys" "^1.0.0"
"espree" "^5.0.1"
"esquery" "^1.0.1"
"esutils" "^2.0.2"
"file-entry-cache" "^5.0.1"
"functional-red-black-tree" "^1.0.1"
"glob" "^7.1.2"
"globals" "^11.7.0"
"ignore" "^4.0.6"
"import-fresh" "^3.0.0"
"imurmurhash" "^0.1.4"
"inquirer" "^6.2.2"
"js-yaml" "^3.13.0"
"json-stable-stringify-without-jsonify" "^1.0.1"
"levn" "^0.3.0"
"lodash" "^4.17.11"
"minimatch" "^3.0.4"
"mkdirp" "^0.5.1"
"natural-compare" "^1.4.0"
"optionator" "^0.8.2"
"path-is-inside" "^1.0.2"
"progress" "^2.0.0"
"regexpp" "^2.0.1"
"semver" "^5.5.1"
"strip-ansi" "^4.0.0"
"strip-json-comments" "^2.0.1"