-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
6258 lines (5407 loc) · 243 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
"@angular-devkit/[email protected]":
"integrity" "sha1-RAS4bY29tBoOP5TLCP+GBODEmi4="
"resolved" "https://registry.nlark.com/@angular-devkit/core/download/@angular-devkit/core-11.2.4.tgz"
"version" "11.2.4"
dependencies:
"ajv" "6.12.6"
"fast-json-stable-stringify" "2.1.0"
"magic-string" "0.25.7"
"rxjs" "6.6.3"
"source-map" "0.7.3"
"@angular-devkit/[email protected]":
"integrity" "sha1-+Q38xyBM3Fjfy5kBziZcXJwKXfo="
"resolved" "https://registry.nlark.com/@angular-devkit/core/download/@angular-devkit/core-11.2.6.tgz"
"version" "11.2.6"
dependencies:
"ajv" "6.12.6"
"fast-json-stable-stringify" "2.1.0"
"magic-string" "0.25.7"
"rxjs" "6.6.3"
"source-map" "0.7.3"
"@angular-devkit/[email protected]":
"integrity" "sha1-UbkBKRO+lLboBjoviDn35LZSBXs="
"resolved" "https://registry.nlark.com/@angular-devkit/schematics-cli/download/@angular-devkit/schematics-cli-0.1102.6.tgz"
"version" "0.1102.6"
dependencies:
"@angular-devkit/core" "11.2.6"
"@angular-devkit/schematics" "11.2.6"
"@schematics/schematics" "0.1102.6"
"ansi-colors" "4.1.1"
"inquirer" "7.3.3"
"minimist" "1.2.5"
"symbol-observable" "3.0.0"
"@angular-devkit/[email protected]":
"integrity" "sha1-umfug1zrIQd38f7s6GGV8owbLpY="
"resolved" "https://registry.nlark.com/@angular-devkit/schematics/download/@angular-devkit/schematics-11.2.4.tgz"
"version" "11.2.4"
dependencies:
"@angular-devkit/core" "11.2.4"
"ora" "5.3.0"
"rxjs" "6.6.3"
"@angular-devkit/[email protected]":
"integrity" "sha1-WQja72CvLl2Y/XWsP+d8AqsUT6M="
"resolved" "https://registry.nlark.com/@angular-devkit/schematics/download/@angular-devkit/schematics-11.2.6.tgz"
"version" "11.2.6"
dependencies:
"@angular-devkit/core" "11.2.6"
"ora" "5.3.0"
"rxjs" "6.6.3"
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.14.5", "@babel/code-frame@^7.8.3":
"integrity" "sha1-I7CNdA6D9JxeWZRfvxtD6Au/Tts="
"resolved" "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623280355998&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/highlight" "^7.14.5"
"@babel/[email protected]":
"integrity" "sha1-9K1DWqJj25NbjxDyxVLSP7cWpj8="
"resolved" "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.12.11.tgz?cache=0&sync_timestamp=1623280355998&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.12.11.tgz"
"version" "7.12.11"
dependencies:
"@babel/highlight" "^7.10.4"
"@babel/compat-data@^7.14.5":
"integrity" "sha1-ewR9ejqJpn0iWNxh9gTwmPG8fgg="
"resolved" "https://registry.nlark.com/@babel/compat-data/download/@babel/compat-data-7.14.7.tgz"
"version" "7.14.7"
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.1.0", "@babel/core@^7.7.5":
"integrity" "sha1-4IFOwalQAy/xbBOich3jmoQW/Ks="
"resolved" "https://registry.nlark.com/@babel/core/download/@babel/core-7.14.6.tgz?cache=0&sync_timestamp=1623708890157&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.14.6.tgz"
"version" "7.14.6"
dependencies:
"@babel/code-frame" "^7.14.5"
"@babel/generator" "^7.14.5"
"@babel/helper-compilation-targets" "^7.14.5"
"@babel/helper-module-transforms" "^7.14.5"
"@babel/helpers" "^7.14.6"
"@babel/parser" "^7.14.6"
"@babel/template" "^7.14.5"
"@babel/traverse" "^7.14.5"
"@babel/types" "^7.14.5"
"convert-source-map" "^1.7.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.1.2"
"semver" "^6.3.0"
"source-map" "^0.5.0"
"@babel/generator@^7.14.5":
"integrity" "sha1-hI17nwMcrKnQzQrwGwY/Im9S14U="
"resolved" "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.5.tgz?cache=0&sync_timestamp=1623280360946&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"jsesc" "^2.5.1"
"source-map" "^0.5.0"
"@babel/helper-compilation-targets@^7.14.5":
"integrity" "sha1-epnF0JZ5Eely/iw0EffVtJhJjs8="
"resolved" "https://registry.nlark.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/compat-data" "^7.14.5"
"@babel/helper-validator-option" "^7.14.5"
"browserslist" "^4.16.6"
"semver" "^6.3.0"
"@babel/helper-function-name@^7.14.5":
"integrity" "sha1-ieLEdJcvFdjiM7Uu6MSA4s/NUMQ="
"resolved" "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623280385237&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-get-function-arity" "^7.14.5"
"@babel/template" "^7.14.5"
"@babel/types" "^7.14.5"
"@babel/helper-get-function-arity@^7.14.5":
"integrity" "sha1-Jfv6V5sJN+7h87gF7OTOOYxDGBU="
"resolved" "https://registry.nlark.com/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.14.5.tgz?cache=0&sync_timestamp=1623280360950&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"@babel/helper-hoist-variables@^7.14.5":
"integrity" "sha1-4N0nwzp45XfXyIhJFqPn7x98f40="
"resolved" "https://registry.nlark.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.14.5.tgz?cache=0&sync_timestamp=1623280361512&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-hoist-variables%2Fdownload%2F%40babel%2Fhelper-hoist-variables-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"@babel/helper-member-expression-to-functions@^7.14.5":
"integrity" "sha1-l+ViRL65QhH+J3vYGOOjKcZveXA="
"resolved" "https://registry.nlark.com/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.14.7.tgz"
"version" "7.14.7"
dependencies:
"@babel/types" "^7.14.5"
"@babel/helper-module-imports@^7.14.5":
"integrity" "sha1-bRpE32o4yVeqfDEtoHZCnxG0IvM="
"resolved" "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz?cache=0&sync_timestamp=1623280362184&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"@babel/helper-module-transforms@^7.14.5":
"integrity" "sha1-feQvENeJtCPrkC69JAMcp3yx4Q4="
"resolved" "https://registry.nlark.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.14.5.tgz?cache=0&sync_timestamp=1623280992002&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-module-imports" "^7.14.5"
"@babel/helper-replace-supers" "^7.14.5"
"@babel/helper-simple-access" "^7.14.5"
"@babel/helper-split-export-declaration" "^7.14.5"
"@babel/helper-validator-identifier" "^7.14.5"
"@babel/template" "^7.14.5"
"@babel/traverse" "^7.14.5"
"@babel/types" "^7.14.5"
"@babel/helper-optimise-call-expression@^7.14.5":
"integrity" "sha1-8nOVqGGeBmWz8DZM3bQcJdcbSZw="
"resolved" "https://registry.nlark.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.14.5.tgz?cache=0&sync_timestamp=1623280360981&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0":
"integrity" "sha1-WsgizpfuxGdBq3ClF5ceRDpwxak="
"resolved" "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz"
"version" "7.14.5"
"@babel/helper-replace-supers@^7.14.5":
"integrity" "sha1-DswLA8Qc1We0Ak6gFhNMKEFKu5Q="
"resolved" "https://registry.nlark.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-member-expression-to-functions" "^7.14.5"
"@babel/helper-optimise-call-expression" "^7.14.5"
"@babel/traverse" "^7.14.5"
"@babel/types" "^7.14.5"
"@babel/helper-simple-access@^7.14.5":
"integrity" "sha1-ZuqFz1O6C05Yi6d/yBP1OryqQcQ="
"resolved" "https://registry.nlark.com/@babel/helper-simple-access/download/@babel/helper-simple-access-7.14.5.tgz?cache=0&sync_timestamp=1623280360968&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-simple-access%2Fdownload%2F%40babel%2Fhelper-simple-access-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"@babel/helper-split-export-declaration@^7.14.5":
"integrity" "sha1-IrI6VO9RwrdgXYUZMMGXbdC8aTo="
"resolved" "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623280365934&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"@babel/helper-validator-identifier@^7.14.5":
"integrity" "sha1-0PDid8US4Mk4J3+qhaOWjJpEwOg="
"resolved" "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz?cache=0&sync_timestamp=1623280518972&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-validator-identifier%2Fdownload%2F%40babel%2Fhelper-validator-identifier-7.14.5.tgz"
"version" "7.14.5"
"@babel/helper-validator-option@^7.14.5":
"integrity" "sha1-bnKh//GNXfy4eOHmLxoCHEty1aM="
"resolved" "https://registry.nlark.com/@babel/helper-validator-option/download/@babel/helper-validator-option-7.14.5.tgz"
"version" "7.14.5"
"@babel/helpers@^7.14.6":
"integrity" "sha1-W1gwa5XxtH4qAZlDT6hlj6bCFjU="
"resolved" "https://registry.nlark.com/@babel/helpers/download/@babel/helpers-7.14.6.tgz?cache=0&sync_timestamp=1623708882051&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelpers%2Fdownload%2F%40babel%2Fhelpers-7.14.6.tgz"
"version" "7.14.6"
dependencies:
"@babel/template" "^7.14.5"
"@babel/traverse" "^7.14.5"
"@babel/types" "^7.14.5"
"@babel/highlight@^7.10.4", "@babel/highlight@^7.14.5":
"integrity" "sha1-aGGlLwOWZAUAH2qlNKAaJNmejNk="
"resolved" "https://registry.nlark.com/@babel/highlight/download/@babel/highlight-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-validator-identifier" "^7.14.5"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/parser@^7.1.0", "@babel/parser@^7.14.5", "@babel/parser@^7.14.6", "@babel/parser@^7.14.7":
"integrity" "sha1-YJlyDIg5yoZaJjfmyFhS6tC9tZU="
"resolved" "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.7.tgz"
"version" "7.14.7"
"@babel/plugin-syntax-async-generators@^7.8.4":
"integrity" "sha1-qYP7Gusuw/btBCohD2QOkOeG/g0="
"resolved" "https://registry.npm.taobao.org/@babel/plugin-syntax-async-generators/download/@babel/plugin-syntax-async-generators-7.8.4.tgz"
"version" "7.8.4"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-bigint@^7.8.3":
"integrity" "sha1-TJpvZp9dDN8bkKFnHpoUa+UwDOo="
"resolved" "https://registry.npm.taobao.org/@babel/plugin-syntax-bigint/download/@babel/plugin-syntax-bigint-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-class-properties@^7.8.3":
"integrity" "sha1-tcmHJ0xKOoK4lxR5aTGmtTVErhA="
"resolved" "https://registry.npm.taobao.org/@babel/plugin-syntax-class-properties/download/@babel/plugin-syntax-class-properties-7.12.13.tgz?cache=0&sync_timestamp=1612314770269&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-syntax-class-properties%2Fdownload%2F%40babel%2Fplugin-syntax-class-properties-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/plugin-syntax-import-meta@^7.8.3":
"integrity" "sha1-7mATSMNw+jNNIge+FYd3SWUh/VE="
"resolved" "https://registry.npm.taobao.org/@babel/plugin-syntax-import-meta/download/@babel/plugin-syntax-import-meta-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-json-strings@^7.8.3":
"integrity" "sha1-AcohtmjNghjJ5kDLbdiMVBKyyWo="
"resolved" "https://registry.npm.taobao.org/@babel/plugin-syntax-json-strings/download/@babel/plugin-syntax-json-strings-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
"integrity" "sha1-ypHvRjA1MESLkGZSusLp/plB9pk="
"resolved" "https://registry.npm.taobao.org/@babel/plugin-syntax-logical-assignment-operators/download/@babel/plugin-syntax-logical-assignment-operators-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
"integrity" "sha1-Fn7XA2iIYIH3S1w2xlqIwDtm0ak="
"resolved" "https://registry.nlark.com/@babel/plugin-syntax-nullish-coalescing-operator/download/@babel/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-numeric-separator@^7.8.3":
"integrity" "sha1-ubBws+M1cM2f0Hun+pHA3Te5r5c="
"resolved" "https://registry.npm.taobao.org/@babel/plugin-syntax-numeric-separator/download/@babel/plugin-syntax-numeric-separator-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-object-rest-spread@^7.8.3":
"integrity" "sha1-YOIl7cvZimQDMqLnLdPmbxr1WHE="
"resolved" "https://registry.npm.taobao.org/@babel/plugin-syntax-object-rest-spread/download/@babel/plugin-syntax-object-rest-spread-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-optional-catch-binding@^7.8.3":
"integrity" "sha1-YRGiZbz7Ag6579D9/X0mQCue1sE="
"resolved" "https://registry.npm.taobao.org/@babel/plugin-syntax-optional-catch-binding/download/@babel/plugin-syntax-optional-catch-binding-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-optional-chaining@^7.8.3":
"integrity" "sha1-T2nCq5UWfgGAzVM2YT+MV4j31Io="
"resolved" "https://registry.npm.taobao.org/@babel/plugin-syntax-optional-chaining/download/@babel/plugin-syntax-optional-chaining-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-top-level-await@^7.8.3":
"integrity" "sha1-wc/a3DWmRiQAAfBhOCR7dBw02Uw="
"resolved" "https://registry.nlark.com/@babel/plugin-syntax-top-level-await/download/@babel/plugin-syntax-top-level-await-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/template@^7.14.5", "@babel/template@^7.3.3":
"integrity" "sha1-qbydizM1T/blWpxg0RCSAKaJdPQ="
"resolved" "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/code-frame" "^7.14.5"
"@babel/parser" "^7.14.5"
"@babel/types" "^7.14.5"
"@babel/traverse@^7.1.0", "@babel/traverse@^7.14.5":
"integrity" "sha1-ZAB8l3TP3Dq9I7B4C8GKPONjF1M="
"resolved" "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.7.tgz"
"version" "7.14.7"
dependencies:
"@babel/code-frame" "^7.14.5"
"@babel/generator" "^7.14.5"
"@babel/helper-function-name" "^7.14.5"
"@babel/helper-hoist-variables" "^7.14.5"
"@babel/helper-split-export-declaration" "^7.14.5"
"@babel/parser" "^7.14.7"
"@babel/types" "^7.14.5"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.0.0", "@babel/types@^7.14.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3":
"integrity" "sha1-O7mXuoKaIQTO2yBonEpbgSHTg/8="
"resolved" "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz?cache=0&sync_timestamp=1623280355970&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-validator-identifier" "^7.14.5"
"to-fast-properties" "^2.0.0"
"@bcoe/v8-coverage@^0.2.3":
"integrity" "sha1-daLotRy3WKdVPWgEpZMteqznXDk="
"resolved" "https://registry.npm.taobao.org/@bcoe/v8-coverage/download/@bcoe/v8-coverage-0.2.3.tgz"
"version" "0.2.3"
"@cnakazawa/watch@^1.0.3":
"integrity" "sha1-+GSuhQBND8q29QvpFBxNo2jRZWo="
"resolved" "https://registry.npm.taobao.org/@cnakazawa/watch/download/@cnakazawa/watch-1.0.4.tgz"
"version" "1.0.4"
dependencies:
"exec-sh" "^0.3.2"
"minimist" "^1.2.0"
"@eslint/eslintrc@^0.4.2":
"integrity" "sha1-9j0O8G9cDFfXbEq19j04NcUbAXk="
"resolved" "https://registry.nlark.com/@eslint/eslintrc/download/@eslint/eslintrc-0.4.2.tgz?cache=0&sync_timestamp=1622843858887&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40eslint%2Feslintrc%2Fdownload%2F%40eslint%2Feslintrc-0.4.2.tgz"
"version" "0.4.2"
dependencies:
"ajv" "^6.12.4"
"debug" "^4.1.1"
"espree" "^7.3.0"
"globals" "^13.9.0"
"ignore" "^4.0.6"
"import-fresh" "^3.2.1"
"js-yaml" "^3.13.1"
"minimatch" "^3.0.4"
"strip-json-comments" "^3.1.1"
"@humanwhocodes/config-array@^0.5.0":
"integrity" "sha1-FAeWfUxu7Nc4j4Os8er00Mbljvk="
"resolved" "https://registry.nlark.com/@humanwhocodes/config-array/download/@humanwhocodes/config-array-0.5.0.tgz"
"version" "0.5.0"
dependencies:
"@humanwhocodes/object-schema" "^1.2.0"
"debug" "^4.1.1"
"minimatch" "^3.0.4"
"@humanwhocodes/object-schema@^1.2.0":
"integrity" "sha1-h956+cIxgm/daKxyWPd8Qp4OX88="
"resolved" "https://registry.nlark.com/@humanwhocodes/object-schema/download/@humanwhocodes/object-schema-1.2.0.tgz"
"version" "1.2.0"
"@istanbuljs/load-nyc-config@^1.0.0":
"integrity" "sha1-/T2x1Z7PfPEh6AZQu4ZxL5tV7O0="
"resolved" "https://registry.npm.taobao.org/@istanbuljs/load-nyc-config/download/@istanbuljs/load-nyc-config-1.1.0.tgz"
"version" "1.1.0"
dependencies:
"camelcase" "^5.3.1"
"find-up" "^4.1.0"
"get-package-type" "^0.1.0"
"js-yaml" "^3.13.1"
"resolve-from" "^5.0.0"
"@istanbuljs/schema@^0.1.2":
"integrity" "sha1-5F44TkuOwWvOL9kDr3hFD2v37Jg="
"resolved" "https://registry.npm.taobao.org/@istanbuljs/schema/download/@istanbuljs/schema-0.1.3.tgz?cache=0&sync_timestamp=1613227112539&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40istanbuljs%2Fschema%2Fdownload%2F%40istanbuljs%2Fschema-0.1.3.tgz"
"version" "0.1.3"
"@jest/console@^26.6.2":
"integrity" "sha1-TgS8RkAUNYsDq0k3gF7jagrrmPI="
"resolved" "https://registry.nlark.com/@jest/console/download/@jest/console-26.6.2.tgz?cache=0&sync_timestamp=1624900521278&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-26.6.2.tgz"
"version" "26.6.2"
dependencies:
"@jest/types" "^26.6.2"
"@types/node" "*"
"chalk" "^4.0.0"
"jest-message-util" "^26.6.2"
"jest-util" "^26.6.2"
"slash" "^3.0.0"
"@jest/core@^26.6.3":
"integrity" "sha1-djn8s4M9dIpGVq2lS94ZMFHkX60="
"resolved" "https://registry.nlark.com/@jest/core/download/@jest/core-26.6.3.tgz?cache=0&sync_timestamp=1624900525850&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fcore%2Fdownload%2F%40jest%2Fcore-26.6.3.tgz"
"version" "26.6.3"
dependencies:
"@jest/console" "^26.6.2"
"@jest/reporters" "^26.6.2"
"@jest/test-result" "^26.6.2"
"@jest/transform" "^26.6.2"
"@jest/types" "^26.6.2"
"@types/node" "*"
"ansi-escapes" "^4.2.1"
"chalk" "^4.0.0"
"exit" "^0.1.2"
"graceful-fs" "^4.2.4"
"jest-changed-files" "^26.6.2"
"jest-config" "^26.6.3"
"jest-haste-map" "^26.6.2"
"jest-message-util" "^26.6.2"
"jest-regex-util" "^26.0.0"
"jest-resolve" "^26.6.2"
"jest-resolve-dependencies" "^26.6.3"
"jest-runner" "^26.6.3"
"jest-runtime" "^26.6.3"
"jest-snapshot" "^26.6.2"
"jest-util" "^26.6.2"
"jest-validate" "^26.6.2"
"jest-watcher" "^26.6.2"
"micromatch" "^4.0.2"
"p-each-series" "^2.1.0"
"rimraf" "^3.0.0"
"slash" "^3.0.0"
"strip-ansi" "^6.0.0"
"@jest/environment@^26.6.2":
"integrity" "sha1-ujZMxy4iHnnMjwqZVVv111d8+Sw="
"resolved" "https://registry.nlark.com/@jest/environment/download/@jest/environment-26.6.2.tgz?cache=0&sync_timestamp=1624900521252&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fenvironment%2Fdownload%2F%40jest%2Fenvironment-26.6.2.tgz"
"version" "26.6.2"
dependencies:
"@jest/fake-timers" "^26.6.2"
"@jest/types" "^26.6.2"
"@types/node" "*"
"jest-mock" "^26.6.2"
"@jest/fake-timers@^26.6.2":
"integrity" "sha1-RZwym89wzuSvTX4/PmeEgSNTWq0="
"resolved" "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-26.6.2.tgz?cache=0&sync_timestamp=1624900520683&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ffake-timers%2Fdownload%2F%40jest%2Ffake-timers-26.6.2.tgz"
"version" "26.6.2"
dependencies:
"@jest/types" "^26.6.2"
"@sinonjs/fake-timers" "^6.0.1"
"@types/node" "*"
"jest-message-util" "^26.6.2"
"jest-mock" "^26.6.2"
"jest-util" "^26.6.2"
"@jest/globals@^26.6.2":
"integrity" "sha1-W2E7eKGqJlWukI66Y4zJaiDfcgo="
"resolved" "https://registry.nlark.com/@jest/globals/download/@jest/globals-26.6.2.tgz"
"version" "26.6.2"
dependencies:
"@jest/environment" "^26.6.2"
"@jest/types" "^26.6.2"
"expect" "^26.6.2"
"@jest/reporters@^26.6.2":
"integrity" "sha1-H1GLmWN6Xxgwe9Ps+SdfaIKmZ/Y="
"resolved" "https://registry.nlark.com/@jest/reporters/download/@jest/reporters-26.6.2.tgz?cache=0&sync_timestamp=1624900523931&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Freporters%2Fdownload%2F%40jest%2Freporters-26.6.2.tgz"
"version" "26.6.2"
dependencies:
"@bcoe/v8-coverage" "^0.2.3"
"@jest/console" "^26.6.2"
"@jest/test-result" "^26.6.2"
"@jest/transform" "^26.6.2"
"@jest/types" "^26.6.2"
"chalk" "^4.0.0"
"collect-v8-coverage" "^1.0.0"
"exit" "^0.1.2"
"glob" "^7.1.2"
"graceful-fs" "^4.2.4"
"istanbul-lib-coverage" "^3.0.0"
"istanbul-lib-instrument" "^4.0.3"
"istanbul-lib-report" "^3.0.0"
"istanbul-lib-source-maps" "^4.0.0"
"istanbul-reports" "^3.0.2"
"jest-haste-map" "^26.6.2"
"jest-resolve" "^26.6.2"
"jest-util" "^26.6.2"
"jest-worker" "^26.6.2"
"slash" "^3.0.0"
"source-map" "^0.6.0"
"string-length" "^4.0.1"
"terminal-link" "^2.0.0"
"v8-to-istanbul" "^7.0.0"
optionalDependencies:
"node-notifier" "^8.0.0"
"@jest/source-map@^26.6.2":
"integrity" "sha1-Ka9eHi4yTK/MyTbyGDCfVKtp1TU="
"resolved" "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-26.6.2.tgz?cache=0&sync_timestamp=1624900517464&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-26.6.2.tgz"
"version" "26.6.2"
dependencies:
"callsites" "^3.0.0"
"graceful-fs" "^4.2.4"
"source-map" "^0.6.0"
"@jest/test-result@^26.6.2":
"integrity" "sha1-VdpYti3xNFdsyVR276X3lJ4/Xxg="
"resolved" "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-26.6.2.tgz?cache=0&sync_timestamp=1624900521625&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-26.6.2.tgz"
"version" "26.6.2"
dependencies:
"@jest/console" "^26.6.2"
"@jest/types" "^26.6.2"
"@types/istanbul-lib-coverage" "^2.0.0"
"collect-v8-coverage" "^1.0.0"
"@jest/test-sequencer@^26.6.3":
"integrity" "sha1-mOikUQCGOIbQdCBej/3Fp+tYKxc="
"resolved" "https://registry.nlark.com/@jest/test-sequencer/download/@jest/test-sequencer-26.6.3.tgz?cache=0&sync_timestamp=1624900525062&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-sequencer%2Fdownload%2F%40jest%2Ftest-sequencer-26.6.3.tgz"
"version" "26.6.3"
dependencies:
"@jest/test-result" "^26.6.2"
"graceful-fs" "^4.2.4"
"jest-haste-map" "^26.6.2"
"jest-runner" "^26.6.3"
"jest-runtime" "^26.6.3"
"@jest/transform@^26.6.2":
"integrity" "sha1-WsV8X6GtF7Kq6D5z5FgTiU3PLks="
"resolved" "https://registry.nlark.com/@jest/transform/download/@jest/transform-26.6.2.tgz?cache=0&sync_timestamp=1624900520808&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-26.6.2.tgz"
"version" "26.6.2"
dependencies:
"@babel/core" "^7.1.0"
"@jest/types" "^26.6.2"
"babel-plugin-istanbul" "^6.0.0"
"chalk" "^4.0.0"
"convert-source-map" "^1.4.0"
"fast-json-stable-stringify" "^2.0.0"
"graceful-fs" "^4.2.4"
"jest-haste-map" "^26.6.2"
"jest-regex-util" "^26.0.0"
"jest-util" "^26.6.2"
"micromatch" "^4.0.2"
"pirates" "^4.0.1"
"slash" "^3.0.0"
"source-map" "^0.6.1"
"write-file-atomic" "^3.0.0"
"@jest/types@^26.6.2":
"integrity" "sha1-vvWlMgMOHYii9abZM/hOlyJu1I4="
"resolved" "https://registry.nlark.com/@jest/types/download/@jest/types-26.6.2.tgz?cache=0&sync_timestamp=1624900516074&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-26.6.2.tgz"
"version" "26.6.2"
dependencies:
"@types/istanbul-lib-coverage" "^2.0.0"
"@types/istanbul-reports" "^3.0.0"
"@types/node" "*"
"@types/yargs" "^15.0.0"
"chalk" "^4.0.0"
"@nestjs/cli@^7.6.0":
"integrity" "sha1-Zh+ZtXgoT5EkMHqAd/AEoJGyXnc="
"resolved" "https://registry.npm.taobao.org/@nestjs/cli/download/@nestjs/cli-7.6.0.tgz"
"version" "7.6.0"
dependencies:
"@angular-devkit/core" "11.2.6"
"@angular-devkit/schematics" "11.2.6"
"@angular-devkit/schematics-cli" "0.1102.6"
"@nestjs/schematics" "^7.3.0"
"chalk" "3.0.0"
"chokidar" "3.5.1"
"cli-table3" "0.5.1"
"commander" "4.1.1"
"fork-ts-checker-webpack-plugin" "6.2.0"
"inquirer" "7.3.3"
"node-emoji" "1.10.0"
"ora" "5.4.0"
"os-name" "4.0.0"
"rimraf" "3.0.2"
"shelljs" "0.8.4"
"tree-kill" "1.2.2"
"tsconfig-paths" "3.9.0"
"tsconfig-paths-webpack-plugin" "3.5.1"
"typescript" "4.2.3"
"webpack" "5.28.0"
"webpack-node-externals" "2.5.2"
"@nestjs/common@^6.10.0 || ^7.0.0", "@nestjs/common@^6.8.0 || ^7.0.0", "@nestjs/common@^7.0.0", "@nestjs/common@^7.0.8", "@nestjs/common@^7.6.15":
"integrity" "sha1-2J5tJImF7sE69gUHqHJcshQtZgo="
"resolved" "https://registry.nlark.com/@nestjs/common/download/@nestjs/common-7.6.18.tgz?cache=0&sync_timestamp=1623921488725&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40nestjs%2Fcommon%2Fdownload%2F%40nestjs%2Fcommon-7.6.18.tgz"
"version" "7.6.18"
dependencies:
"axios" "0.21.1"
"iterare" "1.2.1"
"tslib" "2.2.0"
"uuid" "8.3.2"
"@nestjs/config@^0.6.3":
"integrity" "sha1-qwwNzPeWllCc7UY6iIVnIZwuW30="
"resolved" "https://registry.npm.taobao.org/@nestjs/config/download/@nestjs/config-0.6.3.tgz?cache=0&sync_timestamp=1612266712562&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40nestjs%2Fconfig%2Fdownload%2F%40nestjs%2Fconfig-0.6.3.tgz"
"version" "0.6.3"
dependencies:
"dotenv" "8.2.0"
"dotenv-expand" "5.1.0"
"lodash.get" "4.4.2"
"lodash.has" "4.5.2"
"lodash.set" "4.3.2"
"uuid" "8.3.2"
"@nestjs/core@^6.8.0 || ^7.0.0", "@nestjs/core@^7.0.0", "@nestjs/core@^7.6.15":
"integrity" "sha1-NkSPCuf30I8DLh5+U7SkyCroRNc="
"resolved" "https://registry.nlark.com/@nestjs/core/download/@nestjs/core-7.6.18.tgz?cache=0&sync_timestamp=1623921488828&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40nestjs%2Fcore%2Fdownload%2F%40nestjs%2Fcore-7.6.18.tgz"
"version" "7.6.18"
dependencies:
"@nuxtjs/opencollective" "0.3.2"
"fast-safe-stringify" "2.0.7"
"iterare" "1.2.1"
"object-hash" "2.1.1"
"path-to-regexp" "3.2.0"
"tslib" "2.2.0"
"uuid" "8.3.2"
"@nestjs/[email protected]":
"integrity" "sha1-5/4Djwvdp7j4WPp5yoUWuPkGmxo="
"resolved" "https://registry.npm.taobao.org/@nestjs/mapped-types/download/@nestjs/mapped-types-0.4.1.tgz"
"version" "0.4.1"
"@nestjs/platform-express@^7.0.0", "@nestjs/platform-express@^7.6.15":
"integrity" "sha1-zfRC39hZSPx7Z7vEAH3d74PN1Lk="
"resolved" "https://registry.nlark.com/@nestjs/platform-express/download/@nestjs/platform-express-7.6.18.tgz?cache=0&sync_timestamp=1623921483561&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40nestjs%2Fplatform-express%2Fdownload%2F%40nestjs%2Fplatform-express-7.6.18.tgz"
"version" "7.6.18"
dependencies:
"body-parser" "1.19.0"
"cors" "2.8.5"
"express" "4.17.1"
"multer" "1.4.2"
"tslib" "2.2.0"
"@nestjs/schematics@^7.3.0":
"integrity" "sha1-aLVZ0uaoqez2yYT4fqp9TjepEL4="
"resolved" "https://registry.npm.taobao.org/@nestjs/schematics/download/@nestjs/schematics-7.3.1.tgz"
"version" "7.3.1"
dependencies:
"@angular-devkit/core" "11.2.4"
"@angular-devkit/schematics" "11.2.4"
"fs-extra" "9.1.0"
"jsonc-parser" "3.0.0"
"pluralize" "8.0.0"
"@nestjs/swagger@^4.8.2":
"integrity" "sha1-Cgs8obJRRueXynet3Z+pf4JAbBw="
"resolved" "https://registry.nlark.com/@nestjs/swagger/download/@nestjs/swagger-4.8.2.tgz"
"version" "4.8.2"
dependencies:
"@nestjs/mapped-types" "0.4.1"
"lodash" "4.17.21"
"path-to-regexp" "3.2.0"
"@nestjs/terminus@^7.2.0":
"integrity" "sha1-c7CKoym482oMOhvCb3MLHLFLmo0="
"resolved" "https://registry.nlark.com/@nestjs/terminus/download/@nestjs/terminus-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"check-disk-space" "2.1.0"
"deprecate" "^1.1.1"
"@nestjs/testing@^7.6.15":
"integrity" "sha1-tME3tbbC+xjFFgLTOgg82XxkgoM="
"resolved" "https://registry.nlark.com/@nestjs/testing/download/@nestjs/testing-7.6.18.tgz?cache=0&sync_timestamp=1623921488670&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40nestjs%2Ftesting%2Fdownload%2F%40nestjs%2Ftesting-7.6.18.tgz"
"version" "7.6.18"
dependencies:
"optional" "0.1.4"
"tslib" "2.2.0"
"@nodelib/[email protected]":
"integrity" "sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U="
"resolved" "https://registry.nlark.com/@nodelib/fs.scandir/download/@nodelib/fs.scandir-2.1.5.tgz"
"version" "2.1.5"
dependencies:
"@nodelib/fs.stat" "2.0.5"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/[email protected]":
"integrity" "sha1-W9Jir5Tp0lvR5xsF3u1Eh2oiLos="
"resolved" "https://registry.nlark.com/@nodelib/fs.stat/download/@nodelib/fs.stat-2.0.5.tgz?cache=0&sync_timestamp=1622792772584&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40nodelib%2Ffs.stat%2Fdownload%2F%40nodelib%2Ffs.stat-2.0.5.tgz"
"version" "2.0.5"
"@nodelib/fs.walk@^1.2.3":
"integrity" "sha1-lMI9sY7kZT4Smr0m+wb4cKyeHuI="
"resolved" "https://registry.nlark.com/@nodelib/fs.walk/download/@nodelib/fs.walk-1.2.7.tgz"
"version" "1.2.7"
dependencies:
"@nodelib/fs.scandir" "2.1.5"
"fastq" "^1.6.0"
"@nuxtjs/[email protected]":
"integrity" "sha1-YgzhBE96x3GF6CXhk2EVuzjiaBw="
"resolved" "https://registry.npm.taobao.org/@nuxtjs/opencollective/download/@nuxtjs/opencollective-0.3.2.tgz"
"version" "0.3.2"
dependencies:
"chalk" "^4.1.0"
"consola" "^2.15.0"
"node-fetch" "^2.6.1"
"@schematics/[email protected]":
"integrity" "sha1-LOAvfBFVhHFijq/rNPqqf1q0siw="
"resolved" "https://registry.nlark.com/@schematics/schematics/download/@schematics/schematics-0.1102.6.tgz"
"version" "0.1102.6"
dependencies:
"@angular-devkit/core" "11.2.6"
"@angular-devkit/schematics" "11.2.6"
"@sinonjs/commons@^1.7.0":
"integrity" "sha1-OALd0hpQqUm2ch3dcto25n5/Gy0="
"resolved" "https://registry.npm.taobao.org/@sinonjs/commons/download/@sinonjs/commons-1.8.3.tgz?cache=0&sync_timestamp=1617868496285&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40sinonjs%2Fcommons%2Fdownload%2F%40sinonjs%2Fcommons-1.8.3.tgz"
"version" "1.8.3"
dependencies:
"type-detect" "4.0.8"
"@sinonjs/fake-timers@^6.0.1":
"integrity" "sha1-KTZ0/MsyYqx4LHqt/eyoaxDHXEA="
"resolved" "https://registry.nlark.com/@sinonjs/fake-timers/download/@sinonjs/fake-timers-6.0.1.tgz"
"version" "6.0.1"
dependencies:
"@sinonjs/commons" "^1.7.0"
"@tootallnate/once@1":
"integrity" "sha1-zLkURTYBeaBOf+av94wA/8Hur4I="
"resolved" "https://registry.npm.taobao.org/@tootallnate/once/download/@tootallnate/once-1.1.2.tgz"
"version" "1.1.2"
"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.7":
"integrity" "sha1-+q7vxBhexxw4n0UB7l7ISxcMxAI="
"resolved" "https://registry.nlark.com/@types/babel__core/download/@types/babel__core-7.1.14.tgz"
"version" "7.1.14"
dependencies:
"@babel/parser" "^7.1.0"
"@babel/types" "^7.0.0"
"@types/babel__generator" "*"
"@types/babel__template" "*"
"@types/babel__traverse" "*"
"@types/babel__generator@*":
"integrity" "sha1-89cReOGHhY98ReMDgPjxt0FaEtg="
"resolved" "https://registry.nlark.com/@types/babel__generator/download/@types/babel__generator-7.6.2.tgz"
"version" "7.6.2"
dependencies:
"@babel/types" "^7.0.0"
"@types/babel__template@*":
"integrity" "sha1-DIiN1ws+6e67bk8gDoCdoAdiYr4="
"resolved" "https://registry.nlark.com/@types/babel__template/download/@types/babel__template-7.4.0.tgz"
"version" "7.4.0"
dependencies:
"@babel/parser" "^7.1.0"
"@babel/types" "^7.0.0"
"@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6":
"integrity" "sha1-o0J3z4rL0xhep0Ep4fEASR6x2n8="
"resolved" "https://registry.nlark.com/@types/babel__traverse/download/@types/babel__traverse-7.14.0.tgz?cache=0&sync_timestamp=1624800709566&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fbabel__traverse%2Fdownload%2F%40types%2Fbabel__traverse-7.14.0.tgz"
"version" "7.14.0"
dependencies:
"@babel/types" "^7.3.0"
"@types/body-parser@*":
"integrity" "sha1-BoWzxH6zAG/+0RfN1VFkth+AU48="
"resolved" "https://registry.nlark.com/@types/body-parser/download/@types/body-parser-1.19.0.tgz"
"version" "1.19.0"
dependencies:
"@types/connect" "*"
"@types/node" "*"
"@types/connect@*":
"integrity" "sha1-FwpAIjptZmAG2TyhKK8r6x2bGQE="
"resolved" "https://registry.nlark.com/@types/connect/download/@types/connect-3.4.34.tgz"
"version" "3.4.34"
dependencies:
"@types/node" "*"
"@types/cookiejar@*":
"integrity" "sha1-Zq2TMfY/6KPT2djG45Bt0Q9kRug="
"resolved" "https://registry.nlark.com/@types/cookiejar/download/@types/cookiejar-2.1.2.tgz?cache=0&sync_timestamp=1621240798139&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fcookiejar%2Fdownload%2F%40types%2Fcookiejar-2.1.2.tgz"
"version" "2.1.2"
"@types/eslint-scope@^3.7.0":
"integrity" "sha1-R5KBbjERnr1QaQKkgsrsSVH6vYY="
"resolved" "https://registry.nlark.com/@types/eslint-scope/download/@types/eslint-scope-3.7.0.tgz"
"version" "3.7.0"
dependencies:
"@types/eslint" "*"
"@types/estree" "*"
"@types/eslint@*":
"integrity" "sha1-4MpyGbpd7UAgYq1vkm1JHrsp3VM="
"resolved" "https://registry.nlark.com/@types/eslint/download/@types/eslint-7.2.13.tgz"
"version" "7.2.13"
dependencies:
"@types/estree" "*"
"@types/json-schema" "*"
"@types/estree@*", "@types/estree@^0.0.46":
"integrity" "sha1-D7a/u+q9ejCIBQSZM2nEvx3qsf4="
"resolved" "https://registry.nlark.com/@types/estree/download/@types/estree-0.0.46.tgz?cache=0&sync_timestamp=1625189545611&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Festree%2Fdownload%2F%40types%2Festree-0.0.46.tgz"
"version" "0.0.46"
"@types/express-serve-static-core@^4.17.18":
"integrity" "sha1-4BHFXePxfd8RYfeQBCoVxaIYdE0="
"resolved" "https://registry.nlark.com/@types/express-serve-static-core/download/@types/express-serve-static-core-4.17.22.tgz?cache=0&sync_timestamp=1624845710926&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fexpress-serve-static-core%2Fdownload%2F%40types%2Fexpress-serve-static-core-4.17.22.tgz"
"version" "4.17.22"
dependencies:
"@types/node" "*"
"@types/qs" "*"
"@types/range-parser" "*"
"@types/express@^4.17.11":
"integrity" "sha1-S8G/PNDP5tP28oU2SLQNt9VN41A="
"resolved" "https://registry.nlark.com/@types/express/download/@types/express-4.17.12.tgz?cache=0&sync_timestamp=1621962857897&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fexpress%2Fdownload%2F%40types%2Fexpress-4.17.12.tgz"
"version" "4.17.12"
dependencies:
"@types/body-parser" "*"
"@types/express-serve-static-core" "^4.17.18"
"@types/qs" "*"
"@types/serve-static" "*"
"@types/graceful-fs@^4.1.2":
"integrity" "sha1-If+6DZjaQ1DbZIkfkqnl2zzbThU="
"resolved" "https://registry.nlark.com/@types/graceful-fs/download/@types/graceful-fs-4.1.5.tgz"
"version" "4.1.5"
dependencies:
"@types/node" "*"
"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1":
"integrity" "sha1-S6jdtyAiH0MuRDvV+RF/0iz9R2I="
"resolved" "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz"
"version" "2.0.3"
"@types/istanbul-lib-report@*":
"integrity" "sha1-wUwk8Y6oGQwRjudWK3/5mjZVJoY="
"resolved" "https://registry.nlark.com/@types/istanbul-lib-report/download/@types/istanbul-lib-report-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"@types/istanbul-lib-coverage" "*"
"@types/istanbul-reports@^3.0.0":
"integrity" "sha1-kVP+mLuivVZaY63ZQ21vDX+EaP8="
"resolved" "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-3.0.1.tgz"
"version" "3.0.1"
dependencies:
"@types/istanbul-lib-report" "*"
"@types/jest@^26.0.22":
"integrity" "sha1-obfqs8UDuARR0BnvtYjsY1Iu5Oc="
"resolved" "https://registry.nlark.com/@types/jest/download/@types/jest-26.0.23.tgz?cache=0&sync_timestamp=1621241459407&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fjest%2Fdownload%2F%40types%2Fjest-26.0.23.tgz"
"version" "26.0.23"
dependencies:
"jest-diff" "^26.0.0"
"pretty-format" "^26.0.0"
"@types/js-yaml@^4.0.1":
"integrity" "sha1-VURzC2WkgLGKzmts6RTlGc7C1Ds="
"resolved" "https://registry.nlark.com/@types/js-yaml/download/@types/js-yaml-4.0.1.tgz"
"version" "4.0.1"
"@types/json-schema@*", "@types/json-schema@^7.0.4", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.6", "@types/json-schema@^7.0.7":
"integrity" "sha1-mKmTUWyFnrDVxMjwmDF6nqaNua0="
"resolved" "https://registry.nlark.com/@types/json-schema/download/@types/json-schema-7.0.7.tgz"
"version" "7.0.7"
"@types/json5@^0.0.29":
"integrity" "sha1-7ihweulOEdK4J7y+UnC86n8+ce4="
"resolved" "https://registry.npm.taobao.org/@types/json5/download/@types/json5-0.0.29.tgz"
"version" "0.0.29"
"@types/mime@^1":
"integrity" "sha1-k+Jb+e51/g/YC1lLxP6w6GIRG1o="
"resolved" "https://registry.nlark.com/@types/mime/download/@types/mime-1.3.2.tgz"
"version" "1.3.2"
"@types/node@*":
"integrity" "sha1-BnpsSdx6XCQSpQVijiaQKulnv28="
"resolved" "https://registry.nlark.com/@types/node/download/@types/node-16.0.0.tgz"
"version" "16.0.0"
"@types/node@^14.17.4":
"integrity" "sha1-IYcSJCRG/IaNDgB68ppECMd2W8A="
"resolved" "https://registry.nlark.com/@types/node/download/@types/node-14.17.4.tgz"
"version" "14.17.4"
"@types/normalize-package-data@^2.4.0":
"integrity" "sha1-5IbQ2XOW15vu3QpuM/RTT/a0lz4="
"resolved" "https://registry.nlark.com/@types/normalize-package-data/download/@types/normalize-package-data-2.4.0.tgz?cache=0&sync_timestamp=1621242104575&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fnormalize-package-data%2Fdownload%2F%40types%2Fnormalize-package-data-2.4.0.tgz"
"version" "2.4.0"
"@types/parse-json@^4.0.0":
"integrity" "sha1-L4u0QUNNFjs1+4/9zNcTiSf/uMA="
"resolved" "https://registry.nlark.com/@types/parse-json/download/@types/parse-json-4.0.0.tgz?cache=0&sync_timestamp=1621242198435&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fparse-json%2Fdownload%2F%40types%2Fparse-json-4.0.0.tgz"
"version" "4.0.0"
"@types/prettier@^2.0.0":
"integrity" "sha1-VN2Ivcf0mVgylmavN3lWHkfV2rM="
"resolved" "https://registry.nlark.com/@types/prettier/download/@types/prettier-2.3.1.tgz"
"version" "2.3.1"
"@types/qs@*":
"integrity" "sha1-35w8izGiR+wxXmmWVmvjFx30s7E="
"resolved" "https://registry.nlark.com/@types/qs/download/@types/qs-6.9.6.tgz?cache=0&sync_timestamp=1621242292262&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fqs%2Fdownload%2F%40types%2Fqs-6.9.6.tgz"
"version" "6.9.6"
"@types/range-parser@*":
"integrity" "sha1-fuMwunyq+5gJC+zoal7kQRWQTCw="
"resolved" "https://registry.nlark.com/@types/range-parser/download/@types/range-parser-1.2.3.tgz"
"version" "1.2.3"
"@types/serve-static@*":
"integrity" "sha1-qs8oqFoF7imhH7fD6tk1rFbzPk4="
"resolved" "https://registry.nlark.com/@types/serve-static/download/@types/serve-static-1.13.9.tgz?cache=0&sync_timestamp=1621242704905&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fserve-static%2Fdownload%2F%40types%2Fserve-static-1.13.9.tgz"
"version" "1.13.9"
dependencies:
"@types/mime" "^1"
"@types/node" "*"
"@types/stack-utils@^2.0.0":
"integrity" "sha1-IPGClPeX8iCbX2XI47XI6CYdEnw="
"resolved" "https://registry.nlark.com/@types/stack-utils/download/@types/stack-utils-2.0.1.tgz"
"version" "2.0.1"
"@types/superagent@*":
"integrity" "sha1-+taMZxKTaJKtJM+U8vegfMdJ/Q8="
"resolved" "https://registry.nlark.com/@types/superagent/download/@types/superagent-4.1.12.tgz"
"version" "4.1.12"
dependencies:
"@types/cookiejar" "*"
"@types/node" "*"
"@types/supertest@^2.0.10":
"integrity" "sha1-LnD2nyILx3tPZg1ywuGkIx9Ep30="
"resolved" "https://registry.nlark.com/@types/supertest/download/@types/supertest-2.0.11.tgz?cache=0&sync_timestamp=1621243849893&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fsupertest%2Fdownload%2F%40types%2Fsupertest-2.0.11.tgz"
"version" "2.0.11"
dependencies:
"@types/superagent" "*"
"@types/validator@^13.1.3":
"integrity" "sha1-BVmvfwtus02s67NJCHxQPZMghfo="
"resolved" "https://registry.nlark.com/@types/validator/download/@types/validator-13.6.2.tgz"
"version" "13.6.2"
"@types/yargs-parser@*":
"integrity" "sha1-O5ziSJkZ2eT+pDm3aRarw0st8Sk="
"resolved" "https://registry.nlark.com/@types/yargs-parser/download/@types/yargs-parser-20.2.1.tgz"
"version" "20.2.1"
"@types/yargs@^15.0.0":
"integrity" "sha1-Jtgh3biecEkhYLZtEKDrbfj2+wY="
"resolved" "https://registry.nlark.com/@types/yargs/download/@types/yargs-15.0.14.tgz"
"version" "15.0.14"
dependencies:
"@types/yargs-parser" "*"
"@typescript-eslint/eslint-plugin@^4.19.0":
"integrity" "sha1-wEXkQBlq5FRk4I4gw4r/XDqCWUc="
"resolved" "https://registry.nlark.com/@typescript-eslint/eslint-plugin/download/@typescript-eslint/eslint-plugin-4.28.1.tgz"
"version" "4.28.1"
dependencies:
"@typescript-eslint/experimental-utils" "4.28.1"
"@typescript-eslint/scope-manager" "4.28.1"
"debug" "^4.3.1"
"functional-red-black-tree" "^1.0.1"
"regexpp" "^3.1.0"
"semver" "^7.3.5"
"tsutils" "^3.21.0"
"@typescript-eslint/[email protected]":
"integrity" "sha1-OGlIncyjwYUjxGAYuJluFZSNutw="
"resolved" "https://registry.nlark.com/@typescript-eslint/experimental-utils/download/@typescript-eslint/experimental-utils-4.28.1.tgz?cache=0&sync_timestamp=1624901710664&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Fexperimental-utils%2Fdownload%2F%40typescript-eslint%2Fexperimental-utils-4.28.1.tgz"
"version" "4.28.1"
dependencies:
"@types/json-schema" "^7.0.7"
"@typescript-eslint/scope-manager" "4.28.1"
"@typescript-eslint/types" "4.28.1"