-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpnpm-lock.yaml
8379 lines (8379 loc) · 339 KB
/
pnpm-lock.yaml
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
importers:
packages/commitlint-common-numbered-type:
devDependencies:
standard: registry.npmjs.org/standard/16.0.3
specifiers:
standard: 16.0.3
packages/commitlint-config-numbered-type:
dependencies:
'@dwmt/commitlint-common-numbered-type': 'link:../commitlint-common-numbered-type'
devDependencies:
standard: registry.npmjs.org/standard/16.0.3
specifiers:
'@dwmt/commitlint-common-numbered-type': 'workspace:*'
standard: 16.0.3
packages/commitlint-plugin-numbered-type:
dependencies:
'@dwmt/commitlint-common-numbered-type': 'link:../commitlint-common-numbered-type'
devDependencies:
jest: registry.npmjs.org/jest/26.6.3
standard: registry.npmjs.org/standard/16.0.3
specifiers:
'@dwmt/commitlint-common-numbered-type': 'workspace:*'
jest: 26.6.3
standard: 16.0.3
packages/experiments:
devDependencies:
'@commitlint/cli': registry.npmjs.org/@commitlint/cli/12.0.1
'@dwmt/commitlint-config-numbered-type': 'link:../commitlint-config-numbered-type'
'@dwmt/commitlint-plugin-numbered-type': 'link:../commitlint-plugin-numbered-type'
specifiers:
'@commitlint/cli': 12.0.1
'@dwmt/commitlint-config-numbered-type': 'workspace:*'
'@dwmt/commitlint-plugin-numbered-type': 'workspace:*'
lockfileVersion: 5.1
packages:
registry.npmjs.org/@babel/code-frame/7.12.13:
dependencies:
'@babel/highlight': registry.npmjs.org/@babel/highlight/7.13.8
dev: true
name: '@babel/code-frame'
resolution:
integrity: sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz'
version: 7.12.13
registry.npmjs.org/@babel/compat-data/7.13.8:
dev: true
name: '@babel/compat-data'
resolution:
integrity: sha512-EaI33z19T4qN3xLXsGf48M2cDqa6ei9tPZlfLdb2HC+e/cFtREiRd8hdSqDbwdLB0/+gLwqJmCYASH0z2bUdog==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.13.8.tgz'
version: 7.13.8
registry.npmjs.org/@babel/core/7.13.8_@babel+core@7.13.8:
dependencies:
'@babel/code-frame': registry.npmjs.org/@babel/code-frame/7.12.13
'@babel/generator': registry.npmjs.org/@babel/generator/7.13.9
'@babel/helper-compilation-targets': registry.npmjs.org/@babel/helper-compilation-targets/7.13.8_@babel+core@7.13.8
'@babel/helper-module-transforms': registry.npmjs.org/@babel/helper-module-transforms/7.13.0
'@babel/helpers': registry.npmjs.org/@babel/helpers/7.13.0
'@babel/parser': registry.npmjs.org/@babel/parser/7.13.9
'@babel/template': registry.npmjs.org/@babel/template/7.12.13
'@babel/traverse': registry.npmjs.org/@babel/traverse/7.13.0
'@babel/types': registry.npmjs.org/@babel/types/7.13.0
convert-source-map: registry.npmjs.org/convert-source-map/1.7.0
debug: registry.npmjs.org/debug/4.3.1
gensync: registry.npmjs.org/gensync/1.0.0-beta.2
json5: registry.npmjs.org/json5/2.2.0
lodash: registry.npmjs.org/lodash/4.17.21
semver: registry.npmjs.org/semver/6.3.0
source-map: registry.npmjs.org/source-map/0.5.7
dev: true
engines:
node: '>=6.9.0'
id: registry.npmjs.org/@babel/core/7.13.8
name: '@babel/core'
peerDependencies:
'@babel/core': '*'
resolution:
integrity: sha512-oYapIySGw1zGhEFRd6lzWNLWFX2s5dA/jm+Pw/+59ZdXtjyIuwlXbrId22Md0rgZVop+aVoqow2riXhBLNyuQg==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/core/-/core-7.13.8.tgz'
version: 7.13.8
registry.npmjs.org/@babel/generator/7.13.9:
dependencies:
'@babel/types': registry.npmjs.org/@babel/types/7.13.0
jsesc: registry.npmjs.org/jsesc/2.5.2
source-map: registry.npmjs.org/source-map/0.5.7
dev: true
name: '@babel/generator'
resolution:
integrity: sha512-mHOOmY0Axl/JCTkxTU6Lf5sWOg/v8nUa+Xkt4zMTftX0wqmb6Sh7J8gvcehBw7q0AhrhAR+FDacKjCZ2X8K+Sw==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/generator/-/generator-7.13.9.tgz'
version: 7.13.9
registry.npmjs.org/@babel/helper-compilation-targets/7.13.8_@babel+core@7.13.8:
dependencies:
'@babel/compat-data': registry.npmjs.org/@babel/compat-data/7.13.8
'@babel/core': registry.npmjs.org/@babel/core/7.13.8_@babel+core@7.13.8
'@babel/helper-validator-option': registry.npmjs.org/@babel/helper-validator-option/7.12.17
browserslist: registry.npmjs.org/browserslist/4.16.3
semver: registry.npmjs.org/semver/6.3.0
dev: true
id: registry.npmjs.org/@babel/helper-compilation-targets/7.13.8
name: '@babel/helper-compilation-targets'
peerDependencies:
'@babel/core': ^7.0.0
resolution:
integrity: sha512-pBljUGC1y3xKLn1nrx2eAhurLMA8OqBtBP/JwG4U8skN7kf8/aqwwxpV1N6T0e7r6+7uNitIa/fUxPFagSXp3A==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.8.tgz'
version: 7.13.8
registry.npmjs.org/@babel/helper-function-name/7.12.13:
dependencies:
'@babel/helper-get-function-arity': registry.npmjs.org/@babel/helper-get-function-arity/7.12.13
'@babel/template': registry.npmjs.org/@babel/template/7.12.13
'@babel/types': registry.npmjs.org/@babel/types/7.13.0
dev: true
name: '@babel/helper-function-name'
resolution:
integrity: sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz'
version: 7.12.13
registry.npmjs.org/@babel/helper-get-function-arity/7.12.13:
dependencies:
'@babel/types': registry.npmjs.org/@babel/types/7.13.0
dev: true
name: '@babel/helper-get-function-arity'
resolution:
integrity: sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz'
version: 7.12.13
registry.npmjs.org/@babel/helper-member-expression-to-functions/7.13.0:
dependencies:
'@babel/types': registry.npmjs.org/@babel/types/7.13.0
dev: true
name: '@babel/helper-member-expression-to-functions'
resolution:
integrity: sha512-yvRf8Ivk62JwisqV1rFRMxiSMDGnN6KH1/mDMmIrij4jztpQNRoHqqMG3U6apYbGRPJpgPalhva9Yd06HlUxJQ==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.0.tgz'
version: 7.13.0
registry.npmjs.org/@babel/helper-module-imports/7.12.13:
dependencies:
'@babel/types': registry.npmjs.org/@babel/types/7.13.0
dev: true
name: '@babel/helper-module-imports'
resolution:
integrity: sha512-NGmfvRp9Rqxy0uHSSVP+SRIW1q31a7Ji10cLBcqSDUngGentY4FRiHOFZFE1CLU5eiL0oE8reH7Tg1y99TDM/g==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.13.tgz'
version: 7.12.13
registry.npmjs.org/@babel/helper-module-transforms/7.13.0:
dependencies:
'@babel/helper-module-imports': registry.npmjs.org/@babel/helper-module-imports/7.12.13
'@babel/helper-replace-supers': registry.npmjs.org/@babel/helper-replace-supers/7.13.0
'@babel/helper-simple-access': registry.npmjs.org/@babel/helper-simple-access/7.12.13
'@babel/helper-split-export-declaration': registry.npmjs.org/@babel/helper-split-export-declaration/7.12.13
'@babel/helper-validator-identifier': registry.npmjs.org/@babel/helper-validator-identifier/7.12.11
'@babel/template': registry.npmjs.org/@babel/template/7.12.13
'@babel/traverse': registry.npmjs.org/@babel/traverse/7.13.0
'@babel/types': registry.npmjs.org/@babel/types/7.13.0
lodash: registry.npmjs.org/lodash/4.17.21
dev: true
name: '@babel/helper-module-transforms'
resolution:
integrity: sha512-Ls8/VBwH577+pw7Ku1QkUWIyRRNHpYlts7+qSqBBFCW3I8QteB9DxfcZ5YJpOwH6Ihe/wn8ch7fMGOP1OhEIvw==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.13.0.tgz'
version: 7.13.0
registry.npmjs.org/@babel/helper-optimise-call-expression/7.12.13:
dependencies:
'@babel/types': registry.npmjs.org/@babel/types/7.13.0
dev: true
name: '@babel/helper-optimise-call-expression'
resolution:
integrity: sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz'
version: 7.12.13
registry.npmjs.org/@babel/helper-plugin-utils/7.13.0:
dev: true
name: '@babel/helper-plugin-utils'
resolution:
integrity: sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz'
version: 7.13.0
registry.npmjs.org/@babel/helper-replace-supers/7.13.0:
dependencies:
'@babel/helper-member-expression-to-functions': registry.npmjs.org/@babel/helper-member-expression-to-functions/7.13.0
'@babel/helper-optimise-call-expression': registry.npmjs.org/@babel/helper-optimise-call-expression/7.12.13
'@babel/traverse': registry.npmjs.org/@babel/traverse/7.13.0
'@babel/types': registry.npmjs.org/@babel/types/7.13.0
dev: true
name: '@babel/helper-replace-supers'
resolution:
integrity: sha512-Segd5me1+Pz+rmN/NFBOplMbZG3SqRJOBlY+mA0SxAv6rjj7zJqr1AVr3SfzUVTLCv7ZLU5FycOM/SBGuLPbZw==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.13.0.tgz'
version: 7.13.0
registry.npmjs.org/@babel/helper-simple-access/7.12.13:
dependencies:
'@babel/types': registry.npmjs.org/@babel/types/7.13.0
dev: true
name: '@babel/helper-simple-access'
resolution:
integrity: sha512-0ski5dyYIHEfwpWGx5GPWhH35j342JaflmCeQmsPWcrOQDtCN6C1zKAVRFVbK53lPW2c9TsuLLSUDf0tIGJ5hA==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.13.tgz'
version: 7.12.13
registry.npmjs.org/@babel/helper-split-export-declaration/7.12.13:
dependencies:
'@babel/types': registry.npmjs.org/@babel/types/7.13.0
dev: true
name: '@babel/helper-split-export-declaration'
resolution:
integrity: sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz'
version: 7.12.13
registry.npmjs.org/@babel/helper-validator-identifier/7.12.11:
dev: true
name: '@babel/helper-validator-identifier'
resolution:
integrity: sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz'
version: 7.12.11
registry.npmjs.org/@babel/helper-validator-option/7.12.17:
dev: true
name: '@babel/helper-validator-option'
resolution:
integrity: sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz'
version: 7.12.17
registry.npmjs.org/@babel/helpers/7.13.0:
dependencies:
'@babel/template': registry.npmjs.org/@babel/template/7.12.13
'@babel/traverse': registry.npmjs.org/@babel/traverse/7.13.0
'@babel/types': registry.npmjs.org/@babel/types/7.13.0
dev: true
name: '@babel/helpers'
resolution:
integrity: sha512-aan1MeFPxFacZeSz6Ld7YZo5aPuqnKlD7+HZY75xQsueczFccP9A7V05+oe0XpLwHK3oLorPe9eaAUljL7WEaQ==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/helpers/-/helpers-7.13.0.tgz'
version: 7.13.0
registry.npmjs.org/@babel/highlight/7.13.8:
dependencies:
'@babel/helper-validator-identifier': registry.npmjs.org/@babel/helper-validator-identifier/7.12.11
chalk: registry.npmjs.org/chalk/2.4.2
js-tokens: registry.npmjs.org/js-tokens/4.0.0
dev: true
name: '@babel/highlight'
resolution:
integrity: sha512-4vrIhfJyfNf+lCtXC2ck1rKSzDwciqF7IWFhXXrSOUC2O5DrVp+w4c6ed4AllTxhTkUP5x2tYj41VaxdVMMRDw==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.8.tgz'
version: 7.13.8
registry.npmjs.org/@babel/parser/7.13.9:
dev: true
engines:
node: '>=6.0.0'
hasBin: true
name: '@babel/parser'
resolution:
integrity: sha512-nEUfRiARCcaVo3ny3ZQjURjHQZUo/JkEw7rLlSZy/psWGnvwXFtPcr6jb7Yb41DVW5LTe6KRq9LGleRNsg1Frw==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/parser/-/parser-7.13.9.tgz'
version: 7.13.9
registry.npmjs.org/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.13.8:
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.13.8_@babel+core@7.13.8
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.13.0
dev: true
id: registry.npmjs.org/@babel/plugin-syntax-async-generators/7.8.4
name: '@babel/plugin-syntax-async-generators'
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz'
version: 7.8.4
registry.npmjs.org/@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.13.8:
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.13.8_@babel+core@7.13.8
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.13.0
dev: true
id: registry.npmjs.org/@babel/plugin-syntax-bigint/7.8.3
name: '@babel/plugin-syntax-bigint'
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz'
version: 7.8.3
registry.npmjs.org/@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.13.8:
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.13.8_@babel+core@7.13.8
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.13.0
dev: true
id: registry.npmjs.org/@babel/plugin-syntax-class-properties/7.12.13
name: '@babel/plugin-syntax-class-properties'
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz'
version: 7.12.13
registry.npmjs.org/@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.13.8:
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.13.8_@babel+core@7.13.8
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.13.0
dev: true
id: registry.npmjs.org/@babel/plugin-syntax-import-meta/7.10.4
name: '@babel/plugin-syntax-import-meta'
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz'
version: 7.10.4
registry.npmjs.org/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.13.8:
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.13.8_@babel+core@7.13.8
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.13.0
dev: true
id: registry.npmjs.org/@babel/plugin-syntax-json-strings/7.8.3
name: '@babel/plugin-syntax-json-strings'
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz'
version: 7.8.3
registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.13.8:
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.13.8_@babel+core@7.13.8
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.13.0
dev: true
id: registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/7.10.4
name: '@babel/plugin-syntax-logical-assignment-operators'
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz'
version: 7.10.4
registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.13.8:
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.13.8_@babel+core@7.13.8
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.13.0
dev: true
id: registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3
name: '@babel/plugin-syntax-nullish-coalescing-operator'
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz'
version: 7.8.3
registry.npmjs.org/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.13.8:
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.13.8_@babel+core@7.13.8
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.13.0
dev: true
id: registry.npmjs.org/@babel/plugin-syntax-numeric-separator/7.10.4
name: '@babel/plugin-syntax-numeric-separator'
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz'
version: 7.10.4
registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.13.8:
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.13.8_@babel+core@7.13.8
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.13.0
dev: true
id: registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/7.8.3
name: '@babel/plugin-syntax-object-rest-spread'
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz'
version: 7.8.3
registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.13.8:
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.13.8_@babel+core@7.13.8
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.13.0
dev: true
id: registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/7.8.3
name: '@babel/plugin-syntax-optional-catch-binding'
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz'
version: 7.8.3
registry.npmjs.org/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.13.8:
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.13.8_@babel+core@7.13.8
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.13.0
dev: true
id: registry.npmjs.org/@babel/plugin-syntax-optional-chaining/7.8.3
name: '@babel/plugin-syntax-optional-chaining'
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz'
version: 7.8.3
registry.npmjs.org/@babel/plugin-syntax-top-level-await/7.12.13_@babel+core@7.13.8:
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.13.8_@babel+core@7.13.8
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.13.0
dev: true
id: registry.npmjs.org/@babel/plugin-syntax-top-level-await/7.12.13
name: '@babel/plugin-syntax-top-level-await'
peerDependencies:
'@babel/core': ^7.0.0-0
resolution:
integrity: sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz'
version: 7.12.13
registry.npmjs.org/@babel/template/7.12.13:
dependencies:
'@babel/code-frame': registry.npmjs.org/@babel/code-frame/7.12.13
'@babel/parser': registry.npmjs.org/@babel/parser/7.13.9
'@babel/types': registry.npmjs.org/@babel/types/7.13.0
dev: true
name: '@babel/template'
resolution:
integrity: sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz'
version: 7.12.13
registry.npmjs.org/@babel/traverse/7.13.0:
dependencies:
'@babel/code-frame': registry.npmjs.org/@babel/code-frame/7.12.13
'@babel/generator': registry.npmjs.org/@babel/generator/7.13.9
'@babel/helper-function-name': registry.npmjs.org/@babel/helper-function-name/7.12.13
'@babel/helper-split-export-declaration': registry.npmjs.org/@babel/helper-split-export-declaration/7.12.13
'@babel/parser': registry.npmjs.org/@babel/parser/7.13.9
'@babel/types': registry.npmjs.org/@babel/types/7.13.0
debug: registry.npmjs.org/debug/4.3.1
globals: registry.npmjs.org/globals/11.12.0
lodash: registry.npmjs.org/lodash/4.17.21
dev: true
name: '@babel/traverse'
resolution:
integrity: sha512-xys5xi5JEhzC3RzEmSGrs/b3pJW/o87SypZ+G/PhaE7uqVQNv/jlmVIBXuoh5atqQ434LfXV+sf23Oxj0bchJQ==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/traverse/-/traverse-7.13.0.tgz'
version: 7.13.0
registry.npmjs.org/@babel/types/7.13.0:
dependencies:
'@babel/helper-validator-identifier': registry.npmjs.org/@babel/helper-validator-identifier/7.12.11
lodash: registry.npmjs.org/lodash/4.17.21
to-fast-properties: registry.npmjs.org/to-fast-properties/2.0.0
dev: true
name: '@babel/types'
resolution:
integrity: sha512-hE+HE8rnG1Z6Wzo+MhaKE5lM5eMx71T4EHJgku2E3xIfaULhDcxiiRxUYgwX8qwP1BBSlag+TdGOt6JAidIZTA==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@babel/types/-/types-7.13.0.tgz'
version: 7.13.0
registry.npmjs.org/@bcoe/v8-coverage/0.2.3:
dev: true
name: '@bcoe/v8-coverage'
resolution:
integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz'
version: 0.2.3
registry.npmjs.org/@cnakazawa/watch/1.0.4:
dependencies:
exec-sh: registry.npmjs.org/exec-sh/0.3.4
minimist: registry.npmjs.org/minimist/1.2.5
dev: true
engines:
node: '>=0.1.95'
hasBin: true
name: '@cnakazawa/watch'
resolution:
integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz'
version: 1.0.4
registry.npmjs.org/@commitlint/cli/12.0.1:
dependencies:
'@commitlint/format': registry.npmjs.org/@commitlint/format/12.0.1
'@commitlint/lint': registry.npmjs.org/@commitlint/lint/12.0.1
'@commitlint/load': registry.npmjs.org/@commitlint/load/12.0.1
'@commitlint/read': registry.npmjs.org/@commitlint/read/12.0.1
'@commitlint/types': registry.npmjs.org/@commitlint/types/12.0.1
get-stdin: registry.npmjs.org/get-stdin/8.0.0
lodash: registry.npmjs.org/lodash/4.17.21
resolve-from: registry.npmjs.org/resolve-from/5.0.0
resolve-global: registry.npmjs.org/resolve-global/1.0.0
yargs: registry.npmjs.org/yargs/16.2.0
dev: true
engines:
node: '>=v10'
hasBin: true
name: '@commitlint/cli'
resolution:
integrity: sha512-V+cMYNHJOr40XT9Kvz3Vrz1Eh7QE1rjQrUbifawDAqcOrBJFuoXwU2SAcRtYFCSqFy9EhbreQGhZFs8dYb90KA==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@commitlint/cli/-/cli-12.0.1.tgz'
version: 12.0.1
registry.npmjs.org/@commitlint/ensure/12.0.1:
dependencies:
'@commitlint/types': registry.npmjs.org/@commitlint/types/12.0.1
lodash: registry.npmjs.org/lodash/4.17.21
dev: true
engines:
node: '>=v10'
name: '@commitlint/ensure'
resolution:
integrity: sha512-XdBq+q1YBBDxWIAEjE3Y1YMbzhUnUuSLAEWD8SU1xsvEpQXWRYwDlMBRkjO7funNWTdL0ZQSkZDzme70imYjbw==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@commitlint/ensure/-/ensure-12.0.1.tgz'
version: 12.0.1
registry.npmjs.org/@commitlint/execute-rule/12.0.1:
dev: true
engines:
node: '>=v10'
name: '@commitlint/execute-rule'
resolution:
integrity: sha512-JzyweYfZlFLtXpgP+btzSY3YAkGPg61TqUSYQqBr4+5IaVf1FruMm5v4D5eLu9dAJuNKUfHbM3AEfuEPiZ79pg==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-12.0.1.tgz'
version: 12.0.1
registry.npmjs.org/@commitlint/format/12.0.1:
dependencies:
'@commitlint/types': registry.npmjs.org/@commitlint/types/12.0.1
chalk: registry.npmjs.org/chalk/4.1.0
dev: true
engines:
node: '>=v10'
name: '@commitlint/format'
resolution:
integrity: sha512-rF79ipAxR8yFzPzG5tRoEZ//MRkyxCXj4JhpEjtdaCMBAXMssI8uazn3e5D8z4UFgSDe9qOnL0OmQvql7HTMoA==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@commitlint/format/-/format-12.0.1.tgz'
version: 12.0.1
registry.npmjs.org/@commitlint/is-ignored/12.0.1:
dependencies:
'@commitlint/types': registry.npmjs.org/@commitlint/types/12.0.1
semver: registry.npmjs.org/semver/7.3.4
dev: true
engines:
node: '>=v10'
name: '@commitlint/is-ignored'
resolution:
integrity: sha512-AplfLn5mX/kWTIiSolcOhTYcgphuGLX8FUr+HmyHBEqUkO36jt0z9caysH47fqU71ePtH63v1DWm+RYQ5RPDjg==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-12.0.1.tgz'
version: 12.0.1
registry.npmjs.org/@commitlint/lint/12.0.1:
dependencies:
'@commitlint/is-ignored': registry.npmjs.org/@commitlint/is-ignored/12.0.1
'@commitlint/parse': registry.npmjs.org/@commitlint/parse/12.0.1
'@commitlint/rules': registry.npmjs.org/@commitlint/rules/12.0.1
'@commitlint/types': registry.npmjs.org/@commitlint/types/12.0.1
dev: true
engines:
node: '>=v10'
name: '@commitlint/lint'
resolution:
integrity: sha512-1lKyRCq4ahJrY+Xxo8LsqCbALeJkodtEfpmYHeA5HpPMnK7lRSplLqOLcTCjoPfd4vO+gl6aDEZN+ow3YGQBOg==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@commitlint/lint/-/lint-12.0.1.tgz'
version: 12.0.1
registry.npmjs.org/@commitlint/load/12.0.1:
dependencies:
'@commitlint/execute-rule': registry.npmjs.org/@commitlint/execute-rule/12.0.1
'@commitlint/resolve-extends': registry.npmjs.org/@commitlint/resolve-extends/12.0.1
'@commitlint/types': registry.npmjs.org/@commitlint/types/12.0.1
chalk: registry.npmjs.org/chalk/4.1.0
cosmiconfig: registry.npmjs.org/cosmiconfig/7.0.0
lodash: registry.npmjs.org/lodash/4.17.21
resolve-from: registry.npmjs.org/resolve-from/5.0.0
dev: true
engines:
node: '>=v10'
name: '@commitlint/load'
resolution:
integrity: sha512-dX8KdCWn7w0bTkkk3zKQpe9X8vsTRa5EM+1ffF313wCX9b6tGa9vujhEHCkSzKAbbE2tFV64CHZygE7rtlHdIA==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@commitlint/load/-/load-12.0.1.tgz'
version: 12.0.1
registry.npmjs.org/@commitlint/message/12.0.1:
dev: true
engines:
node: '>=v10'
name: '@commitlint/message'
resolution:
integrity: sha512-fXuoxRC+NT1wEQi6p8oHfT7wvWIRgTk+udlRJnWTjmMpiYzVnMmmZfasdShirWr4TtxQtMyL+5DVgh7Y98kURw==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@commitlint/message/-/message-12.0.1.tgz'
version: 12.0.1
registry.npmjs.org/@commitlint/parse/12.0.1:
dependencies:
'@commitlint/types': registry.npmjs.org/@commitlint/types/12.0.1
conventional-changelog-angular: registry.npmjs.org/conventional-changelog-angular/5.0.12
conventional-commits-parser: registry.npmjs.org/conventional-commits-parser/3.2.1
dev: true
engines:
node: '>=v10'
name: '@commitlint/parse'
resolution:
integrity: sha512-7oEGASmzBnHir5jSIR7KephXrKh7rIi9a6RpH1tOT+CIENYvhe8EDtIy29qMt+RLa2LlaPF7YrAgaJRfzG0YDQ==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@commitlint/parse/-/parse-12.0.1.tgz'
version: 12.0.1
registry.npmjs.org/@commitlint/read/12.0.1:
dependencies:
'@commitlint/top-level': registry.npmjs.org/@commitlint/top-level/12.0.1
'@commitlint/types': registry.npmjs.org/@commitlint/types/12.0.1
fs-extra: registry.npmjs.org/fs-extra/9.1.0
git-raw-commits: registry.npmjs.org/git-raw-commits/2.0.10
dev: true
engines:
node: '>=v10'
name: '@commitlint/read'
resolution:
integrity: sha512-baa0YeD4QOctEuthLpExQSi9xPiw0kDPfUVHqp8I88iuIXJECeS8S1+1GBiz89e8dLN9zmEE+sN9vtJHdAp9YA==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@commitlint/read/-/read-12.0.1.tgz'
version: 12.0.1
registry.npmjs.org/@commitlint/resolve-extends/12.0.1:
dependencies:
import-fresh: registry.npmjs.org/import-fresh/3.3.0
lodash: registry.npmjs.org/lodash/4.17.21
resolve-from: registry.npmjs.org/resolve-from/5.0.0
resolve-global: registry.npmjs.org/resolve-global/1.0.0
dev: true
engines:
node: '>=v10'
name: '@commitlint/resolve-extends'
resolution:
integrity: sha512-Mvg0GDi/68Cqw893ha8uhxE8myHfPmiSSSi7d1x4VJNR4hoS37lBdX89kyx4i9NPmLfviY2cUJKTyK8ZrFznZw==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-12.0.1.tgz'
version: 12.0.1
registry.npmjs.org/@commitlint/rules/12.0.1:
dependencies:
'@commitlint/ensure': registry.npmjs.org/@commitlint/ensure/12.0.1
'@commitlint/message': registry.npmjs.org/@commitlint/message/12.0.1
'@commitlint/to-lines': registry.npmjs.org/@commitlint/to-lines/12.0.1
'@commitlint/types': registry.npmjs.org/@commitlint/types/12.0.1
dev: true
engines:
node: '>=v10'
name: '@commitlint/rules'
resolution:
integrity: sha512-A5O0ubNGugZR9WWxk5IVOLo07lpdUwhG5WkAW2lYpgZ7Z/2U4PLob9b4Ih1eHbQu+gnVeFr91k7F0DrpM7B8EQ==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@commitlint/rules/-/rules-12.0.1.tgz'
version: 12.0.1
registry.npmjs.org/@commitlint/to-lines/12.0.1:
dev: true
engines:
node: '>=v10'
name: '@commitlint/to-lines'
resolution:
integrity: sha512-XwcJ1jY7x2fhudzbGMpNQkTSMVrxWrI8bRMbVe3Abuu7RfYpFf7VXAlhtnLfxBoagaK7RxjC2+eRidp/3txQBg==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-12.0.1.tgz'
version: 12.0.1
registry.npmjs.org/@commitlint/top-level/12.0.1:
dependencies:
find-up: registry.npmjs.org/find-up/5.0.0
dev: true
engines:
node: '>=v10'
name: '@commitlint/top-level'
resolution:
integrity: sha512-rHdgt7U24GEau2/9i2vEAbksxkBRiVjHj5ECFL5dd0AJOIvaK++vMg4EF/ME0X/1yd9qVTHTNOl2Q4tTFK7VBQ==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@commitlint/top-level/-/top-level-12.0.1.tgz'
version: 12.0.1
registry.npmjs.org/@commitlint/types/12.0.1:
dependencies:
chalk: registry.npmjs.org/chalk/4.1.0
dev: true
engines:
node: '>=v10'
name: '@commitlint/types'
resolution:
integrity: sha512-FsNDMV0W7D19/ZbR412klpqAilXASx75Neqh7jPtK278IEwdukOg3vth1r5kTm+BjDScM7wMUEOwIW3NNfAtwg==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@commitlint/types/-/types-12.0.1.tgz'
version: 12.0.1
registry.npmjs.org/@eslint/eslintrc/0.2.2:
dependencies:
ajv: registry.npmjs.org/ajv/6.12.6
debug: registry.npmjs.org/debug/4.3.1
espree: registry.npmjs.org/espree/7.3.1
globals: registry.npmjs.org/globals/12.4.0
ignore: registry.npmjs.org/ignore/4.0.6
import-fresh: registry.npmjs.org/import-fresh/3.3.0
js-yaml: registry.npmjs.org/js-yaml/3.14.1
lodash: registry.npmjs.org/lodash/4.17.21
minimatch: registry.npmjs.org/minimatch/3.0.4
strip-json-comments: registry.npmjs.org/strip-json-comments/3.1.1
dev: true
engines:
node: ^10.12.0 || >=12.0.0
name: '@eslint/eslintrc'
resolution:
integrity: sha512-EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.2.tgz'
version: 0.2.2
registry.npmjs.org/@istanbuljs/load-nyc-config/1.1.0:
dependencies:
camelcase: registry.npmjs.org/camelcase/5.3.1
find-up: registry.npmjs.org/find-up/4.1.0
get-package-type: registry.npmjs.org/get-package-type/0.1.0
js-yaml: registry.npmjs.org/js-yaml/3.14.1
resolve-from: registry.npmjs.org/resolve-from/5.0.0
dev: true
engines:
node: '>=8'
name: '@istanbuljs/load-nyc-config'
resolution:
integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz'
version: 1.1.0
registry.npmjs.org/@istanbuljs/schema/0.1.3:
dev: true
engines:
node: '>=8'
name: '@istanbuljs/schema'
resolution:
integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz'
version: 0.1.3
registry.npmjs.org/@jest/console/26.6.2:
dependencies:
'@jest/types': registry.npmjs.org/@jest/types/26.6.2
'@types/node': registry.npmjs.org/@types/node/14.14.31
chalk: registry.npmjs.org/chalk/4.1.0
jest-message-util: registry.npmjs.org/jest-message-util/26.6.2
jest-util: registry.npmjs.org/jest-util/26.6.2
slash: registry.npmjs.org/slash/3.0.0
dev: true
engines:
node: '>= 10.14.2'
name: '@jest/console'
resolution:
integrity: sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz'
version: 26.6.2
registry.npmjs.org/@jest/core/26.6.3:
dependencies:
'@jest/console': registry.npmjs.org/@jest/console/26.6.2
'@jest/reporters': registry.npmjs.org/@jest/reporters/26.6.2
'@jest/test-result': registry.npmjs.org/@jest/test-result/26.6.2
'@jest/transform': registry.npmjs.org/@jest/transform/26.6.2
'@jest/types': registry.npmjs.org/@jest/types/26.6.2
'@types/node': registry.npmjs.org/@types/node/14.14.31
ansi-escapes: registry.npmjs.org/ansi-escapes/4.3.1
chalk: registry.npmjs.org/chalk/4.1.0
exit: registry.npmjs.org/exit/0.1.2
graceful-fs: registry.npmjs.org/graceful-fs/4.2.6
jest-changed-files: registry.npmjs.org/jest-changed-files/26.6.2
jest-config: registry.npmjs.org/jest-config/26.6.3
jest-haste-map: registry.npmjs.org/jest-haste-map/26.6.2
jest-message-util: registry.npmjs.org/jest-message-util/26.6.2
jest-regex-util: registry.npmjs.org/jest-regex-util/26.0.0
jest-resolve: registry.npmjs.org/jest-resolve/26.6.2_jest-resolve@26.6.2
jest-resolve-dependencies: registry.npmjs.org/jest-resolve-dependencies/26.6.3
jest-runner: registry.npmjs.org/jest-runner/26.6.3
jest-runtime: registry.npmjs.org/jest-runtime/26.6.3
jest-snapshot: registry.npmjs.org/jest-snapshot/26.6.2
jest-util: registry.npmjs.org/jest-util/26.6.2
jest-validate: registry.npmjs.org/jest-validate/26.6.2
jest-watcher: registry.npmjs.org/jest-watcher/26.6.2
micromatch: registry.npmjs.org/micromatch/4.0.2
p-each-series: registry.npmjs.org/p-each-series/2.2.0
rimraf: registry.npmjs.org/rimraf/3.0.2
slash: registry.npmjs.org/slash/3.0.0
strip-ansi: registry.npmjs.org/strip-ansi/6.0.0
dev: true
engines:
node: '>= 10.14.2'
name: '@jest/core'
resolution:
integrity: sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz'
version: 26.6.3
registry.npmjs.org/@jest/environment/26.6.2:
dependencies:
'@jest/fake-timers': registry.npmjs.org/@jest/fake-timers/26.6.2
'@jest/types': registry.npmjs.org/@jest/types/26.6.2
'@types/node': registry.npmjs.org/@types/node/14.14.31
jest-mock: registry.npmjs.org/jest-mock/26.6.2
dev: true
engines:
node: '>= 10.14.2'
name: '@jest/environment'
resolution:
integrity: sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz'
version: 26.6.2
registry.npmjs.org/@jest/fake-timers/26.6.2:
dependencies:
'@jest/types': registry.npmjs.org/@jest/types/26.6.2
'@sinonjs/fake-timers': registry.npmjs.org/@sinonjs/fake-timers/6.0.1
'@types/node': registry.npmjs.org/@types/node/14.14.31
jest-message-util: registry.npmjs.org/jest-message-util/26.6.2
jest-mock: registry.npmjs.org/jest-mock/26.6.2
jest-util: registry.npmjs.org/jest-util/26.6.2
dev: true
engines:
node: '>= 10.14.2'
name: '@jest/fake-timers'
resolution:
integrity: sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz'
version: 26.6.2
registry.npmjs.org/@jest/globals/26.6.2:
dependencies:
'@jest/environment': registry.npmjs.org/@jest/environment/26.6.2
'@jest/types': registry.npmjs.org/@jest/types/26.6.2
expect: registry.npmjs.org/expect/26.6.2
dev: true
engines:
node: '>= 10.14.2'
name: '@jest/globals'
resolution:
integrity: sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz'
version: 26.6.2
registry.npmjs.org/@jest/reporters/26.6.2:
dependencies:
'@bcoe/v8-coverage': registry.npmjs.org/@bcoe/v8-coverage/0.2.3
'@jest/console': registry.npmjs.org/@jest/console/26.6.2
'@jest/test-result': registry.npmjs.org/@jest/test-result/26.6.2
'@jest/transform': registry.npmjs.org/@jest/transform/26.6.2
'@jest/types': registry.npmjs.org/@jest/types/26.6.2
chalk: registry.npmjs.org/chalk/4.1.0
collect-v8-coverage: registry.npmjs.org/collect-v8-coverage/1.0.1
exit: registry.npmjs.org/exit/0.1.2
glob: registry.npmjs.org/glob/7.1.6
graceful-fs: registry.npmjs.org/graceful-fs/4.2.6
istanbul-lib-coverage: registry.npmjs.org/istanbul-lib-coverage/3.0.0
istanbul-lib-instrument: registry.npmjs.org/istanbul-lib-instrument/4.0.3
istanbul-lib-report: registry.npmjs.org/istanbul-lib-report/3.0.0
istanbul-lib-source-maps: registry.npmjs.org/istanbul-lib-source-maps/4.0.0
istanbul-reports: registry.npmjs.org/istanbul-reports/3.0.2
jest-haste-map: registry.npmjs.org/jest-haste-map/26.6.2
jest-resolve: registry.npmjs.org/jest-resolve/26.6.2_jest-resolve@26.6.2
jest-util: registry.npmjs.org/jest-util/26.6.2
jest-worker: registry.npmjs.org/jest-worker/26.6.2
slash: registry.npmjs.org/slash/3.0.0
source-map: registry.npmjs.org/source-map/0.6.1
string-length: registry.npmjs.org/string-length/4.0.1
terminal-link: registry.npmjs.org/terminal-link/2.1.1
v8-to-istanbul: registry.npmjs.org/v8-to-istanbul/7.1.0
dev: true
engines:
node: '>= 10.14.2'
name: '@jest/reporters'
optionalDependencies:
node-notifier: registry.npmjs.org/node-notifier/8.0.1
resolution:
integrity: sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz'
version: 26.6.2
registry.npmjs.org/@jest/source-map/26.6.2:
dependencies:
callsites: registry.npmjs.org/callsites/3.1.0
graceful-fs: registry.npmjs.org/graceful-fs/4.2.6
source-map: registry.npmjs.org/source-map/0.6.1
dev: true
engines:
node: '>= 10.14.2'
name: '@jest/source-map'
resolution:
integrity: sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz'
version: 26.6.2
registry.npmjs.org/@jest/test-result/26.6.2:
dependencies:
'@jest/console': registry.npmjs.org/@jest/console/26.6.2
'@jest/types': registry.npmjs.org/@jest/types/26.6.2
'@types/istanbul-lib-coverage': registry.npmjs.org/@types/istanbul-lib-coverage/2.0.3
collect-v8-coverage: registry.npmjs.org/collect-v8-coverage/1.0.1
dev: true
engines:
node: '>= 10.14.2'
name: '@jest/test-result'
resolution:
integrity: sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz'
version: 26.6.2
registry.npmjs.org/@jest/test-sequencer/26.6.3:
dependencies:
'@jest/test-result': registry.npmjs.org/@jest/test-result/26.6.2
graceful-fs: registry.npmjs.org/graceful-fs/4.2.6
jest-haste-map: registry.npmjs.org/jest-haste-map/26.6.2
jest-runner: registry.npmjs.org/jest-runner/26.6.3
jest-runtime: registry.npmjs.org/jest-runtime/26.6.3
dev: true
engines:
node: '>= 10.14.2'
name: '@jest/test-sequencer'
resolution:
integrity: sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz'
version: 26.6.3
registry.npmjs.org/@jest/transform/26.6.2:
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.13.8_@babel+core@7.13.8
'@jest/types': registry.npmjs.org/@jest/types/26.6.2
babel-plugin-istanbul: registry.npmjs.org/babel-plugin-istanbul/6.0.0
chalk: registry.npmjs.org/chalk/4.1.0
convert-source-map: registry.npmjs.org/convert-source-map/1.7.0
fast-json-stable-stringify: registry.npmjs.org/fast-json-stable-stringify/2.1.0
graceful-fs: registry.npmjs.org/graceful-fs/4.2.6
jest-haste-map: registry.npmjs.org/jest-haste-map/26.6.2
jest-regex-util: registry.npmjs.org/jest-regex-util/26.0.0
jest-util: registry.npmjs.org/jest-util/26.6.2
micromatch: registry.npmjs.org/micromatch/4.0.2
pirates: registry.npmjs.org/pirates/4.0.1
slash: registry.npmjs.org/slash/3.0.0
source-map: registry.npmjs.org/source-map/0.6.1
write-file-atomic: registry.npmjs.org/write-file-atomic/3.0.3
dev: true
engines:
node: '>= 10.14.2'
name: '@jest/transform'
resolution:
integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz'
version: 26.6.2
registry.npmjs.org/@jest/types/26.6.2:
dependencies:
'@types/istanbul-lib-coverage': registry.npmjs.org/@types/istanbul-lib-coverage/2.0.3
'@types/istanbul-reports': registry.npmjs.org/@types/istanbul-reports/3.0.0
'@types/node': registry.npmjs.org/@types/node/14.14.31
'@types/yargs': registry.npmjs.org/@types/yargs/15.0.13
chalk: registry.npmjs.org/chalk/4.1.0
dev: true
engines:
node: '>= 10.14.2'
name: '@jest/types'
resolution:
integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz'
version: 26.6.2
registry.npmjs.org/@sinonjs/commons/1.8.2:
dependencies:
type-detect: registry.npmjs.org/type-detect/4.0.8
dev: true
name: '@sinonjs/commons'
resolution:
integrity: sha512-sruwd86RJHdsVf/AtBoijDmUqJp3B6hF/DGC23C+JaegnDHaZyewCjoVGTdg3J0uz3Zs7NnIT05OBOmML72lQw==
registry: 'https://registry.npmjs.com/'
tarball: 'https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.2.tgz'
version: 1.8.2
registry.npmjs.org/@sinonjs/fake-timers/6.0.1:
dependencies:
'@sinonjs/commons': registry.npmjs.org/@sinonjs/commons/1.8.2
dev: true