-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnpm-debug.log
5770 lines (5770 loc) · 301 KB
/
npm-debug.log
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
0 info it worked if it ends with ok
1 verbose cli [ '/usr/bin/node',
1 verbose cli '/usr/bin/npm',
1 verbose cli 'install',
1 verbose cli '--global',
1 verbose cli 'hardhat' ]
2 info using [email protected]
3 info using [email protected]
4 silly loadCurrentTree Starting
5 silly install loadCurrentTree
6 silly install readGlobalPackageData
7 silly fetchPackageMetaData hardhat
8 silly fetchNamedPackageData hardhat
9 silly mapToRegistry name hardhat
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry uri https://registry.npmjs.org/hardhat
13 verbose request uri https://registry.npmjs.org/hardhat
14 verbose request no auth needed
15 info attempt registry request try #1 at 8:44:16 PM
16 verbose request id 082f1f6c0581a19d
17 http request GET https://registry.npmjs.org/hardhat
18 http 200 https://registry.npmjs.org/hardhat
19 verbose headers { date: 'Sat, 30 Apr 2022 00:44:16 GMT',
19 verbose headers 'content-type': 'application/json',
19 verbose headers 'transfer-encoding': 'chunked',
19 verbose headers connection: 'keep-alive',
19 verbose headers 'cf-ray': '703c3f7c1a8ee6d8-EWR',
19 verbose headers 'access-control-allow-origin': '*',
19 verbose headers 'cache-control': 'public, max-age=300',
19 verbose headers etag: 'W/"f24a780cee47a5024e6b078fe5a956e5"',
19 verbose headers 'last-modified': 'Tue, 05 Apr 2022 18:25:04 GMT',
19 verbose headers vary: 'accept-encoding, accept',
19 verbose headers 'cf-cache-status': 'REVALIDATED',
19 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
19 verbose headers 'x-amz-replication-status': 'COMPLETED',
19 verbose headers server: 'cloudflare',
19 verbose headers 'content-encoding': 'gzip' }
20 silly get cb [ 200,
20 silly get { date: 'Sat, 30 Apr 2022 00:44:16 GMT',
20 silly get 'content-type': 'application/json',
20 silly get 'transfer-encoding': 'chunked',
20 silly get connection: 'keep-alive',
20 silly get 'cf-ray': '703c3f7c1a8ee6d8-EWR',
20 silly get 'access-control-allow-origin': '*',
20 silly get 'cache-control': 'public, max-age=300',
20 silly get etag: 'W/"f24a780cee47a5024e6b078fe5a956e5"',
20 silly get 'last-modified': 'Tue, 05 Apr 2022 18:25:04 GMT',
20 silly get vary: 'accept-encoding, accept',
20 silly get 'cf-cache-status': 'REVALIDATED',
20 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
20 silly get 'x-amz-replication-status': 'COMPLETED',
20 silly get server: 'cloudflare',
20 silly get 'content-encoding': 'gzip' } ]
21 verbose get saving hardhat to /home/gepopa/.npm/registry.npmjs.org/hardhat/.cache.json
22 silly install normalizeTree
23 silly loadCurrentTree Finishing
24 silly loadIdealTree Starting
25 silly install loadIdealTree
26 silly cloneCurrentTree Starting
27 silly install cloneCurrentTreeToIdealTree
28 silly cloneCurrentTree Finishing
29 silly loadShrinkwrap Starting
30 silly install loadShrinkwrap
31 silly loadShrinkwrap Finishing
32 silly loadAllDepsIntoIdealTree Starting
33 silly install loadAllDepsIntoIdealTree
34 silly resolveWithNewModule [email protected] checking installable status
35 silly cache add args [ 'hardhat', null ]
36 verbose cache add spec hardhat
37 silly cache add parsed spec Result {
37 silly cache add raw: 'hardhat',
37 silly cache add scope: null,
37 silly cache add name: 'hardhat',
37 silly cache add rawSpec: '',
37 silly cache add spec: 'latest',
37 silly cache add type: 'tag' }
38 silly addNamed hardhat@latest
39 verbose addNamed "latest" is being treated as a dist-tag for hardhat
40 info addNameTag [ 'hardhat', 'latest' ]
41 silly mapToRegistry name hardhat
42 silly mapToRegistry using default registry
43 silly mapToRegistry registry https://registry.npmjs.org/
44 silly mapToRegistry uri https://registry.npmjs.org/hardhat
45 verbose addNameTag registry:https://registry.npmjs.org/hardhat not in flight; fetching
46 verbose get https://registry.npmjs.org/hardhat not expired, no request
47 silly addNameTag next cb for hardhat with tag latest
48 silly addNamed [email protected]
49 verbose addNamed "2.9.3" is a plain semver version for hardhat
50 silly mapToRegistry name hardhat
51 silly mapToRegistry using default registry
52 silly mapToRegistry registry https://registry.npmjs.org/
53 silly mapToRegistry uri https://registry.npmjs.org/hardhat
54 verbose addRemoteTarball https://registry.npmjs.org/hardhat/-/hardhat-2.9.3.tgz not in flight; adding
55 verbose addRemoteTarball [ 'https://registry.npmjs.org/hardhat/-/hardhat-2.9.3.tgz',
55 verbose addRemoteTarball '4759dc3c468c7d15f34334ca1be7d59b04e47b1e' ]
56 info retry fetch attempt 1 at 8:44:17 PM
57 info attempt registry request try #1 at 8:44:17 PM
58 http fetch GET https://registry.npmjs.org/hardhat/-/hardhat-2.9.3.tgz
59 http fetch 200 https://registry.npmjs.org/hardhat/-/hardhat-2.9.3.tgz
60 silly fetchAndShaCheck shasum 4759dc3c468c7d15f34334ca1be7d59b04e47b1e
61 verbose addTmpTarball /tmp/npm-26314-65f53329/registry.npmjs.org/hardhat/-/hardhat-2.9.3.tgz not in flight; adding
62 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
63 silly cache afterAdd [email protected]
64 verbose afterAdd /home/gepopa/.npm/hardhat/2.9.3/package/package.json not in flight; writing
65 verbose afterAdd /home/gepopa/.npm/hardhat/2.9.3/package/package.json written
66 silly fetchNamedPackageData @ethereumjs/block
67 silly mapToRegistry name @ethereumjs/block
68 silly mapToRegistry scope (from package name) @ethereumjs
69 verbose mapToRegistry no registry URL found in name for scope @ethereumjs
70 silly mapToRegistry using default registry
71 silly mapToRegistry registry https://registry.npmjs.org/
72 silly mapToRegistry uri https://registry.npmjs.org/@ethereumjs%2fblock
73 silly fetchNamedPackageData @ethereumjs/blockchain
74 silly mapToRegistry name @ethereumjs/blockchain
75 silly mapToRegistry scope (from package name) @ethereumjs
76 verbose mapToRegistry no registry URL found in name for scope @ethereumjs
77 silly mapToRegistry using default registry
78 silly mapToRegistry registry https://registry.npmjs.org/
79 silly mapToRegistry uri https://registry.npmjs.org/@ethereumjs%2fblockchain
80 silly fetchNamedPackageData @ethereumjs/common
81 silly mapToRegistry name @ethereumjs/common
82 silly mapToRegistry scope (from package name) @ethereumjs
83 verbose mapToRegistry no registry URL found in name for scope @ethereumjs
84 silly mapToRegistry using default registry
85 silly mapToRegistry registry https://registry.npmjs.org/
86 silly mapToRegistry uri https://registry.npmjs.org/@ethereumjs%2fcommon
87 silly fetchNamedPackageData @ethereumjs/tx
88 silly mapToRegistry name @ethereumjs/tx
89 silly mapToRegistry scope (from package name) @ethereumjs
90 verbose mapToRegistry no registry URL found in name for scope @ethereumjs
91 silly mapToRegistry using default registry
92 silly mapToRegistry registry https://registry.npmjs.org/
93 silly mapToRegistry uri https://registry.npmjs.org/@ethereumjs%2ftx
94 silly fetchNamedPackageData @ethereumjs/vm
95 silly mapToRegistry name @ethereumjs/vm
96 silly mapToRegistry scope (from package name) @ethereumjs
97 verbose mapToRegistry no registry URL found in name for scope @ethereumjs
98 silly mapToRegistry using default registry
99 silly mapToRegistry registry https://registry.npmjs.org/
100 silly mapToRegistry uri https://registry.npmjs.org/@ethereumjs%2fvm
101 silly fetchNamedPackageData @ethersproject/abi
102 silly mapToRegistry name @ethersproject/abi
103 silly mapToRegistry scope (from package name) @ethersproject
104 verbose mapToRegistry no registry URL found in name for scope @ethersproject
105 silly mapToRegistry using default registry
106 silly mapToRegistry registry https://registry.npmjs.org/
107 silly mapToRegistry uri https://registry.npmjs.org/@ethersproject%2fabi
108 silly fetchNamedPackageData @metamask/eth-sig-util
109 silly mapToRegistry name @metamask/eth-sig-util
110 silly mapToRegistry scope (from package name) @metamask
111 verbose mapToRegistry no registry URL found in name for scope @metamask
112 silly mapToRegistry using default registry
113 silly mapToRegistry registry https://registry.npmjs.org/
114 silly mapToRegistry uri https://registry.npmjs.org/@metamask%2feth-sig-util
115 silly fetchNamedPackageData @sentry/node
116 silly mapToRegistry name @sentry/node
117 silly mapToRegistry scope (from package name) @sentry
118 verbose mapToRegistry no registry URL found in name for scope @sentry
119 silly mapToRegistry using default registry
120 silly mapToRegistry registry https://registry.npmjs.org/
121 silly mapToRegistry uri https://registry.npmjs.org/@sentry%2fnode
122 silly fetchNamedPackageData @solidity-parser/parser
123 silly mapToRegistry name @solidity-parser/parser
124 silly mapToRegistry scope (from package name) @solidity-parser
125 verbose mapToRegistry no registry URL found in name for scope @solidity-parser
126 silly mapToRegistry using default registry
127 silly mapToRegistry registry https://registry.npmjs.org/
128 silly mapToRegistry uri https://registry.npmjs.org/@solidity-parser%2fparser
129 silly fetchNamedPackageData @types/bn.js
130 silly mapToRegistry name @types/bn.js
131 silly mapToRegistry scope (from package name) @types
132 verbose mapToRegistry no registry URL found in name for scope @types
133 silly mapToRegistry using default registry
134 silly mapToRegistry registry https://registry.npmjs.org/
135 silly mapToRegistry uri https://registry.npmjs.org/@types%2fbn.js
136 silly fetchNamedPackageData @types/lru-cache
137 silly mapToRegistry name @types/lru-cache
138 silly mapToRegistry scope (from package name) @types
139 verbose mapToRegistry no registry URL found in name for scope @types
140 silly mapToRegistry using default registry
141 silly mapToRegistry registry https://registry.npmjs.org/
142 silly mapToRegistry uri https://registry.npmjs.org/@types%2flru-cache
143 silly fetchNamedPackageData abort-controller
144 silly mapToRegistry name abort-controller
145 silly mapToRegistry using default registry
146 silly mapToRegistry registry https://registry.npmjs.org/
147 silly mapToRegistry uri https://registry.npmjs.org/abort-controller
148 silly fetchNamedPackageData adm-zip
149 silly mapToRegistry name adm-zip
150 silly mapToRegistry using default registry
151 silly mapToRegistry registry https://registry.npmjs.org/
152 silly mapToRegistry uri https://registry.npmjs.org/adm-zip
153 silly fetchNamedPackageData aggregate-error
154 silly mapToRegistry name aggregate-error
155 silly mapToRegistry using default registry
156 silly mapToRegistry registry https://registry.npmjs.org/
157 silly mapToRegistry uri https://registry.npmjs.org/aggregate-error
158 silly fetchNamedPackageData ansi-escapes
159 silly mapToRegistry name ansi-escapes
160 silly mapToRegistry using default registry
161 silly mapToRegistry registry https://registry.npmjs.org/
162 silly mapToRegistry uri https://registry.npmjs.org/ansi-escapes
163 silly fetchNamedPackageData chalk
164 silly mapToRegistry name chalk
165 silly mapToRegistry using default registry
166 silly mapToRegistry registry https://registry.npmjs.org/
167 silly mapToRegistry uri https://registry.npmjs.org/chalk
168 silly fetchNamedPackageData chokidar
169 silly mapToRegistry name chokidar
170 silly mapToRegistry using default registry
171 silly mapToRegistry registry https://registry.npmjs.org/
172 silly mapToRegistry uri https://registry.npmjs.org/chokidar
173 silly fetchNamedPackageData ci-info
174 silly mapToRegistry name ci-info
175 silly mapToRegistry using default registry
176 silly mapToRegistry registry https://registry.npmjs.org/
177 silly mapToRegistry uri https://registry.npmjs.org/ci-info
178 silly fetchNamedPackageData debug
179 silly mapToRegistry name debug
180 silly mapToRegistry using default registry
181 silly mapToRegistry registry https://registry.npmjs.org/
182 silly mapToRegistry uri https://registry.npmjs.org/debug
183 silly fetchNamedPackageData enquirer
184 silly mapToRegistry name enquirer
185 silly mapToRegistry using default registry
186 silly mapToRegistry registry https://registry.npmjs.org/
187 silly mapToRegistry uri https://registry.npmjs.org/enquirer
188 silly fetchNamedPackageData env-paths
189 silly mapToRegistry name env-paths
190 silly mapToRegistry using default registry
191 silly mapToRegistry registry https://registry.npmjs.org/
192 silly mapToRegistry uri https://registry.npmjs.org/env-paths
193 silly fetchNamedPackageData ethereum-cryptography
194 silly mapToRegistry name ethereum-cryptography
195 silly mapToRegistry using default registry
196 silly mapToRegistry registry https://registry.npmjs.org/
197 silly mapToRegistry uri https://registry.npmjs.org/ethereum-cryptography
198 silly fetchNamedPackageData ethereumjs-abi
199 silly mapToRegistry name ethereumjs-abi
200 silly mapToRegistry using default registry
201 silly mapToRegistry registry https://registry.npmjs.org/
202 silly mapToRegistry uri https://registry.npmjs.org/ethereumjs-abi
203 silly fetchNamedPackageData ethereumjs-util
204 silly mapToRegistry name ethereumjs-util
205 silly mapToRegistry using default registry
206 silly mapToRegistry registry https://registry.npmjs.org/
207 silly mapToRegistry uri https://registry.npmjs.org/ethereumjs-util
208 silly fetchNamedPackageData find-up
209 silly mapToRegistry name find-up
210 silly mapToRegistry using default registry
211 silly mapToRegistry registry https://registry.npmjs.org/
212 silly mapToRegistry uri https://registry.npmjs.org/find-up
213 silly fetchNamedPackageData fp-ts
214 silly mapToRegistry name fp-ts
215 silly mapToRegistry using default registry
216 silly mapToRegistry registry https://registry.npmjs.org/
217 silly mapToRegistry uri https://registry.npmjs.org/fp-ts
218 silly fetchNamedPackageData fs-extra
219 silly mapToRegistry name fs-extra
220 silly mapToRegistry using default registry
221 silly mapToRegistry registry https://registry.npmjs.org/
222 silly mapToRegistry uri https://registry.npmjs.org/fs-extra
223 silly fetchNamedPackageData glob
224 silly mapToRegistry name glob
225 silly mapToRegistry using default registry
226 silly mapToRegistry registry https://registry.npmjs.org/
227 silly mapToRegistry uri https://registry.npmjs.org/glob
228 silly fetchNamedPackageData immutable
229 silly mapToRegistry name immutable
230 silly mapToRegistry using default registry
231 silly mapToRegistry registry https://registry.npmjs.org/
232 silly mapToRegistry uri https://registry.npmjs.org/immutable
233 silly fetchNamedPackageData io-ts
234 silly mapToRegistry name io-ts
235 silly mapToRegistry using default registry
236 silly mapToRegistry registry https://registry.npmjs.org/
237 silly mapToRegistry uri https://registry.npmjs.org/io-ts
238 silly fetchNamedPackageData lodash
239 silly mapToRegistry name lodash
240 silly mapToRegistry using default registry
241 silly mapToRegistry registry https://registry.npmjs.org/
242 silly mapToRegistry uri https://registry.npmjs.org/lodash
243 silly fetchNamedPackageData merkle-patricia-tree
244 silly mapToRegistry name merkle-patricia-tree
245 silly mapToRegistry using default registry
246 silly mapToRegistry registry https://registry.npmjs.org/
247 silly mapToRegistry uri https://registry.npmjs.org/merkle-patricia-tree
248 silly fetchNamedPackageData mnemonist
249 silly mapToRegistry name mnemonist
250 silly mapToRegistry using default registry
251 silly mapToRegistry registry https://registry.npmjs.org/
252 silly mapToRegistry uri https://registry.npmjs.org/mnemonist
253 silly fetchNamedPackageData mocha
254 silly mapToRegistry name mocha
255 silly mapToRegistry using default registry
256 silly mapToRegistry registry https://registry.npmjs.org/
257 silly mapToRegistry uri https://registry.npmjs.org/mocha
258 silly fetchNamedPackageData p-map
259 silly mapToRegistry name p-map
260 silly mapToRegistry using default registry
261 silly mapToRegistry registry https://registry.npmjs.org/
262 silly mapToRegistry uri https://registry.npmjs.org/p-map
263 silly fetchNamedPackageData qs
264 silly mapToRegistry name qs
265 silly mapToRegistry using default registry
266 silly mapToRegistry registry https://registry.npmjs.org/
267 silly mapToRegistry uri https://registry.npmjs.org/qs
268 silly fetchNamedPackageData raw-body
269 silly mapToRegistry name raw-body
270 silly mapToRegistry using default registry
271 silly mapToRegistry registry https://registry.npmjs.org/
272 silly mapToRegistry uri https://registry.npmjs.org/raw-body
273 silly fetchNamedPackageData resolve
274 silly mapToRegistry name resolve
275 silly mapToRegistry using default registry
276 silly mapToRegistry registry https://registry.npmjs.org/
277 silly mapToRegistry uri https://registry.npmjs.org/resolve
278 silly fetchNamedPackageData semver
279 silly mapToRegistry name semver
280 silly mapToRegistry using default registry
281 silly mapToRegistry registry https://registry.npmjs.org/
282 silly mapToRegistry uri https://registry.npmjs.org/semver
283 silly fetchNamedPackageData slash
284 silly mapToRegistry name slash
285 silly mapToRegistry using default registry
286 silly mapToRegistry registry https://registry.npmjs.org/
287 silly mapToRegistry uri https://registry.npmjs.org/slash
288 silly fetchNamedPackageData solc
289 silly mapToRegistry name solc
290 silly mapToRegistry using default registry
291 silly mapToRegistry registry https://registry.npmjs.org/
292 silly mapToRegistry uri https://registry.npmjs.org/solc
293 silly fetchNamedPackageData source-map-support
294 silly mapToRegistry name source-map-support
295 silly mapToRegistry using default registry
296 silly mapToRegistry registry https://registry.npmjs.org/
297 silly mapToRegistry uri https://registry.npmjs.org/source-map-support
298 silly fetchNamedPackageData stacktrace-parser
299 silly mapToRegistry name stacktrace-parser
300 silly mapToRegistry using default registry
301 silly mapToRegistry registry https://registry.npmjs.org/
302 silly mapToRegistry uri https://registry.npmjs.org/stacktrace-parser
303 silly fetchNamedPackageData true-case-path
304 silly mapToRegistry name true-case-path
305 silly mapToRegistry using default registry
306 silly mapToRegistry registry https://registry.npmjs.org/
307 silly mapToRegistry uri https://registry.npmjs.org/true-case-path
308 silly fetchNamedPackageData tsort
309 silly mapToRegistry name tsort
310 silly mapToRegistry using default registry
311 silly mapToRegistry registry https://registry.npmjs.org/
312 silly mapToRegistry uri https://registry.npmjs.org/tsort
313 silly fetchNamedPackageData undici
314 silly mapToRegistry name undici
315 silly mapToRegistry using default registry
316 silly mapToRegistry registry https://registry.npmjs.org/
317 silly mapToRegistry uri https://registry.npmjs.org/undici
318 silly fetchNamedPackageData uuid
319 silly mapToRegistry name uuid
320 silly mapToRegistry using default registry
321 silly mapToRegistry registry https://registry.npmjs.org/
322 silly mapToRegistry uri https://registry.npmjs.org/uuid
323 silly fetchNamedPackageData ws
324 silly mapToRegistry name ws
325 silly mapToRegistry using default registry
326 silly mapToRegistry registry https://registry.npmjs.org/
327 silly mapToRegistry uri https://registry.npmjs.org/ws
328 verbose request uri https://registry.npmjs.org/@ethereumjs%2fblock
329 verbose request no auth needed
330 info attempt registry request try #1 at 8:44:17 PM
331 http request GET https://registry.npmjs.org/@ethereumjs%2fblock
332 verbose request uri https://registry.npmjs.org/@ethereumjs%2fblockchain
333 verbose request no auth needed
334 info attempt registry request try #1 at 8:44:17 PM
335 http request GET https://registry.npmjs.org/@ethereumjs%2fblockchain
336 verbose request uri https://registry.npmjs.org/@ethereumjs%2fcommon
337 verbose request no auth needed
338 info attempt registry request try #1 at 8:44:17 PM
339 http request GET https://registry.npmjs.org/@ethereumjs%2fcommon
340 verbose request uri https://registry.npmjs.org/@ethereumjs%2ftx
341 verbose request no auth needed
342 info attempt registry request try #1 at 8:44:17 PM
343 http request GET https://registry.npmjs.org/@ethereumjs%2ftx
344 verbose request uri https://registry.npmjs.org/@ethereumjs%2fvm
345 verbose request no auth needed
346 info attempt registry request try #1 at 8:44:17 PM
347 http request GET https://registry.npmjs.org/@ethereumjs%2fvm
348 verbose request uri https://registry.npmjs.org/@ethersproject%2fabi
349 verbose request no auth needed
350 info attempt registry request try #1 at 8:44:17 PM
351 http request GET https://registry.npmjs.org/@ethersproject%2fabi
352 verbose request uri https://registry.npmjs.org/@metamask%2feth-sig-util
353 verbose request no auth needed
354 info attempt registry request try #1 at 8:44:17 PM
355 http request GET https://registry.npmjs.org/@metamask%2feth-sig-util
356 verbose request uri https://registry.npmjs.org/@sentry%2fnode
357 verbose request no auth needed
358 info attempt registry request try #1 at 8:44:17 PM
359 http request GET https://registry.npmjs.org/@sentry%2fnode
360 verbose request uri https://registry.npmjs.org/@solidity-parser%2fparser
361 verbose request no auth needed
362 info attempt registry request try #1 at 8:44:17 PM
363 http request GET https://registry.npmjs.org/@solidity-parser%2fparser
364 verbose request uri https://registry.npmjs.org/@types%2fbn.js
365 verbose request no auth needed
366 info attempt registry request try #1 at 8:44:17 PM
367 http request GET https://registry.npmjs.org/@types%2fbn.js
368 verbose request uri https://registry.npmjs.org/@types%2flru-cache
369 verbose request no auth needed
370 info attempt registry request try #1 at 8:44:17 PM
371 http request GET https://registry.npmjs.org/@types%2flru-cache
372 verbose request uri https://registry.npmjs.org/abort-controller
373 verbose request no auth needed
374 info attempt registry request try #1 at 8:44:17 PM
375 http request GET https://registry.npmjs.org/abort-controller
376 verbose request uri https://registry.npmjs.org/adm-zip
377 verbose request no auth needed
378 info attempt registry request try #1 at 8:44:17 PM
379 http request GET https://registry.npmjs.org/adm-zip
380 verbose request uri https://registry.npmjs.org/aggregate-error
381 verbose request no auth needed
382 info attempt registry request try #1 at 8:44:17 PM
383 http request GET https://registry.npmjs.org/aggregate-error
384 verbose request uri https://registry.npmjs.org/ansi-escapes
385 verbose request no auth needed
386 info attempt registry request try #1 at 8:44:17 PM
387 http request GET https://registry.npmjs.org/ansi-escapes
388 verbose request uri https://registry.npmjs.org/chalk
389 verbose request no auth needed
390 info attempt registry request try #1 at 8:44:17 PM
391 http request GET https://registry.npmjs.org/chalk
392 verbose request uri https://registry.npmjs.org/chokidar
393 verbose request no auth needed
394 info attempt registry request try #1 at 8:44:17 PM
395 http request GET https://registry.npmjs.org/chokidar
396 verbose request uri https://registry.npmjs.org/ci-info
397 verbose request no auth needed
398 info attempt registry request try #1 at 8:44:17 PM
399 http request GET https://registry.npmjs.org/ci-info
400 verbose request uri https://registry.npmjs.org/debug
401 verbose request no auth needed
402 info attempt registry request try #1 at 8:44:17 PM
403 http request GET https://registry.npmjs.org/debug
404 verbose request uri https://registry.npmjs.org/enquirer
405 verbose request no auth needed
406 info attempt registry request try #1 at 8:44:17 PM
407 http request GET https://registry.npmjs.org/enquirer
408 verbose request uri https://registry.npmjs.org/env-paths
409 verbose request no auth needed
410 info attempt registry request try #1 at 8:44:17 PM
411 http request GET https://registry.npmjs.org/env-paths
412 verbose request uri https://registry.npmjs.org/ethereum-cryptography
413 verbose request no auth needed
414 info attempt registry request try #1 at 8:44:17 PM
415 http request GET https://registry.npmjs.org/ethereum-cryptography
416 verbose request uri https://registry.npmjs.org/ethereumjs-abi
417 verbose request no auth needed
418 info attempt registry request try #1 at 8:44:17 PM
419 http request GET https://registry.npmjs.org/ethereumjs-abi
420 verbose request uri https://registry.npmjs.org/ethereumjs-util
421 verbose request no auth needed
422 info attempt registry request try #1 at 8:44:17 PM
423 http request GET https://registry.npmjs.org/ethereumjs-util
424 verbose request uri https://registry.npmjs.org/find-up
425 verbose request no auth needed
426 info attempt registry request try #1 at 8:44:17 PM
427 http request GET https://registry.npmjs.org/find-up
428 verbose request uri https://registry.npmjs.org/fp-ts
429 verbose request no auth needed
430 info attempt registry request try #1 at 8:44:17 PM
431 http request GET https://registry.npmjs.org/fp-ts
432 verbose request uri https://registry.npmjs.org/fs-extra
433 verbose request no auth needed
434 info attempt registry request try #1 at 8:44:17 PM
435 http request GET https://registry.npmjs.org/fs-extra
436 verbose request uri https://registry.npmjs.org/glob
437 verbose request no auth needed
438 info attempt registry request try #1 at 8:44:17 PM
439 http request GET https://registry.npmjs.org/glob
440 verbose request uri https://registry.npmjs.org/immutable
441 verbose request no auth needed
442 info attempt registry request try #1 at 8:44:17 PM
443 http request GET https://registry.npmjs.org/immutable
444 verbose request uri https://registry.npmjs.org/io-ts
445 verbose request no auth needed
446 info attempt registry request try #1 at 8:44:17 PM
447 http request GET https://registry.npmjs.org/io-ts
448 verbose request uri https://registry.npmjs.org/lodash
449 verbose request no auth needed
450 info attempt registry request try #1 at 8:44:17 PM
451 http request GET https://registry.npmjs.org/lodash
452 verbose request uri https://registry.npmjs.org/merkle-patricia-tree
453 verbose request no auth needed
454 info attempt registry request try #1 at 8:44:17 PM
455 http request GET https://registry.npmjs.org/merkle-patricia-tree
456 verbose request uri https://registry.npmjs.org/mnemonist
457 verbose request no auth needed
458 info attempt registry request try #1 at 8:44:17 PM
459 http request GET https://registry.npmjs.org/mnemonist
460 verbose request uri https://registry.npmjs.org/mocha
461 verbose request no auth needed
462 info attempt registry request try #1 at 8:44:17 PM
463 http request GET https://registry.npmjs.org/mocha
464 verbose request uri https://registry.npmjs.org/p-map
465 verbose request no auth needed
466 info attempt registry request try #1 at 8:44:17 PM
467 http request GET https://registry.npmjs.org/p-map
468 verbose request uri https://registry.npmjs.org/qs
469 verbose request no auth needed
470 info attempt registry request try #1 at 8:44:17 PM
471 http request GET https://registry.npmjs.org/qs
472 verbose request uri https://registry.npmjs.org/raw-body
473 verbose request no auth needed
474 info attempt registry request try #1 at 8:44:17 PM
475 http request GET https://registry.npmjs.org/raw-body
476 verbose request uri https://registry.npmjs.org/resolve
477 verbose request no auth needed
478 info attempt registry request try #1 at 8:44:17 PM
479 http request GET https://registry.npmjs.org/resolve
480 verbose request uri https://registry.npmjs.org/semver
481 verbose request no auth needed
482 info attempt registry request try #1 at 8:44:17 PM
483 http request GET https://registry.npmjs.org/semver
484 verbose request uri https://registry.npmjs.org/slash
485 verbose request no auth needed
486 info attempt registry request try #1 at 8:44:17 PM
487 http request GET https://registry.npmjs.org/slash
488 verbose request uri https://registry.npmjs.org/solc
489 verbose request no auth needed
490 info attempt registry request try #1 at 8:44:17 PM
491 http request GET https://registry.npmjs.org/solc
492 verbose request uri https://registry.npmjs.org/source-map-support
493 verbose request no auth needed
494 info attempt registry request try #1 at 8:44:17 PM
495 http request GET https://registry.npmjs.org/source-map-support
496 verbose request uri https://registry.npmjs.org/stacktrace-parser
497 verbose request no auth needed
498 info attempt registry request try #1 at 8:44:17 PM
499 http request GET https://registry.npmjs.org/stacktrace-parser
500 verbose request uri https://registry.npmjs.org/true-case-path
501 verbose request no auth needed
502 info attempt registry request try #1 at 8:44:17 PM
503 http request GET https://registry.npmjs.org/true-case-path
504 verbose request uri https://registry.npmjs.org/tsort
505 verbose request no auth needed
506 info attempt registry request try #1 at 8:44:17 PM
507 http request GET https://registry.npmjs.org/tsort
508 verbose request uri https://registry.npmjs.org/undici
509 verbose request no auth needed
510 info attempt registry request try #1 at 8:44:17 PM
511 http request GET https://registry.npmjs.org/undici
512 verbose request uri https://registry.npmjs.org/uuid
513 verbose request no auth needed
514 info attempt registry request try #1 at 8:44:17 PM
515 http request GET https://registry.npmjs.org/uuid
516 verbose request uri https://registry.npmjs.org/ws
517 verbose request no auth needed
518 info attempt registry request try #1 at 8:44:17 PM
519 http request GET https://registry.npmjs.org/ws
520 http 200 https://registry.npmjs.org/ansi-escapes
521 verbose headers { date: 'Sat, 30 Apr 2022 00:44:17 GMT',
521 verbose headers 'content-type': 'application/json',
521 verbose headers 'transfer-encoding': 'chunked',
521 verbose headers connection: 'keep-alive',
521 verbose headers 'cf-ray': '703c3f806d068c71-EWR',
521 verbose headers 'access-control-allow-origin': '*',
521 verbose headers age: '207',
521 verbose headers 'cache-control': 'public, max-age=300',
521 verbose headers etag: 'W/"1f1f2aff1e6860ed86c97b88ffb7bace"',
521 verbose headers 'last-modified': 'Mon, 11 Apr 2022 14:18:44 GMT',
521 verbose headers vary: 'accept-encoding, accept',
521 verbose headers 'cf-cache-status': 'HIT',
521 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
521 verbose headers 'x-amz-replication-status': 'COMPLETED',
521 verbose headers server: 'cloudflare',
521 verbose headers 'content-encoding': 'gzip' }
522 silly get cb [ 200,
522 silly get { date: 'Sat, 30 Apr 2022 00:44:17 GMT',
522 silly get 'content-type': 'application/json',
522 silly get 'transfer-encoding': 'chunked',
522 silly get connection: 'keep-alive',
522 silly get 'cf-ray': '703c3f806d068c71-EWR',
522 silly get 'access-control-allow-origin': '*',
522 silly get age: '207',
522 silly get 'cache-control': 'public, max-age=300',
522 silly get etag: 'W/"1f1f2aff1e6860ed86c97b88ffb7bace"',
522 silly get 'last-modified': 'Mon, 11 Apr 2022 14:18:44 GMT',
522 silly get vary: 'accept-encoding, accept',
522 silly get 'cf-cache-status': 'HIT',
522 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
522 silly get 'x-amz-replication-status': 'COMPLETED',
522 silly get server: 'cloudflare',
522 silly get 'content-encoding': 'gzip' } ]
523 verbose get saving ansi-escapes to /home/gepopa/.npm/registry.npmjs.org/ansi-escapes/.cache.json
524 silly resolveWithNewModule [email protected] checking installable status
525 silly cache add args [ 'ansi-escapes@^4.3.0', null ]
526 verbose cache add spec ansi-escapes@^4.3.0
527 silly cache add parsed spec Result {
527 silly cache add raw: 'ansi-escapes@^4.3.0',
527 silly cache add scope: null,
527 silly cache add name: 'ansi-escapes',
527 silly cache add rawSpec: '^4.3.0',
527 silly cache add spec: '>=4.3.0 <5.0.0',
527 silly cache add type: 'range' }
528 silly addNamed ansi-escapes@>=4.3.0 <5.0.0
529 verbose addNamed ">=4.3.0 <5.0.0" is a valid semver range for ansi-escapes
530 silly addNameRange { name: 'ansi-escapes', range: '>=4.3.0 <5.0.0', hasData: false }
531 silly mapToRegistry name ansi-escapes
532 silly mapToRegistry using default registry
533 silly mapToRegistry registry https://registry.npmjs.org/
534 silly mapToRegistry uri https://registry.npmjs.org/ansi-escapes
535 verbose addNameRange registry:https://registry.npmjs.org/ansi-escapes not in flight; fetching
536 verbose get https://registry.npmjs.org/ansi-escapes not expired, no request
537 silly addNameRange number 2 { name: 'ansi-escapes', range: '>=4.3.0 <5.0.0', hasData: true }
538 silly addNameRange versions [ 'ansi-escapes',
538 silly addNameRange [ '1.0.0',
538 silly addNameRange '1.1.0',
538 silly addNameRange '1.1.1',
538 silly addNameRange '1.2.0',
538 silly addNameRange '1.3.0',
538 silly addNameRange '1.4.0',
538 silly addNameRange '2.0.0',
538 silly addNameRange '3.0.0',
538 silly addNameRange '3.1.0',
538 silly addNameRange '3.2.0',
538 silly addNameRange '4.0.0',
538 silly addNameRange '4.0.1',
538 silly addNameRange '4.1.0',
538 silly addNameRange '4.2.0',
538 silly addNameRange '4.2.1',
538 silly addNameRange '4.3.0',
538 silly addNameRange '4.3.1',
538 silly addNameRange '4.3.2',
538 silly addNameRange '5.0.0' ] ]
539 silly addNamed [email protected]
540 verbose addNamed "4.3.2" is a plain semver version for ansi-escapes
541 silly mapToRegistry name ansi-escapes
542 silly mapToRegistry using default registry
543 silly mapToRegistry registry https://registry.npmjs.org/
544 silly mapToRegistry uri https://registry.npmjs.org/ansi-escapes
545 verbose addRemoteTarball https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz not in flight; adding
546 verbose addRemoteTarball [ 'https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz',
546 verbose addRemoteTarball '6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e' ]
547 info retry fetch attempt 1 at 8:44:17 PM
548 info attempt registry request try #1 at 8:44:17 PM
549 http fetch GET https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz
550 http 200 https://registry.npmjs.org/p-map
551 verbose headers { date: 'Sat, 30 Apr 2022 00:44:17 GMT',
551 verbose headers 'content-type': 'application/json',
551 verbose headers 'transfer-encoding': 'chunked',
551 verbose headers connection: 'keep-alive',
551 verbose headers 'cf-ray': '703c3f806aa78c78-EWR',
551 verbose headers 'access-control-allow-origin': '*',
551 verbose headers age: '184',
551 verbose headers 'cache-control': 'public, max-age=300',
551 verbose headers etag: 'W/"03c30cb4095207d716065f6a6b80a27a"',
551 verbose headers 'last-modified': 'Sun, 09 Jan 2022 22:29:37 GMT',
551 verbose headers vary: 'accept-encoding, accept',
551 verbose headers 'cf-cache-status': 'HIT',
551 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
551 verbose headers 'x-amz-replication-status': 'COMPLETED',
551 verbose headers server: 'cloudflare',
551 verbose headers 'content-encoding': 'gzip' }
552 silly get cb [ 200,
552 silly get { date: 'Sat, 30 Apr 2022 00:44:17 GMT',
552 silly get 'content-type': 'application/json',
552 silly get 'transfer-encoding': 'chunked',
552 silly get connection: 'keep-alive',
552 silly get 'cf-ray': '703c3f806aa78c78-EWR',
552 silly get 'access-control-allow-origin': '*',
552 silly get age: '184',
552 silly get 'cache-control': 'public, max-age=300',
552 silly get etag: 'W/"03c30cb4095207d716065f6a6b80a27a"',
552 silly get 'last-modified': 'Sun, 09 Jan 2022 22:29:37 GMT',
552 silly get vary: 'accept-encoding, accept',
552 silly get 'cf-cache-status': 'HIT',
552 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
552 silly get 'x-amz-replication-status': 'COMPLETED',
552 silly get server: 'cloudflare',
552 silly get 'content-encoding': 'gzip' } ]
553 verbose get saving p-map to /home/gepopa/.npm/registry.npmjs.org/p-map/.cache.json
554 http 200 https://registry.npmjs.org/ci-info
555 verbose headers { date: 'Sat, 30 Apr 2022 00:44:17 GMT',
555 verbose headers 'content-type': 'application/json',
555 verbose headers 'transfer-encoding': 'chunked',
555 verbose headers connection: 'keep-alive',
555 verbose headers 'cf-ray': '703c3f806eb3e849-EWR',
555 verbose headers 'access-control-allow-origin': '*',
555 verbose headers age: '62',
555 verbose headers 'cache-control': 'public, max-age=300',
555 verbose headers etag: 'W/"66bcdf37ddebdf7f7ec509c32e24467d"',
555 verbose headers 'last-modified': 'Tue, 12 Apr 2022 06:20:47 GMT',
555 verbose headers vary: 'accept-encoding, accept',
555 verbose headers 'cf-cache-status': 'HIT',
555 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
555 verbose headers 'x-amz-replication-status': 'COMPLETED',
555 verbose headers server: 'cloudflare',
555 verbose headers 'content-encoding': 'gzip' }
556 silly get cb [ 200,
556 silly get { date: 'Sat, 30 Apr 2022 00:44:17 GMT',
556 silly get 'content-type': 'application/json',
556 silly get 'transfer-encoding': 'chunked',
556 silly get connection: 'keep-alive',
556 silly get 'cf-ray': '703c3f806eb3e849-EWR',
556 silly get 'access-control-allow-origin': '*',
556 silly get age: '62',
556 silly get 'cache-control': 'public, max-age=300',
556 silly get etag: 'W/"66bcdf37ddebdf7f7ec509c32e24467d"',
556 silly get 'last-modified': 'Tue, 12 Apr 2022 06:20:47 GMT',
556 silly get vary: 'accept-encoding, accept',
556 silly get 'cf-cache-status': 'HIT',
556 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
556 silly get 'x-amz-replication-status': 'COMPLETED',
556 silly get server: 'cloudflare',
556 silly get 'content-encoding': 'gzip' } ]
557 verbose get saving ci-info to /home/gepopa/.npm/registry.npmjs.org/ci-info/.cache.json
558 http 200 https://registry.npmjs.org/abort-controller
559 verbose headers { date: 'Sat, 30 Apr 2022 00:44:17 GMT',
559 verbose headers 'content-type': 'application/json',
559 verbose headers 'transfer-encoding': 'chunked',
559 verbose headers connection: 'keep-alive',
559 verbose headers 'cf-ray': '703c3f806c78189d-EWR',
559 verbose headers 'access-control-allow-origin': '*',
559 verbose headers age: '242',
559 verbose headers 'cache-control': 'public, max-age=300',
559 verbose headers etag: 'W/"8402acb0dc30fde48080087bc16a7adc"',
559 verbose headers 'last-modified': 'Mon, 11 Apr 2022 12:25:04 GMT',
559 verbose headers vary: 'accept-encoding, accept',
559 verbose headers 'cf-cache-status': 'HIT',
559 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
559 verbose headers 'x-amz-replication-status': 'PENDING',
559 verbose headers server: 'cloudflare',
559 verbose headers 'content-encoding': 'gzip' }
560 silly get cb [ 200,
560 silly get { date: 'Sat, 30 Apr 2022 00:44:17 GMT',
560 silly get 'content-type': 'application/json',
560 silly get 'transfer-encoding': 'chunked',
560 silly get connection: 'keep-alive',
560 silly get 'cf-ray': '703c3f806c78189d-EWR',
560 silly get 'access-control-allow-origin': '*',
560 silly get age: '242',
560 silly get 'cache-control': 'public, max-age=300',
560 silly get etag: 'W/"8402acb0dc30fde48080087bc16a7adc"',
560 silly get 'last-modified': 'Mon, 11 Apr 2022 12:25:04 GMT',
560 silly get vary: 'accept-encoding, accept',
560 silly get 'cf-cache-status': 'HIT',
560 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
560 silly get 'x-amz-replication-status': 'PENDING',
560 silly get server: 'cloudflare',
560 silly get 'content-encoding': 'gzip' } ]
561 verbose get saving abort-controller to /home/gepopa/.npm/registry.npmjs.org/abort-controller/.cache.json
562 http 200 https://registry.npmjs.org/true-case-path
563 verbose headers { date: 'Sat, 30 Apr 2022 00:44:17 GMT',
563 verbose headers 'content-type': 'application/json',
563 verbose headers 'transfer-encoding': 'chunked',
563 verbose headers connection: 'keep-alive',
563 verbose headers 'cf-ray': '703c3f806b198c2f-EWR',
563 verbose headers 'access-control-allow-origin': '*',
563 verbose headers age: '180',
563 verbose headers 'cache-control': 'public, max-age=300',
563 verbose headers etag: 'W/"4c5e8033db9f7a1519768c4110713ca6"',
563 verbose headers 'last-modified': 'Wed, 24 Jul 2019 21:27:33 GMT',
563 verbose headers vary: 'accept-encoding, accept',
563 verbose headers 'cf-cache-status': 'HIT',
563 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
563 verbose headers server: 'cloudflare',
563 verbose headers 'content-encoding': 'gzip' }
564 silly get cb [ 200,
564 silly get { date: 'Sat, 30 Apr 2022 00:44:17 GMT',
564 silly get 'content-type': 'application/json',
564 silly get 'transfer-encoding': 'chunked',
564 silly get connection: 'keep-alive',
564 silly get 'cf-ray': '703c3f806b198c2f-EWR',
564 silly get 'access-control-allow-origin': '*',
564 silly get age: '180',
564 silly get 'cache-control': 'public, max-age=300',
564 silly get etag: 'W/"4c5e8033db9f7a1519768c4110713ca6"',
564 silly get 'last-modified': 'Wed, 24 Jul 2019 21:27:33 GMT',
564 silly get vary: 'accept-encoding, accept',
564 silly get 'cf-cache-status': 'HIT',
564 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
564 silly get server: 'cloudflare',
564 silly get 'content-encoding': 'gzip' } ]
565 verbose get saving true-case-path to /home/gepopa/.npm/registry.npmjs.org/true-case-path/.cache.json
566 http 200 https://registry.npmjs.org/source-map-support
567 verbose headers { date: 'Sat, 30 Apr 2022 00:44:17 GMT',
567 verbose headers 'content-type': 'application/json',
567 verbose headers 'transfer-encoding': 'chunked',
567 verbose headers connection: 'keep-alive',
567 verbose headers 'cf-ray': '703c3f806a540ce9-EWR',
567 verbose headers 'access-control-allow-origin': '*',
567 verbose headers age: '238',
567 verbose headers 'cache-control': 'public, max-age=300',
567 verbose headers etag: 'W/"f83ad66a5e9a4c4a5f929bfd927ffd7a"',
567 verbose headers 'last-modified': 'Fri, 19 Nov 2021 11:03:02 GMT',
567 verbose headers vary: 'accept-encoding, accept',
567 verbose headers 'cf-cache-status': 'HIT',
567 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
567 verbose headers 'x-amz-replication-status': 'COMPLETED',
567 verbose headers server: 'cloudflare',
567 verbose headers 'content-encoding': 'gzip' }
568 silly get cb [ 200,
568 silly get { date: 'Sat, 30 Apr 2022 00:44:17 GMT',
568 silly get 'content-type': 'application/json',
568 silly get 'transfer-encoding': 'chunked',
568 silly get connection: 'keep-alive',
568 silly get 'cf-ray': '703c3f806a540ce9-EWR',
568 silly get 'access-control-allow-origin': '*',
568 silly get age: '238',
568 silly get 'cache-control': 'public, max-age=300',
568 silly get etag: 'W/"f83ad66a5e9a4c4a5f929bfd927ffd7a"',
568 silly get 'last-modified': 'Fri, 19 Nov 2021 11:03:02 GMT',
568 silly get vary: 'accept-encoding, accept',
568 silly get 'cf-cache-status': 'HIT',
568 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
568 silly get 'x-amz-replication-status': 'COMPLETED',
568 silly get server: 'cloudflare',
568 silly get 'content-encoding': 'gzip' } ]
569 verbose get saving source-map-support to /home/gepopa/.npm/registry.npmjs.org/source-map-support/.cache.json
570 http 200 https://registry.npmjs.org/glob
571 verbose headers { date: 'Sat, 30 Apr 2022 00:44:17 GMT',
571 verbose headers 'content-type': 'application/json',
571 verbose headers 'transfer-encoding': 'chunked',
571 verbose headers connection: 'keep-alive',
571 verbose headers 'cf-ray': '703c3f806eb78ca8-EWR',
571 verbose headers 'access-control-allow-origin': '*',
571 verbose headers age: '26',
571 verbose headers 'cache-control': 'public, max-age=300',
571 verbose headers etag: 'W/"b3ac24864ca9b1471f5fb7eb0e53fcd5"',
571 verbose headers 'last-modified': 'Mon, 25 Apr 2022 06:06:19 GMT',
571 verbose headers vary: 'accept-encoding, accept',
571 verbose headers 'cf-cache-status': 'HIT',
571 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
571 verbose headers 'x-amz-replication-status': 'COMPLETED',
571 verbose headers server: 'cloudflare',
571 verbose headers 'content-encoding': 'gzip' }
572 silly get cb [ 200,
572 silly get { date: 'Sat, 30 Apr 2022 00:44:17 GMT',
572 silly get 'content-type': 'application/json',
572 silly get 'transfer-encoding': 'chunked',
572 silly get connection: 'keep-alive',
572 silly get 'cf-ray': '703c3f806eb78ca8-EWR',
572 silly get 'access-control-allow-origin': '*',
572 silly get age: '26',
572 silly get 'cache-control': 'public, max-age=300',
572 silly get etag: 'W/"b3ac24864ca9b1471f5fb7eb0e53fcd5"',
572 silly get 'last-modified': 'Mon, 25 Apr 2022 06:06:19 GMT',
572 silly get vary: 'accept-encoding, accept',
572 silly get 'cf-cache-status': 'HIT',
572 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
572 silly get 'x-amz-replication-status': 'COMPLETED',
572 silly get server: 'cloudflare',
572 silly get 'content-encoding': 'gzip' } ]
573 verbose get saving glob to /home/gepopa/.npm/registry.npmjs.org/glob/.cache.json
574 http 200 https://registry.npmjs.org/aggregate-error
575 verbose headers { date: 'Sat, 30 Apr 2022 00:44:17 GMT',
575 verbose headers 'content-type': 'application/json',
575 verbose headers 'transfer-encoding': 'chunked',
575 verbose headers connection: 'keep-alive',
575 verbose headers 'cf-ray': '703c3f806dea8ce3-EWR',
575 verbose headers 'access-control-allow-origin': '*',
575 verbose headers age: '194',
575 verbose headers 'cache-control': 'public, max-age=300',
575 verbose headers etag: 'W/"5e727ab12bfb15f75b9c57ff6882a073"',
575 verbose headers 'last-modified': 'Mon, 11 Apr 2022 12:55:39 GMT',
575 verbose headers vary: 'accept-encoding, accept',
575 verbose headers 'cf-cache-status': 'HIT',
575 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
575 verbose headers 'x-amz-replication-status': 'COMPLETED',
575 verbose headers server: 'cloudflare',
575 verbose headers 'content-encoding': 'gzip' }
576 silly get cb [ 200,
576 silly get { date: 'Sat, 30 Apr 2022 00:44:17 GMT',
576 silly get 'content-type': 'application/json',
576 silly get 'transfer-encoding': 'chunked',
576 silly get connection: 'keep-alive',
576 silly get 'cf-ray': '703c3f806dea8ce3-EWR',
576 silly get 'access-control-allow-origin': '*',
576 silly get age: '194',
576 silly get 'cache-control': 'public, max-age=300',
576 silly get etag: 'W/"5e727ab12bfb15f75b9c57ff6882a073"',
576 silly get 'last-modified': 'Mon, 11 Apr 2022 12:55:39 GMT',
576 silly get vary: 'accept-encoding, accept',
576 silly get 'cf-cache-status': 'HIT',
576 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
576 silly get 'x-amz-replication-status': 'COMPLETED',
576 silly get server: 'cloudflare',
576 silly get 'content-encoding': 'gzip' } ]
577 verbose get saving aggregate-error to /home/gepopa/.npm/registry.npmjs.org/aggregate-error/.cache.json
578 http 200 https://registry.npmjs.org/raw-body
579 verbose headers { date: 'Sat, 30 Apr 2022 00:44:17 GMT',
579 verbose headers 'content-type': 'application/json',
579 verbose headers 'transfer-encoding': 'chunked',
579 verbose headers connection: 'keep-alive',
579 verbose headers 'cf-ray': '703c3f8079838cda-EWR',
579 verbose headers 'access-control-allow-origin': '*',
579 verbose headers age: '169',
579 verbose headers 'cache-control': 'public, max-age=300',
579 verbose headers etag: 'W/"01d085b590df0de05360121d7b82d2d3"',
579 verbose headers 'last-modified': 'Mon, 28 Feb 2022 21:46:46 GMT',
579 verbose headers vary: 'accept-encoding, accept',
579 verbose headers 'cf-cache-status': 'HIT',
579 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
579 verbose headers 'x-amz-replication-status': 'PENDING',
579 verbose headers server: 'cloudflare',
579 verbose headers 'content-encoding': 'gzip' }
580 silly get cb [ 200,
580 silly get { date: 'Sat, 30 Apr 2022 00:44:17 GMT',
580 silly get 'content-type': 'application/json',
580 silly get 'transfer-encoding': 'chunked',
580 silly get connection: 'keep-alive',
580 silly get 'cf-ray': '703c3f8079838cda-EWR',
580 silly get 'access-control-allow-origin': '*',
580 silly get age: '169',
580 silly get 'cache-control': 'public, max-age=300',
580 silly get etag: 'W/"01d085b590df0de05360121d7b82d2d3"',
580 silly get 'last-modified': 'Mon, 28 Feb 2022 21:46:46 GMT',
580 silly get vary: 'accept-encoding, accept',
580 silly get 'cf-cache-status': 'HIT',
580 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
580 silly get 'x-amz-replication-status': 'PENDING',
580 silly get server: 'cloudflare',
580 silly get 'content-encoding': 'gzip' } ]
581 verbose get saving raw-body to /home/gepopa/.npm/registry.npmjs.org/raw-body/.cache.json
582 http 200 https://registry.npmjs.org/semver
583 verbose headers { date: 'Sat, 30 Apr 2022 00:44:17 GMT',
583 verbose headers 'content-type': 'application/json',
583 verbose headers 'transfer-encoding': 'chunked',
583 verbose headers connection: 'keep-alive',
583 verbose headers 'cf-ray': '703c3f806d5f5589-EWR',
583 verbose headers 'access-control-allow-origin': '*',
583 verbose headers age: '130',
583 verbose headers 'cache-control': 'public, max-age=300',
583 verbose headers etag: 'W/"38ae2438095e02eedfb69a8491c5a337"',
583 verbose headers 'last-modified': 'Mon, 25 Apr 2022 06:06:23 GMT',
583 verbose headers vary: 'accept-encoding, accept',
583 verbose headers 'cf-cache-status': 'HIT',
583 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
583 verbose headers 'x-amz-replication-status': 'COMPLETED',
583 verbose headers server: 'cloudflare',
583 verbose headers 'content-encoding': 'gzip' }
584 silly get cb [ 200,
584 silly get { date: 'Sat, 30 Apr 2022 00:44:17 GMT',
584 silly get 'content-type': 'application/json',
584 silly get 'transfer-encoding': 'chunked',
584 silly get connection: 'keep-alive',
584 silly get 'cf-ray': '703c3f806d5f5589-EWR',
584 silly get 'access-control-allow-origin': '*',
584 silly get age: '130',
584 silly get 'cache-control': 'public, max-age=300',
584 silly get etag: 'W/"38ae2438095e02eedfb69a8491c5a337"',
584 silly get 'last-modified': 'Mon, 25 Apr 2022 06:06:23 GMT',
584 silly get vary: 'accept-encoding, accept',
584 silly get 'cf-cache-status': 'HIT',
584 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
584 silly get 'x-amz-replication-status': 'COMPLETED',
584 silly get server: 'cloudflare',
584 silly get 'content-encoding': 'gzip' } ]
585 verbose get saving semver to /home/gepopa/.npm/registry.npmjs.org/semver/.cache.json
586 silly resolveWithNewModule [email protected] checking installable status
587 silly cache add args [ 'p-map@^4.0.0', null ]
588 verbose cache add spec p-map@^4.0.0
589 silly cache add parsed spec Result {
589 silly cache add raw: 'p-map@^4.0.0',
589 silly cache add scope: null,
589 silly cache add name: 'p-map',
589 silly cache add rawSpec: '^4.0.0',
589 silly cache add spec: '>=4.0.0 <5.0.0',
589 silly cache add type: 'range' }
590 silly addNamed p-map@>=4.0.0 <5.0.0
591 verbose addNamed ">=4.0.0 <5.0.0" is a valid semver range for p-map
592 silly addNameRange { name: 'p-map', range: '>=4.0.0 <5.0.0', hasData: false }
593 silly mapToRegistry name p-map
594 silly mapToRegistry using default registry
595 silly mapToRegistry registry https://registry.npmjs.org/
596 silly mapToRegistry uri https://registry.npmjs.org/p-map
597 verbose addNameRange registry:https://registry.npmjs.org/p-map not in flight; fetching
598 http 200 https://registry.npmjs.org/resolve
599 verbose headers { date: 'Sat, 30 Apr 2022 00:44:17 GMT',
599 verbose headers 'content-type': 'application/json',
599 verbose headers 'transfer-encoding': 'chunked',
599 verbose headers connection: 'keep-alive',
599 verbose headers 'cf-ray': '703c3f806ff81795-EWR',
599 verbose headers 'access-control-allow-origin': '*',
599 verbose headers age: '55',
599 verbose headers 'cache-control': 'public, max-age=300',
599 verbose headers etag: 'W/"ba509948fc2b393d1f32240113fabc54"',
599 verbose headers 'last-modified': 'Sat, 22 Jan 2022 19:19:07 GMT',
599 verbose headers vary: 'accept-encoding, accept',
599 verbose headers 'cf-cache-status': 'HIT',
599 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
599 verbose headers 'x-amz-replication-status': 'PENDING',
599 verbose headers server: 'cloudflare',
599 verbose headers 'content-encoding': 'gzip' }
600 silly get cb [ 200,
600 silly get { date: 'Sat, 30 Apr 2022 00:44:17 GMT',
600 silly get 'content-type': 'application/json',
600 silly get 'transfer-encoding': 'chunked',
600 silly get connection: 'keep-alive',