-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage-lock.json
3470 lines (3470 loc) · 133 KB
/
package-lock.json
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
{
"name": "hackerlink-qf-maci",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@ethereumjs/common": {
"version": "2.6.0",
"resolved": "https://registry.npmmirror.com/@ethereumjs/common/download/@ethereumjs/common-2.6.0.tgz",
"integrity": "sha512-Cq2qS0FTu6O2VU1sgg+WyU9Ps0M6j/BEMHN+hRaECXCV/r0aI78u4N6p52QW/BDVhwWZpCdrvG8X7NJdzlpNUA==",
"requires": {
"crc-32": "^1.2.0",
"ethereumjs-util": "^7.1.3"
}
},
"@ethereumjs/tx": {
"version": "3.4.0",
"resolved": "https://registry.npmmirror.com/@ethereumjs/tx/download/@ethereumjs/tx-3.4.0.tgz",
"integrity": "sha512-WWUwg1PdjHKZZxPPo274ZuPsJCWV3SqATrEKQP1n2DrVYVP1aZIYpo/mFaA0BDoE0tIQmBeimRCEA0Lgil+yYw==",
"requires": {
"@ethereumjs/common": "^2.6.0",
"ethereumjs-util": "^7.1.3"
}
},
"@ethersproject/abi": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/abi/download/@ethersproject/abi-5.5.0.tgz",
"integrity": "sha1-+1KCDiLlC4VP8VzhZHzFCNZmBhM=",
"requires": {
"@ethersproject/address": "^5.5.0",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/constants": "^5.5.0",
"@ethersproject/hash": "^5.5.0",
"@ethersproject/keccak256": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"@ethersproject/properties": "^5.5.0",
"@ethersproject/strings": "^5.5.0"
}
},
"@ethersproject/abstract-provider": {
"version": "5.5.1",
"resolved": "https://registry.npmmirror.com/@ethersproject/abstract-provider/download/@ethersproject/abstract-provider-5.5.1.tgz",
"integrity": "sha1-Lx9uijq303jYrQtXGEYPhWSXEMU=",
"requires": {
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"@ethersproject/networks": "^5.5.0",
"@ethersproject/properties": "^5.5.0",
"@ethersproject/transactions": "^5.5.0",
"@ethersproject/web": "^5.5.0"
}
},
"@ethersproject/abstract-signer": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/abstract-signer/download/@ethersproject/abstract-signer-5.5.0.tgz",
"integrity": "sha1-WQ/2aTNwxgrjdr8cetpZ6yqN0I0=",
"requires": {
"@ethersproject/abstract-provider": "^5.5.0",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"@ethersproject/properties": "^5.5.0"
}
},
"@ethersproject/address": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/address/download/@ethersproject/address-5.5.0.tgz",
"integrity": "sha1-vMb1dqVT8h8917oXJI+BtHPJx48=",
"requires": {
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/keccak256": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"@ethersproject/rlp": "^5.5.0"
}
},
"@ethersproject/base64": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/base64/download/@ethersproject/base64-5.5.0.tgz",
"integrity": "sha1-iB6FROR+2XaTCDaYbl64+rJZwJA=",
"requires": {
"@ethersproject/bytes": "^5.5.0"
}
},
"@ethersproject/basex": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/basex/download/@ethersproject/basex-5.5.0.tgz?cache=0&sync_timestamp=1634693588619&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40ethersproject%2Fbasex%2Fdownload%2F%40ethersproject%2Fbasex-5.5.0.tgz",
"integrity": "sha1-5ApTrm1rCatNl3vQNwENS+0htNM=",
"requires": {
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/properties": "^5.5.0"
}
},
"@ethersproject/bignumber": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/bignumber/download/@ethersproject/bignumber-5.5.0.tgz",
"integrity": "sha1-h1sUPwSiFvT4uWJFvelC1C0nlSc=",
"requires": {
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"bn.js": "^4.11.9"
}
},
"@ethersproject/bytes": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/bytes/download/@ethersproject/bytes-5.5.0.tgz",
"integrity": "sha1-yxHFJt5lfntF0uDwJG+zudKaYBw=",
"requires": {
"@ethersproject/logger": "^5.5.0"
}
},
"@ethersproject/constants": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/constants/download/@ethersproject/constants-5.5.0.tgz",
"integrity": "sha1-0qLNfZS9HVg3fR1mxPU8m+TQpF4=",
"requires": {
"@ethersproject/bignumber": "^5.5.0"
}
},
"@ethersproject/contracts": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/contracts/download/@ethersproject/contracts-5.5.0.tgz",
"integrity": "sha1-tzUmDUvWEoOmcKgtUnXio4iSwZc=",
"requires": {
"@ethersproject/abi": "^5.5.0",
"@ethersproject/abstract-provider": "^5.5.0",
"@ethersproject/abstract-signer": "^5.5.0",
"@ethersproject/address": "^5.5.0",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/constants": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"@ethersproject/properties": "^5.5.0",
"@ethersproject/transactions": "^5.5.0"
}
},
"@ethersproject/hash": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/hash/download/@ethersproject/hash-5.5.0.tgz",
"integrity": "sha1-fO520I+I0Yc1dMhJ4CB9yzI4DMk=",
"requires": {
"@ethersproject/abstract-signer": "^5.5.0",
"@ethersproject/address": "^5.5.0",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/keccak256": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"@ethersproject/properties": "^5.5.0",
"@ethersproject/strings": "^5.5.0"
}
},
"@ethersproject/hdnode": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/hdnode/download/@ethersproject/hdnode-5.5.0.tgz",
"integrity": "sha1-SgTij0HFRvfJeFKOoVdSBqIA3fY=",
"requires": {
"@ethersproject/abstract-signer": "^5.5.0",
"@ethersproject/basex": "^5.5.0",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"@ethersproject/pbkdf2": "^5.5.0",
"@ethersproject/properties": "^5.5.0",
"@ethersproject/sha2": "^5.5.0",
"@ethersproject/signing-key": "^5.5.0",
"@ethersproject/strings": "^5.5.0",
"@ethersproject/transactions": "^5.5.0",
"@ethersproject/wordlists": "^5.5.0"
}
},
"@ethersproject/json-wallets": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/json-wallets/download/@ethersproject/json-wallets-5.5.0.tgz",
"integrity": "sha1-3VItQpfhW8zI4UJ9JH7IN2tg4yU=",
"requires": {
"@ethersproject/abstract-signer": "^5.5.0",
"@ethersproject/address": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/hdnode": "^5.5.0",
"@ethersproject/keccak256": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"@ethersproject/pbkdf2": "^5.5.0",
"@ethersproject/properties": "^5.5.0",
"@ethersproject/random": "^5.5.0",
"@ethersproject/strings": "^5.5.0",
"@ethersproject/transactions": "^5.5.0",
"aes-js": "3.0.0",
"scrypt-js": "3.0.1"
}
},
"@ethersproject/keccak256": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/keccak256/download/@ethersproject/keccak256-5.5.0.tgz",
"integrity": "sha1-5LH513AdqHxWT/4zb4bc7oKYNJI=",
"requires": {
"@ethersproject/bytes": "^5.5.0",
"js-sha3": "0.8.0"
}
},
"@ethersproject/logger": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/logger/download/@ethersproject/logger-5.5.0.tgz",
"integrity": "sha1-DCyuvv+Y4Qrvpa7yfXRBx/0Yz10="
},
"@ethersproject/networks": {
"version": "5.5.1",
"resolved": "https://registry.npmmirror.com/@ethersproject/networks/download/@ethersproject/networks-5.5.1.tgz",
"integrity": "sha512-tYRDM4zZtSUcKnD4UMuAlj7SeXH/k5WC4SP2u1Pn57++JdXHkRu2zwNkgNogZoxHzhm9Q6qqurDBVptHOsW49Q==",
"requires": {
"@ethersproject/logger": "^5.5.0"
}
},
"@ethersproject/pbkdf2": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/pbkdf2/download/@ethersproject/pbkdf2-5.5.0.tgz",
"integrity": "sha1-4lAyzfAvMVBdR6+/nD4ADZXEoFA=",
"requires": {
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/sha2": "^5.5.0"
}
},
"@ethersproject/properties": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/properties/download/@ethersproject/properties-5.5.0.tgz",
"integrity": "sha1-YfAPK7gzdtIHG6qwIkX5IHDFmZU=",
"requires": {
"@ethersproject/logger": "^5.5.0"
}
},
"@ethersproject/providers": {
"version": "5.5.1",
"resolved": "https://registry.npmmirror.com/@ethersproject/providers/download/@ethersproject/providers-5.5.1.tgz",
"integrity": "sha512-2zdD5sltACDWhjUE12Kucg2PcgM6V2q9JMyVvObtVGnzJu+QSmibbP+BHQyLWZUBfLApx2942+7DC5D+n4wBQQ==",
"requires": {
"@ethersproject/abstract-provider": "^5.5.0",
"@ethersproject/abstract-signer": "^5.5.0",
"@ethersproject/address": "^5.5.0",
"@ethersproject/basex": "^5.5.0",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/constants": "^5.5.0",
"@ethersproject/hash": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"@ethersproject/networks": "^5.5.0",
"@ethersproject/properties": "^5.5.0",
"@ethersproject/random": "^5.5.0",
"@ethersproject/rlp": "^5.5.0",
"@ethersproject/sha2": "^5.5.0",
"@ethersproject/strings": "^5.5.0",
"@ethersproject/transactions": "^5.5.0",
"@ethersproject/web": "^5.5.0",
"bech32": "1.1.4",
"ws": "7.4.6"
}
},
"@ethersproject/random": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/random/download/@ethersproject/random-5.5.0.tgz",
"integrity": "sha1-MF7Z4DPKU3c1NlrBLu2IWAsPgfk=",
"requires": {
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/logger": "^5.5.0"
}
},
"@ethersproject/rlp": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/rlp/download/@ethersproject/rlp-5.5.0.tgz",
"integrity": "sha1-Uw9PYI+cqdT4nCSrldtYq1armaA=",
"requires": {
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/logger": "^5.5.0"
}
},
"@ethersproject/sha2": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/sha2/download/@ethersproject/sha2-5.5.0.tgz",
"integrity": "sha1-pAoFTGH5j9nu6Zryw8xv9X7CTbc=",
"requires": {
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"hash.js": "1.1.7"
}
},
"@ethersproject/signing-key": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/signing-key/download/@ethersproject/signing-key-5.5.0.tgz",
"integrity": "sha1-KqNxac5+AePoDywUMl9iTCnO2+A=",
"requires": {
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"@ethersproject/properties": "^5.5.0",
"bn.js": "^4.11.9",
"elliptic": "6.5.4",
"hash.js": "1.1.7"
}
},
"@ethersproject/solidity": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/solidity/download/@ethersproject/solidity-5.5.0.tgz",
"integrity": "sha1-JmLrPl2kcbhaIFMeQgBUJ4Ni+T8=",
"requires": {
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/keccak256": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"@ethersproject/sha2": "^5.5.0",
"@ethersproject/strings": "^5.5.0"
}
},
"@ethersproject/strings": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/strings/download/@ethersproject/strings-5.5.0.tgz",
"integrity": "sha1-5nhNAOxsV3EHVWmQA7x0fpjF1Uk=",
"requires": {
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/constants": "^5.5.0",
"@ethersproject/logger": "^5.5.0"
}
},
"@ethersproject/transactions": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/transactions/download/@ethersproject/transactions-5.5.0.tgz",
"integrity": "sha1-fpv3Lpe832nbNP4NWeL0IDx6KQg=",
"requires": {
"@ethersproject/address": "^5.5.0",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/constants": "^5.5.0",
"@ethersproject/keccak256": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"@ethersproject/properties": "^5.5.0",
"@ethersproject/rlp": "^5.5.0",
"@ethersproject/signing-key": "^5.5.0"
}
},
"@ethersproject/units": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/units/download/@ethersproject/units-5.5.0.tgz",
"integrity": "sha1-EE0C21tdxCzGcsxFh7r7h6le5F4=",
"requires": {
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/constants": "^5.5.0",
"@ethersproject/logger": "^5.5.0"
}
},
"@ethersproject/wallet": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/wallet/download/@ethersproject/wallet-5.5.0.tgz",
"integrity": "sha1-MioQUnpEDs5ZOYDcphgvF9VOrnU=",
"requires": {
"@ethersproject/abstract-provider": "^5.5.0",
"@ethersproject/abstract-signer": "^5.5.0",
"@ethersproject/address": "^5.5.0",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/hash": "^5.5.0",
"@ethersproject/hdnode": "^5.5.0",
"@ethersproject/json-wallets": "^5.5.0",
"@ethersproject/keccak256": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"@ethersproject/properties": "^5.5.0",
"@ethersproject/random": "^5.5.0",
"@ethersproject/signing-key": "^5.5.0",
"@ethersproject/transactions": "^5.5.0",
"@ethersproject/wordlists": "^5.5.0"
}
},
"@ethersproject/web": {
"version": "5.5.1",
"resolved": "https://registry.npmmirror.com/@ethersproject/web/download/@ethersproject/web-5.5.1.tgz",
"integrity": "sha512-olvLvc1CB12sREc1ROPSHTdFCdvMh0J5GSJYiQg2D0hdD4QmJDy8QYDb1CvoqD/bF1c++aeKv2sR5uduuG9dQg==",
"requires": {
"@ethersproject/base64": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"@ethersproject/properties": "^5.5.0",
"@ethersproject/strings": "^5.5.0"
}
},
"@ethersproject/wordlists": {
"version": "5.5.0",
"resolved": "https://registry.npmmirror.com/@ethersproject/wordlists/download/@ethersproject/wordlists-5.5.0.tgz",
"integrity": "sha1-qsdJY6pD5kNjjlFyNT2TGzR9WE8=",
"requires": {
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/hash": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"@ethersproject/properties": "^5.5.0",
"@ethersproject/strings": "^5.5.0"
}
},
"@sindresorhus/is": {
"version": "0.14.0",
"resolved": "https://registry.npmmirror.com/@sindresorhus/is/download/@sindresorhus/is-0.14.0.tgz",
"integrity": "sha1-n7OjzzEyMoFR81PeRjLgHlIQK+o="
},
"@szmarczak/http-timer": {
"version": "1.1.2",
"resolved": "https://registry.nlark.com/@szmarczak/http-timer/download/@szmarczak/http-timer-1.1.2.tgz",
"integrity": "sha1-sWZeLEYaLNkvTBu/UNVFTeDUtCE=",
"requires": {
"defer-to-connect": "^1.0.1"
}
},
"@types/bn.js": {
"version": "5.1.0",
"resolved": "https://registry.npmmirror.com/@types/bn.js/download/@types/bn.js-5.1.0.tgz",
"integrity": "sha1-MsXScVA6EmU8Ys9NK0Xm6rjOvGg=",
"requires": {
"@types/node": "*"
}
},
"@types/node": {
"version": "16.11.11",
"resolved": "https://registry.npmmirror.com/@types/node/download/@types/node-16.11.11.tgz",
"integrity": "sha512-KB0sixD67CeecHC33MYn+eYARkqTheIRNuu97y2XMjR7Wu3XibO1vaY6VBV6O/a89SPI81cEUIYT87UqUWlZNw=="
},
"@types/pbkdf2": {
"version": "3.1.0",
"resolved": "https://registry.npmmirror.com/@types/pbkdf2/download/@types/pbkdf2-3.1.0.tgz",
"integrity": "sha1-A5oOm2faDNxO5dq4Zcqmsme7ZrE=",
"requires": {
"@types/node": "*"
}
},
"@types/secp256k1": {
"version": "4.0.3",
"resolved": "https://registry.npmmirror.com/@types/secp256k1/download/@types/secp256k1-4.0.3.tgz",
"integrity": "sha1-G45V2OAPCO5yILTVmmq+icN6kBw=",
"requires": {
"@types/node": "*"
}
},
"accepts": {
"version": "1.3.7",
"resolved": "https://registry.npm.taobao.org/accepts/download/accepts-1.3.7.tgz",
"integrity": "sha1-UxvHJlF6OytB+FACHGzBXqq1B80=",
"requires": {
"mime-types": "~2.1.24",
"negotiator": "0.6.2"
}
},
"aes-js": {
"version": "3.0.0",
"resolved": "https://registry.npm.taobao.org/aes-js/download/aes-js-3.0.0.tgz",
"integrity": "sha1-4h3xCtbCBTKVvLuNq0Cwnb6ofk0="
},
"ajv": {
"version": "6.12.6",
"resolved": "https://registry.npmmirror.com/ajv/download/ajv-6.12.6.tgz",
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"requires": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
"json-schema-traverse": "^0.4.1",
"uri-js": "^4.2.2"
}
},
"array-flatten": {
"version": "1.1.1",
"resolved": "https://registry.npm.taobao.org/array-flatten/download/array-flatten-1.1.1.tgz",
"integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI="
},
"asn1": {
"version": "0.2.6",
"resolved": "https://registry.npmmirror.com/asn1/download/asn1-0.2.6.tgz?cache=0&sync_timestamp=1635986760581&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fasn1%2Fdownload%2Fasn1-0.2.6.tgz",
"integrity": "sha1-DTp7tuZOAqkMAwOzHykoaOoJoI0=",
"requires": {
"safer-buffer": "~2.1.0"
}
},
"asn1.js": {
"version": "5.4.1",
"resolved": "https://registry.npm.taobao.org/asn1.js/download/asn1.js-5.4.1.tgz",
"integrity": "sha1-EamAuE67kXgc41sP3C7ilON4Pwc=",
"requires": {
"bn.js": "^4.0.0",
"inherits": "^2.0.1",
"minimalistic-assert": "^1.0.0",
"safer-buffer": "^2.1.0"
}
},
"assert-plus": {
"version": "1.0.0",
"resolved": "https://registry.nlark.com/assert-plus/download/assert-plus-1.0.0.tgz",
"integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
},
"async-limiter": {
"version": "1.0.1",
"resolved": "https://registry.npm.taobao.org/async-limiter/download/async-limiter-1.0.1.tgz",
"integrity": "sha1-3TeelPDbgxCwgpH51kwyCXZmF/0="
},
"asynckit": {
"version": "0.4.0",
"resolved": "https://registry.nlark.com/asynckit/download/asynckit-0.4.0.tgz",
"integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k="
},
"available-typed-arrays": {
"version": "1.0.5",
"resolved": "https://registry.nlark.com/available-typed-arrays/download/available-typed-arrays-1.0.5.tgz",
"integrity": "sha1-kvlWFlAQadB9EO2y/DfT4cZRI7c="
},
"aws-sign2": {
"version": "0.7.0",
"resolved": "https://registry.nlark.com/aws-sign2/download/aws-sign2-0.7.0.tgz",
"integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg="
},
"aws4": {
"version": "1.11.0",
"resolved": "https://registry.nlark.com/aws4/download/aws4-1.11.0.tgz",
"integrity": "sha1-1h9G2DslGSUOJ4Ta9bCUeai0HFk="
},
"b4a": {
"version": "1.3.1",
"resolved": "https://registry.npmmirror.com/b4a/download/b4a-1.3.1.tgz",
"integrity": "sha512-ULHjbJGjZcdA5bugDNAAcMA6GWXX/9N10I6AQc14TH+Sr7bMfT+NHuJnOFGPJWLtzYa6Tz+PnFD2D/1bISLLZQ=="
},
"base-x": {
"version": "3.0.9",
"resolved": "https://registry.npmmirror.com/base-x/download/base-x-3.0.9.tgz",
"integrity": "sha1-Y0mqq7WFJjMt6fYJleVIpT/iEyA=",
"requires": {
"safe-buffer": "^5.0.1"
}
},
"base64-js": {
"version": "1.5.1",
"resolved": "https://registry.npm.taobao.org/base64-js/download/base64-js-1.5.1.tgz",
"integrity": "sha1-GxtEAWClv3rUC2UPCVljSBkDkwo="
},
"bcrypt-pbkdf": {
"version": "1.0.2",
"resolved": "https://registry.npm.taobao.org/bcrypt-pbkdf/download/bcrypt-pbkdf-1.0.2.tgz",
"integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=",
"requires": {
"tweetnacl": "^0.14.3"
}
},
"bech32": {
"version": "1.1.4",
"resolved": "https://registry.nlark.com/bech32/download/bech32-1.1.4.tgz",
"integrity": "sha1-44yfN78Xm46xauOncrQMNW1IMuk="
},
"big-integer": {
"version": "1.6.51",
"resolved": "https://registry.npmmirror.com/big-integer/download/big-integer-1.6.51.tgz?cache=0&sync_timestamp=1636575113308&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fbig-integer%2Fdownload%2Fbig-integer-1.6.51.tgz",
"integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg=="
},
"bignumber.js": {
"version": "9.0.2",
"resolved": "https://registry.npmmirror.com/bignumber.js/download/bignumber.js-9.0.2.tgz",
"integrity": "sha512-GAcQvbpsM0pUb0zw1EI0KhQEZ+lRwR5fYaAp3vPOYuP7aDvGy6cVN6XHLauvF8SOga2y0dcLcjt3iQDTSEliyw=="
},
"bindings": {
"version": "1.5.0",
"resolved": "https://registry.nlark.com/bindings/download/bindings-1.5.0.tgz?cache=0&sync_timestamp=1618847035497&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbindings%2Fdownload%2Fbindings-1.5.0.tgz",
"integrity": "sha1-EDU8npRTNLwFEabZCzj7x8nFBN8=",
"requires": {
"file-uri-to-path": "1.0.0"
}
},
"blake-hash": {
"version": "2.0.0",
"resolved": "https://registry.npmmirror.com/blake-hash/download/blake-hash-2.0.0.tgz",
"integrity": "sha1-rxhNzmQZURJtBbfRw94yJPU41m4=",
"requires": {
"node-addon-api": "^3.0.0",
"node-gyp-build": "^4.2.2",
"readable-stream": "^3.6.0"
},
"dependencies": {
"node-addon-api": {
"version": "3.2.1",
"resolved": "https://registry.nlark.com/node-addon-api/download/node-addon-api-3.2.1.tgz",
"integrity": "sha1-gTJeCiEXeJwBKNq2Xn448HzroWE="
}
}
},
"blake2b": {
"version": "2.1.4",
"resolved": "https://registry.npmmirror.com/blake2b/download/blake2b-2.1.4.tgz",
"integrity": "sha512-AyBuuJNI64gIvwx13qiICz6H6hpmjvYS5DGkG6jbXMOT8Z3WUJ3V1X0FlhIoT1b/5JtHE3ki+xjtMvu1nn+t9A==",
"requires": {
"blake2b-wasm": "^2.4.0",
"nanoassert": "^2.0.0"
}
},
"blake2b-wasm": {
"version": "2.4.0",
"resolved": "https://registry.npmmirror.com/blake2b-wasm/download/blake2b-wasm-2.4.0.tgz",
"integrity": "sha512-S1kwmW2ZhZFFFOghcx73+ZajEfKBqhP82JMssxtLVMxlaPea1p9uoLiUZ5WYyHn0KddwbLc+0vh4wR0KBNoT5w==",
"requires": {
"b4a": "^1.0.1",
"nanoassert": "^2.0.0"
}
},
"blakejs": {
"version": "1.1.1",
"resolved": "https://registry.nlark.com/blakejs/download/blakejs-1.1.1.tgz",
"integrity": "sha1-vzEwU5eLLNTERKSHlXEL4Fx4VwI="
},
"bluebird": {
"version": "3.7.2",
"resolved": "https://registry.nlark.com/bluebird/download/bluebird-3.7.2.tgz",
"integrity": "sha1-nyKcFb4nJFT/qXOs4NvueaGww28="
},
"bn.js": {
"version": "4.12.0",
"resolved": "https://registry.npm.taobao.org/bn.js/download/bn.js-4.12.0.tgz",
"integrity": "sha1-d1s/J477uXGO7HNh9IP7Nvu/6og="
},
"body-parser": {
"version": "1.19.1",
"resolved": "https://registry.npmmirror.com/body-parser/download/body-parser-1.19.1.tgz",
"integrity": "sha512-8ljfQi5eBk8EJfECMrgqNGWPEY5jWP+1IzkzkGdFFEwFQZZyaZ21UqdaHktgiMlH0xLHqIFtE/u2OYE5dOtViA==",
"requires": {
"bytes": "3.1.1",
"content-type": "~1.0.4",
"debug": "2.6.9",
"depd": "~1.1.2",
"http-errors": "1.8.1",
"iconv-lite": "0.4.24",
"on-finished": "~2.3.0",
"qs": "6.9.6",
"raw-body": "2.4.2",
"type-is": "~1.6.18"
}
},
"brorand": {
"version": "1.1.0",
"resolved": "https://registry.nlark.com/brorand/download/brorand-1.1.0.tgz",
"integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8="
},
"browserify-aes": {
"version": "1.2.0",
"resolved": "https://registry.nlark.com/browserify-aes/download/browserify-aes-1.2.0.tgz",
"integrity": "sha1-Mmc0ZC9APavDADIJhTu3CtQo70g=",
"requires": {
"buffer-xor": "^1.0.3",
"cipher-base": "^1.0.0",
"create-hash": "^1.1.0",
"evp_bytestokey": "^1.0.3",
"inherits": "^2.0.1",
"safe-buffer": "^5.0.1"
}
},
"browserify-cipher": {
"version": "1.0.1",
"resolved": "https://registry.nlark.com/browserify-cipher/download/browserify-cipher-1.0.1.tgz",
"integrity": "sha1-jWR0wbhwv9q807z8wZNKEOlPFfA=",
"requires": {
"browserify-aes": "^1.0.4",
"browserify-des": "^1.0.0",
"evp_bytestokey": "^1.0.0"
}
},
"browserify-des": {
"version": "1.0.2",
"resolved": "https://registry.nlark.com/browserify-des/download/browserify-des-1.0.2.tgz",
"integrity": "sha1-OvTx9Zg5QDVy8cZiBDdfen9wPpw=",
"requires": {
"cipher-base": "^1.0.1",
"des.js": "^1.0.0",
"inherits": "^2.0.1",
"safe-buffer": "^5.1.2"
}
},
"browserify-rsa": {
"version": "4.1.0",
"resolved": "https://registry.npm.taobao.org/browserify-rsa/download/browserify-rsa-4.1.0.tgz?cache=0&sync_timestamp=1605194257215&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbrowserify-rsa%2Fdownload%2Fbrowserify-rsa-4.1.0.tgz",
"integrity": "sha1-sv0Gtbda4pf3zi3GUfkY9b4VjI0=",
"requires": {
"bn.js": "^5.0.0",
"randombytes": "^2.0.1"
},
"dependencies": {
"bn.js": {
"version": "5.2.0",
"resolved": "https://registry.npm.taobao.org/bn.js/download/bn.js-5.2.0.tgz",
"integrity": "sha1-NYhgZ0OWxpl3canQUfzBtX1K4AI="
}
}
},
"browserify-sign": {
"version": "4.2.1",
"resolved": "https://registry.nlark.com/browserify-sign/download/browserify-sign-4.2.1.tgz",
"integrity": "sha1-6vSt1G3VS+O7OzbAzxWrvrp5VsM=",
"requires": {
"bn.js": "^5.1.1",
"browserify-rsa": "^4.0.1",
"create-hash": "^1.2.0",
"create-hmac": "^1.1.7",
"elliptic": "^6.5.3",
"inherits": "^2.0.4",
"parse-asn1": "^5.1.5",
"readable-stream": "^3.6.0",
"safe-buffer": "^5.2.0"
},
"dependencies": {
"bn.js": {
"version": "5.2.0",
"resolved": "https://registry.npm.taobao.org/bn.js/download/bn.js-5.2.0.tgz",
"integrity": "sha1-NYhgZ0OWxpl3canQUfzBtX1K4AI="
}
}
},
"bs58": {
"version": "4.0.1",
"resolved": "https://registry.npm.taobao.org/bs58/download/bs58-4.0.1.tgz",
"integrity": "sha1-vhYedsNU9veIrkBx9j806MTwpCo=",
"requires": {
"base-x": "^3.0.2"
}
},
"bs58check": {
"version": "2.1.2",
"resolved": "https://registry.npm.taobao.org/bs58check/download/bs58check-2.1.2.tgz",
"integrity": "sha1-U7AYKRIo2CpaoI59eW/a/aVK6/w=",
"requires": {
"bs58": "^4.0.0",
"create-hash": "^1.1.0",
"safe-buffer": "^5.1.2"
}
},
"buffer": {
"version": "5.7.1",
"resolved": "https://registry.npmmirror.com/buffer/download/buffer-5.7.1.tgz",
"integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
"requires": {
"base64-js": "^1.3.1",
"ieee754": "^1.1.13"
}
},
"buffer-to-arraybuffer": {
"version": "0.0.5",
"resolved": "https://registry.npm.taobao.org/buffer-to-arraybuffer/download/buffer-to-arraybuffer-0.0.5.tgz",
"integrity": "sha1-YGSkD6dutDxyOrqe+PbhIW0QURo="
},
"buffer-xor": {
"version": "1.0.3",
"resolved": "https://registry.nlark.com/buffer-xor/download/buffer-xor-1.0.3.tgz",
"integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk="
},
"bufferutil": {
"version": "4.0.6",
"resolved": "https://registry.npmmirror.com/bufferutil/download/bufferutil-4.0.6.tgz",
"integrity": "sha512-jduaYOYtnio4aIAyc6UbvPCVcgq7nYpVnucyxr6eCYg/Woad9Hf/oxxBRDnGGjPfjUm6j5O/uBWhIu4iLebFaw==",
"requires": {
"node-gyp-build": "^4.3.0"
}
},
"bytes": {
"version": "3.1.1",
"resolved": "https://registry.npmmirror.com/bytes/download/bytes-3.1.1.tgz?cache=0&sync_timestamp=1637015110760&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fbytes%2Fdownload%2Fbytes-3.1.1.tgz",
"integrity": "sha512-dWe4nWO/ruEOY7HkUJ5gFt1DCFV9zPRoJr8pV0/ASQermOZjtq8jMjOprC0Kd10GLN+l7xaUPvxzJFWtxGu8Fg=="
},
"cacheable-request": {
"version": "6.1.0",
"resolved": "https://registry.nlark.com/cacheable-request/download/cacheable-request-6.1.0.tgz?cache=0&sync_timestamp=1623237445804&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcacheable-request%2Fdownload%2Fcacheable-request-6.1.0.tgz",
"integrity": "sha1-IP+4vRYrpL4R6VZ9gj22UQUsqRI=",
"requires": {
"clone-response": "^1.0.2",
"get-stream": "^5.1.0",
"http-cache-semantics": "^4.0.0",
"keyv": "^3.0.0",
"lowercase-keys": "^2.0.0",
"normalize-url": "^4.1.0",
"responselike": "^1.0.2"
},
"dependencies": {
"get-stream": {
"version": "5.2.0",
"resolved": "https://registry.nlark.com/get-stream/download/get-stream-5.2.0.tgz",
"integrity": "sha1-SWaheV7lrOZecGxLe+txJX1uItM=",
"requires": {
"pump": "^3.0.0"
}
},
"lowercase-keys": {
"version": "2.0.0",
"resolved": "https://registry.npmmirror.com/lowercase-keys/download/lowercase-keys-2.0.0.tgz?cache=0&sync_timestamp=1634551769618&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Flowercase-keys%2Fdownload%2Flowercase-keys-2.0.0.tgz",
"integrity": "sha1-JgPni3tLAAbLyi+8yKMgJVislHk="
}
}
},
"call-bind": {
"version": "1.0.2",
"resolved": "https://registry.nlark.com/call-bind/download/call-bind-1.0.2.tgz",
"integrity": "sha1-sdTonmiBGcPJqQOtMKuy9qkZvjw=",
"requires": {
"function-bind": "^1.1.1",
"get-intrinsic": "^1.0.2"
}
},
"caseless": {
"version": "0.12.0",
"resolved": "https://registry.nlark.com/caseless/download/caseless-0.12.0.tgz",
"integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw="
},
"chownr": {
"version": "1.1.4",
"resolved": "https://registry.npm.taobao.org/chownr/download/chownr-1.1.4.tgz",
"integrity": "sha1-b8nXtC0ypYNZYzdmbn0ICE2izGs="
},
"cids": {
"version": "0.7.5",
"resolved": "https://registry.npmmirror.com/cids/download/cids-0.7.5.tgz",
"integrity": "sha1-YKCBOKmb+2m2vkzrY7/vejlrKLI=",
"requires": {
"buffer": "^5.5.0",
"class-is": "^1.1.0",
"multibase": "~0.6.0",
"multicodec": "^1.0.0",
"multihashes": "~0.4.15"
},
"dependencies": {
"multicodec": {
"version": "1.0.4",
"resolved": "https://registry.npmmirror.com/multicodec/download/multicodec-1.0.4.tgz",
"integrity": "sha1-RqwGRlfEA4DCg2fJAwTY7RdacU8=",
"requires": {
"buffer": "^5.6.0",
"varint": "^5.0.0"
}
}
}
},
"cipher-base": {
"version": "1.0.4",
"resolved": "https://registry.npm.taobao.org/cipher-base/download/cipher-base-1.0.4.tgz",
"integrity": "sha1-h2Dk7MJy9MNjUy+SbYdKriwTl94=",
"requires": {
"inherits": "^2.0.1",
"safe-buffer": "^5.0.1"
}
},
"circom": {
"version": "git://github.com/weijiekoh/circomlib.git#24ed08eee0bb613b8c0135d66c1013bd9f78d50a",
"from": "git://github.com/weijiekoh/circomlib.git#24ed08eee0bb613b8c0135d66c1013bd9f78d50a",
"requires": {
"blake-hash": "^1.1.0",
"blake2b": "^2.1.3",
"ffjavascript": "0.1.0",
"web3-utils": "^1.3.0"
},
"dependencies": {
"blake-hash": {
"version": "1.1.1",
"resolved": "https://registry.npmmirror.com/blake-hash/download/blake-hash-1.1.1.tgz",
"integrity": "sha1-tiUWANeBLdUJf5bLNBzq4kW/nRI=",
"requires": {
"bindings": "^1.2.1",
"inherits": "^2.0.3",
"nan": "^2.2.1"
}
},
"circom": {
"version": "0.5.45",
"resolved": "https://registry.npmmirror.com/circom/-/circom-0.5.45.tgz",
"integrity": "sha512-5Ixp6UjwrhBWnnFBO/mTns+eeEDOpi5UoN4znAUWy5rklCUWYt2Ezl9QVUswBXjMP5kpfEtGUY2XSsYRAp6uMg==",
"requires": {
"ffjavascript": "0.2.22",
"wasmbuilder": "0.0.10"
},
"dependencies": {
"ffjavascript": {
"version": "0.2.22",
"resolved": "https://registry.npmmirror.com/ffjavascript/-/ffjavascript-0.2.22.tgz",
"integrity": "sha512-EsVqap2Txm17bKW0z/jXCX3M7rQ++nQUAJY8alWDpyhjRj90xjl6GLeVSKZQ8rOFDQ/SFFXcEB8w9X8Boxid+w==",
"requires": {
"big-integer": "^1.6.48",
"wasmcurves": "0.0.12"
}
}
}
},
"ffjavascript": {
"version": "0.1.0",
"resolved": "https://registry.npmmirror.com/ffjavascript/download/ffjavascript-0.1.0.tgz",
"integrity": "sha1-RWJWwlllTMHOhkxnYrDnbuFxQQA=",
"requires": {
"big-integer": "^1.6.48"
}
},
"wasmbuilder": {
"version": "0.0.10",
"resolved": "https://registry.npmmirror.com/wasmbuilder/-/wasmbuilder-0.0.10.tgz",
"integrity": "sha512-zQSvZ7d74d9OvN+mCN6ucNne4QS5/cBBYTHldX0Oe+u9gStY21orapvuX1ajisA7RVIpuFhYg+ZgdySsPfeh0A==",
"requires": {
"big-integer": "^1.6.48"
}
},
"wasmcurves": {
"version": "0.0.12",
"resolved": "https://registry.npmmirror.com/wasmcurves/-/wasmcurves-0.0.12.tgz",
"integrity": "sha512-1Jl9mkatyHSNj80ILjf85SZUNuZQBCkTjJlhzqHnZQXUmIimCIWkugaVaYNjozLs1Gun4h/keZe1MBeBN0sRpg==",
"requires": {
"big-integer": "^1.6.42",
"blakejs": "^1.1.0"
}
}
}
},
"circomlib": {
"version": "2.0.0",
"resolved": "https://registry.npmmirror.com/circomlib/download/circomlib-2.0.0.tgz",
"integrity": "sha1-Uc/KKSJeHzfmg3jtQ/Fy1qN2hAk="
},
"class-is": {
"version": "1.1.0",
"resolved": "https://registry.npm.taobao.org/class-is/download/class-is-1.1.0.tgz",
"integrity": "sha1-nTwPugRA0hHYQ87D3t+kgFUAWCU="
},
"clone-response": {
"version": "1.0.2",
"resolved": "https://registry.npm.taobao.org/clone-response/download/clone-response-1.0.2.tgz",
"integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=",
"requires": {
"mimic-response": "^1.0.0"
}
},
"combined-stream": {
"version": "1.0.8",
"resolved": "https://registry.npm.taobao.org/combined-stream/download/combined-stream-1.0.8.tgz",
"integrity": "sha1-w9RaizT9cwYxoRCoolIGgrMdWn8=",
"requires": {
"delayed-stream": "~1.0.0"
}
},
"content-disposition": {
"version": "0.5.4",
"resolved": "https://registry.npmmirror.com/content-disposition/download/content-disposition-0.5.4.tgz",
"integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
"requires": {
"safe-buffer": "5.2.1"
}
},
"content-hash": {
"version": "2.5.2",
"resolved": "https://registry.npm.taobao.org/content-hash/download/content-hash-2.5.2.tgz",
"integrity": "sha1-u8JlXnwh8U/Tv8e31L/m5FTJ4hE=",
"requires": {
"cids": "^0.7.1",
"multicodec": "^0.5.5",
"multihashes": "^0.4.15"
}
},
"content-type": {
"version": "1.0.4",
"resolved": "https://registry.nlark.com/content-type/download/content-type-1.0.4.tgz",
"integrity": "sha1-4TjMdeBAxyexlm/l5fjJruJW/js="
},
"cookie": {
"version": "0.4.1",
"resolved": "https://registry.npmmirror.com/cookie/download/cookie-0.4.1.tgz",
"integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA=="
},
"cookie-signature": {
"version": "1.0.6",
"resolved": "https://registry.npm.taobao.org/cookie-signature/download/cookie-signature-1.0.6.tgz",
"integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw="
},
"cookiejar": {
"version": "2.1.3",
"resolved": "https://registry.npmmirror.com/cookiejar/download/cookiejar-2.1.3.tgz?cache=0&sync_timestamp=1632881937184&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcookiejar%2Fdownload%2Fcookiejar-2.1.3.tgz",
"integrity": "sha1-/HpiFuQI50QUuQIwBQhC2s2nWsw="
},
"core-util-is": {
"version": "1.0.2",
"resolved": "https://registry.nlark.com/core-util-is/download/core-util-is-1.0.2.tgz?cache=0&sync_timestamp=1630420577662&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-util-is%2Fdownload%2Fcore-util-is-1.0.2.tgz",
"integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
},
"cors": {
"version": "2.8.5",
"resolved": "https://registry.npmmirror.com/cors/download/cors-2.8.5.tgz",
"integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==",
"requires": {
"object-assign": "^4",
"vary": "^1"
}
},
"crc-32": {
"version": "1.2.0",
"resolved": "https://registry.npm.taobao.org/crc-32/download/crc-32-1.2.0.tgz",
"integrity": "sha1-yy224puIUI4y2d0OwWk+e0Ghggg=",
"requires": {
"exit-on-epipe": "~1.0.1",
"printj": "~1.1.0"
}
},
"create-ecdh": {
"version": "4.0.4",
"resolved": "https://registry.nlark.com/create-ecdh/download/create-ecdh-4.0.4.tgz",
"integrity": "sha1-1uf0v/pmc2CFoHYv06YyaE2rzE4=",
"requires": {
"bn.js": "^4.1.0",
"elliptic": "^6.5.3"
}