-
Notifications
You must be signed in to change notification settings - Fork 3
/
npm-debug.log
6235 lines (6235 loc) · 367 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 [ '/Users/manon/.nvm/versions/node/v6.17.1/bin/node',
1 verbose cli '/Users/manon/.nvm/versions/node/v6.17.1/bin/npm',
1 verbose cli 'update' ]
2 info using [email protected]
3 info using [email protected]
4 silly mapToRegistry name @creativebulma/bulma-tooltip
5 silly mapToRegistry scope (from package name) @creativebulma
6 verbose mapToRegistry no registry URL found in name for scope @creativebulma
7 silly mapToRegistry using default registry
8 silly mapToRegistry registry https://registry.npmjs.org/
9 silly mapToRegistry data Result {
9 silly mapToRegistry raw: '@creativebulma/bulma-tooltip',
9 silly mapToRegistry scope: '@creativebulma',
9 silly mapToRegistry escapedName: '@creativebulma%2fbulma-tooltip',
9 silly mapToRegistry name: '@creativebulma/bulma-tooltip',
9 silly mapToRegistry rawSpec: '',
9 silly mapToRegistry spec: 'latest',
9 silly mapToRegistry type: 'tag' }
10 silly mapToRegistry uri https://registry.npmjs.org/@creativebulma%2fbulma-tooltip
11 silly mapToRegistry name atomic-algolia
12 silly mapToRegistry using default registry
13 silly mapToRegistry registry https://registry.npmjs.org/
14 silly mapToRegistry data Result {
14 silly mapToRegistry raw: 'atomic-algolia',
14 silly mapToRegistry scope: null,
14 silly mapToRegistry escapedName: 'atomic-algolia',
14 silly mapToRegistry name: 'atomic-algolia',
14 silly mapToRegistry rawSpec: '',
14 silly mapToRegistry spec: 'latest',
14 silly mapToRegistry type: 'tag' }
15 silly mapToRegistry uri https://registry.npmjs.org/atomic-algolia
16 silly mapToRegistry name axios
17 silly mapToRegistry using default registry
18 silly mapToRegistry registry https://registry.npmjs.org/
19 silly mapToRegistry data Result {
19 silly mapToRegistry raw: 'axios',
19 silly mapToRegistry scope: null,
19 silly mapToRegistry escapedName: 'axios',
19 silly mapToRegistry name: 'axios',
19 silly mapToRegistry rawSpec: '',
19 silly mapToRegistry spec: 'latest',
19 silly mapToRegistry type: 'tag' }
20 silly mapToRegistry uri https://registry.npmjs.org/axios
21 silly mapToRegistry name bulma
22 silly mapToRegistry using default registry
23 silly mapToRegistry registry https://registry.npmjs.org/
24 silly mapToRegistry data Result {
24 silly mapToRegistry raw: 'bulma',
24 silly mapToRegistry scope: null,
24 silly mapToRegistry escapedName: 'bulma',
24 silly mapToRegistry name: 'bulma',
24 silly mapToRegistry rawSpec: '',
24 silly mapToRegistry spec: 'latest',
24 silly mapToRegistry type: 'tag' }
25 silly mapToRegistry uri https://registry.npmjs.org/bulma
26 silly mapToRegistry name clipboard-polyfill
27 silly mapToRegistry using default registry
28 silly mapToRegistry registry https://registry.npmjs.org/
29 silly mapToRegistry data Result {
29 silly mapToRegistry raw: 'clipboard-polyfill',
29 silly mapToRegistry scope: null,
29 silly mapToRegistry escapedName: 'clipboard-polyfill',
29 silly mapToRegistry name: 'clipboard-polyfill',
29 silly mapToRegistry rawSpec: '',
29 silly mapToRegistry spec: 'latest',
29 silly mapToRegistry type: 'tag' }
30 silly mapToRegistry uri https://registry.npmjs.org/clipboard-polyfill
31 silly mapToRegistry name instantsearch.js
32 silly mapToRegistry using default registry
33 silly mapToRegistry registry https://registry.npmjs.org/
34 silly mapToRegistry data Result {
34 silly mapToRegistry raw: 'instantsearch.js',
34 silly mapToRegistry scope: null,
34 silly mapToRegistry escapedName: 'instantsearch.js',
34 silly mapToRegistry name: 'instantsearch.js',
34 silly mapToRegistry rawSpec: '',
34 silly mapToRegistry spec: 'latest',
34 silly mapToRegistry type: 'tag' }
35 silly mapToRegistry uri https://registry.npmjs.org/instantsearch.js
36 silly mapToRegistry name prismjs
37 silly mapToRegistry using default registry
38 silly mapToRegistry registry https://registry.npmjs.org/
39 silly mapToRegistry data Result {
39 silly mapToRegistry raw: 'prismjs',
39 silly mapToRegistry scope: null,
39 silly mapToRegistry escapedName: 'prismjs',
39 silly mapToRegistry name: 'prismjs',
39 silly mapToRegistry rawSpec: '',
39 silly mapToRegistry spec: 'latest',
39 silly mapToRegistry type: 'tag' }
40 silly mapToRegistry uri https://registry.npmjs.org/prismjs
41 verbose request uri https://registry.npmjs.org/@creativebulma%2fbulma-tooltip
42 verbose request no auth needed
43 info attempt registry request try #1 at 17:10:57
44 verbose request id a8f92e735446cf2a
45 http request GET https://registry.npmjs.org/@creativebulma%2fbulma-tooltip
46 verbose request uri https://registry.npmjs.org/atomic-algolia
47 verbose request no auth needed
48 info attempt registry request try #1 at 17:10:57
49 http request GET https://registry.npmjs.org/atomic-algolia
50 verbose request uri https://registry.npmjs.org/clipboard-polyfill
51 verbose request no auth needed
52 info attempt registry request try #1 at 17:10:57
53 http request GET https://registry.npmjs.org/clipboard-polyfill
54 verbose request uri https://registry.npmjs.org/instantsearch.js
55 verbose request no auth needed
56 info attempt registry request try #1 at 17:10:57
57 http request GET https://registry.npmjs.org/instantsearch.js
58 verbose request uri https://registry.npmjs.org/prismjs
59 verbose request no auth needed
60 info attempt registry request try #1 at 17:10:57
61 http request GET https://registry.npmjs.org/prismjs
62 verbose request uri https://registry.npmjs.org/bulma
63 verbose request no auth needed
64 info attempt registry request try #1 at 17:10:57
65 verbose etag W/"8b80e7902212ad6c90662dd5cebcccbf"
66 verbose lastModified Wed, 23 Nov 2022 02:44:53 GMT
67 http request GET https://registry.npmjs.org/bulma
68 verbose request uri https://registry.npmjs.org/axios
69 verbose request no auth needed
70 info attempt registry request try #1 at 17:10:57
71 verbose etag W/"e97ba872e4eaa66654c8ef3414e6c926"
72 verbose lastModified Wed, 22 Feb 2023 21:06:24 GMT
73 http request GET https://registry.npmjs.org/axios
74 http 304 https://registry.npmjs.org/bulma
75 verbose headers { date: 'Tue, 13 Jun 2023 15:10:58 GMT',
75 verbose headers connection: 'keep-alive',
75 verbose headers 'cf-ray': '7d6b436b7f4df858-CDG',
75 verbose headers 'cf-cache-status': 'REVALIDATED',
75 verbose headers 'cache-control': 'public, max-age=300',
75 verbose headers etag: '"8b80e7902212ad6c90662dd5cebcccbf"',
75 verbose headers 'last-modified': 'Wed, 23 Nov 2022 02:44:53 GMT',
75 verbose headers vary: 'Accept-Encoding',
75 verbose headers 'x-amz-replication-status': 'COMPLETED',
75 verbose headers server: 'cloudflare' }
76 silly get cb [ 304,
76 silly get { date: 'Tue, 13 Jun 2023 15:10:58 GMT',
76 silly get connection: 'keep-alive',
76 silly get 'cf-ray': '7d6b436b7f4df858-CDG',
76 silly get 'cf-cache-status': 'REVALIDATED',
76 silly get 'cache-control': 'public, max-age=300',
76 silly get etag: '"8b80e7902212ad6c90662dd5cebcccbf"',
76 silly get 'last-modified': 'Wed, 23 Nov 2022 02:44:53 GMT',
76 silly get vary: 'Accept-Encoding',
76 silly get 'x-amz-replication-status': 'COMPLETED',
76 silly get server: 'cloudflare' } ]
77 verbose etag https://registry.npmjs.org/bulma from cache
78 verbose get saving bulma to /Users/manon/.npm/registry.npmjs.org/bulma/.cache.json
79 verbose correctMkdir /Users/manon/.npm correctMkdir not in flight; initializing
80 http 200 https://registry.npmjs.org/atomic-algolia
81 verbose headers { date: 'Tue, 13 Jun 2023 15:10:58 GMT',
81 verbose headers 'content-type': 'application/json',
81 verbose headers 'transfer-encoding': 'chunked',
81 verbose headers connection: 'keep-alive',
81 verbose headers 'cf-ray': '7d6b436b4abaf848-CDG',
81 verbose headers 'cf-cache-status': 'MISS',
81 verbose headers 'access-control-allow-origin': '*',
81 verbose headers 'cache-control': 'public, max-age=300',
81 verbose headers etag: 'W/"9ccc876fc09ecbfd10948a57f96abdd4"',
81 verbose headers 'last-modified': 'Mon, 11 Apr 2022 15:42:24 GMT',
81 verbose headers vary: 'accept-encoding, accept',
81 verbose headers 'x-amz-replication-status': 'COMPLETED',
81 verbose headers server: 'cloudflare',
81 verbose headers 'content-encoding': 'gzip' }
82 silly get cb [ 200,
82 silly get { date: 'Tue, 13 Jun 2023 15:10:58 GMT',
82 silly get 'content-type': 'application/json',
82 silly get 'transfer-encoding': 'chunked',
82 silly get connection: 'keep-alive',
82 silly get 'cf-ray': '7d6b436b4abaf848-CDG',
82 silly get 'cf-cache-status': 'MISS',
82 silly get 'access-control-allow-origin': '*',
82 silly get 'cache-control': 'public, max-age=300',
82 silly get etag: 'W/"9ccc876fc09ecbfd10948a57f96abdd4"',
82 silly get 'last-modified': 'Mon, 11 Apr 2022 15:42:24 GMT',
82 silly get vary: 'accept-encoding, accept',
82 silly get 'x-amz-replication-status': 'COMPLETED',
82 silly get server: 'cloudflare',
82 silly get 'content-encoding': 'gzip' } ]
83 verbose get saving atomic-algolia to /Users/manon/.npm/registry.npmjs.org/atomic-algolia/.cache.json
84 verbose correctMkdir /Users/manon/.npm correctMkdir not in flight; initializing
85 http 200 https://registry.npmjs.org/prismjs
86 verbose headers { date: 'Tue, 13 Jun 2023 15:10:58 GMT',
86 verbose headers 'content-type': 'application/json',
86 verbose headers 'transfer-encoding': 'chunked',
86 verbose headers connection: 'keep-alive',
86 verbose headers 'cf-ray': '7d6b436b6d99d544-CDG',
86 verbose headers 'cf-cache-status': 'REVALIDATED',
86 verbose headers 'access-control-allow-origin': '*',
86 verbose headers 'cache-control': 'public, max-age=300',
86 verbose headers etag: 'W/"65e4a0b8e45780227892785f184640d6"',
86 verbose headers 'last-modified': 'Wed, 05 Apr 2023 02:04:19 GMT',
86 verbose headers vary: 'accept-encoding, accept',
86 verbose headers 'x-amz-replication-status': 'COMPLETED',
86 verbose headers 'x-amz-server-side-encryption': 'AES256',
86 verbose headers server: 'cloudflare',
86 verbose headers 'content-encoding': 'gzip' }
87 silly get cb [ 200,
87 silly get { date: 'Tue, 13 Jun 2023 15:10:58 GMT',
87 silly get 'content-type': 'application/json',
87 silly get 'transfer-encoding': 'chunked',
87 silly get connection: 'keep-alive',
87 silly get 'cf-ray': '7d6b436b6d99d544-CDG',
87 silly get 'cf-cache-status': 'REVALIDATED',
87 silly get 'access-control-allow-origin': '*',
87 silly get 'cache-control': 'public, max-age=300',
87 silly get etag: 'W/"65e4a0b8e45780227892785f184640d6"',
87 silly get 'last-modified': 'Wed, 05 Apr 2023 02:04:19 GMT',
87 silly get vary: 'accept-encoding, accept',
87 silly get 'x-amz-replication-status': 'COMPLETED',
87 silly get 'x-amz-server-side-encryption': 'AES256',
87 silly get server: 'cloudflare',
87 silly get 'content-encoding': 'gzip' } ]
88 verbose get saving prismjs to /Users/manon/.npm/registry.npmjs.org/prismjs/.cache.json
89 verbose correctMkdir /Users/manon/.npm correctMkdir not in flight; initializing
90 http 200 https://registry.npmjs.org/clipboard-polyfill
91 verbose headers { date: 'Tue, 13 Jun 2023 15:10:58 GMT',
91 verbose headers 'content-type': 'application/json',
91 verbose headers 'transfer-encoding': 'chunked',
91 verbose headers connection: 'keep-alive',
91 verbose headers 'cf-ray': '7d6b436b4f122a0e-CDG',
91 verbose headers 'cf-cache-status': 'REVALIDATED',
91 verbose headers 'access-control-allow-origin': '*',
91 verbose headers 'cache-control': 'public, max-age=300',
91 verbose headers etag: 'W/"435c95296f2cd6ca032c36df8f8c5957"',
91 verbose headers 'last-modified': 'Fri, 03 Feb 2023 07:14:47 GMT',
91 verbose headers vary: 'accept-encoding, accept',
91 verbose headers 'x-amz-replication-status': 'COMPLETED',
91 verbose headers 'x-amz-server-side-encryption': 'AES256',
91 verbose headers server: 'cloudflare',
91 verbose headers 'content-encoding': 'gzip' }
92 silly get cb [ 200,
92 silly get { date: 'Tue, 13 Jun 2023 15:10:58 GMT',
92 silly get 'content-type': 'application/json',
92 silly get 'transfer-encoding': 'chunked',
92 silly get connection: 'keep-alive',
92 silly get 'cf-ray': '7d6b436b4f122a0e-CDG',
92 silly get 'cf-cache-status': 'REVALIDATED',
92 silly get 'access-control-allow-origin': '*',
92 silly get 'cache-control': 'public, max-age=300',
92 silly get etag: 'W/"435c95296f2cd6ca032c36df8f8c5957"',
92 silly get 'last-modified': 'Fri, 03 Feb 2023 07:14:47 GMT',
92 silly get vary: 'accept-encoding, accept',
92 silly get 'x-amz-replication-status': 'COMPLETED',
92 silly get 'x-amz-server-side-encryption': 'AES256',
92 silly get server: 'cloudflare',
92 silly get 'content-encoding': 'gzip' } ]
93 verbose get saving clipboard-polyfill to /Users/manon/.npm/registry.npmjs.org/clipboard-polyfill/.cache.json
94 verbose correctMkdir /Users/manon/.npm correctMkdir not in flight; initializing
95 http 200 https://registry.npmjs.org/axios
96 verbose headers { date: 'Tue, 13 Jun 2023 15:10:58 GMT',
96 verbose headers 'content-type': 'application/json',
96 verbose headers 'transfer-encoding': 'chunked',
96 verbose headers connection: 'keep-alive',
96 verbose headers 'cf-ray': '7d6b436b7d5dd3c8-CDG',
96 verbose headers 'cf-cache-status': 'REVALIDATED',
96 verbose headers 'access-control-allow-origin': '*',
96 verbose headers 'cache-control': 'public, max-age=300',
96 verbose headers etag: 'W/"4c213063d008776346bfb5a4c9a8fa63"',
96 verbose headers 'last-modified': 'Sat, 20 May 2023 13:42:02 GMT',
96 verbose headers vary: 'accept-encoding, accept',
96 verbose headers 'x-amz-replication-status': 'COMPLETED',
96 verbose headers 'x-amz-server-side-encryption': 'AES256',
96 verbose headers server: 'cloudflare',
96 verbose headers 'content-encoding': 'gzip' }
97 silly get cb [ 200,
97 silly get { date: 'Tue, 13 Jun 2023 15:10:58 GMT',
97 silly get 'content-type': 'application/json',
97 silly get 'transfer-encoding': 'chunked',
97 silly get connection: 'keep-alive',
97 silly get 'cf-ray': '7d6b436b7d5dd3c8-CDG',
97 silly get 'cf-cache-status': 'REVALIDATED',
97 silly get 'access-control-allow-origin': '*',
97 silly get 'cache-control': 'public, max-age=300',
97 silly get etag: 'W/"4c213063d008776346bfb5a4c9a8fa63"',
97 silly get 'last-modified': 'Sat, 20 May 2023 13:42:02 GMT',
97 silly get vary: 'accept-encoding, accept',
97 silly get 'x-amz-replication-status': 'COMPLETED',
97 silly get 'x-amz-server-side-encryption': 'AES256',
97 silly get server: 'cloudflare',
97 silly get 'content-encoding': 'gzip' } ]
98 verbose get saving axios to /Users/manon/.npm/registry.npmjs.org/axios/.cache.json
99 verbose correctMkdir /Users/manon/.npm correctMkdir not in flight; initializing
100 http 200 https://registry.npmjs.org/instantsearch.js
101 verbose headers { date: 'Tue, 13 Jun 2023 15:10:58 GMT',
101 verbose headers 'content-type': 'application/json',
101 verbose headers 'transfer-encoding': 'chunked',
101 verbose headers connection: 'keep-alive',
101 verbose headers 'cf-ray': '7d6b436b5b9001f1-CDG',
101 verbose headers 'cf-cache-status': 'REVALIDATED',
101 verbose headers 'access-control-allow-origin': '*',
101 verbose headers 'cache-control': 'public, max-age=300',
101 verbose headers etag: 'W/"6bea3e4dfdc9565d4082253ce5474cd9"',
101 verbose headers 'last-modified': 'Tue, 30 May 2023 12:10:55 GMT',
101 verbose headers vary: 'accept-encoding, accept',
101 verbose headers 'x-amz-replication-status': 'COMPLETED',
101 verbose headers 'x-amz-server-side-encryption': 'AES256',
101 verbose headers server: 'cloudflare',
101 verbose headers 'content-encoding': 'gzip' }
102 silly get cb [ 200,
102 silly get { date: 'Tue, 13 Jun 2023 15:10:58 GMT',
102 silly get 'content-type': 'application/json',
102 silly get 'transfer-encoding': 'chunked',
102 silly get connection: 'keep-alive',
102 silly get 'cf-ray': '7d6b436b5b9001f1-CDG',
102 silly get 'cf-cache-status': 'REVALIDATED',
102 silly get 'access-control-allow-origin': '*',
102 silly get 'cache-control': 'public, max-age=300',
102 silly get etag: 'W/"6bea3e4dfdc9565d4082253ce5474cd9"',
102 silly get 'last-modified': 'Tue, 30 May 2023 12:10:55 GMT',
102 silly get vary: 'accept-encoding, accept',
102 silly get 'x-amz-replication-status': 'COMPLETED',
102 silly get 'x-amz-server-side-encryption': 'AES256',
102 silly get server: 'cloudflare',
102 silly get 'content-encoding': 'gzip' } ]
103 verbose get saving instantsearch.js to /Users/manon/.npm/registry.npmjs.org/instantsearch.js/.cache.json
104 verbose correctMkdir /Users/manon/.npm correctMkdir not in flight; initializing
105 http 200 https://registry.npmjs.org/@creativebulma%2fbulma-tooltip
106 verbose headers { date: 'Tue, 13 Jun 2023 15:10:59 GMT',
106 verbose headers 'content-type': 'application/json',
106 verbose headers 'transfer-encoding': 'chunked',
106 verbose headers connection: 'keep-alive',
106 verbose headers 'cf-ray': '7d6b436b1a432161-CDG',
106 verbose headers 'cf-cache-status': 'REVALIDATED',
106 verbose headers 'access-control-allow-origin': '*',
106 verbose headers 'cache-control': 'public, max-age=300',
106 verbose headers etag: 'W/"4654e04be6791831e0b966b80772baea"',
106 verbose headers 'last-modified': 'Tue, 05 Apr 2022 01:44:16 GMT',
106 verbose headers vary: 'accept-encoding, accept',
106 verbose headers 'x-amz-replication-status': 'COMPLETED',
106 verbose headers server: 'cloudflare',
106 verbose headers 'content-encoding': 'gzip' }
107 silly get cb [ 200,
107 silly get { date: 'Tue, 13 Jun 2023 15:10:59 GMT',
107 silly get 'content-type': 'application/json',
107 silly get 'transfer-encoding': 'chunked',
107 silly get connection: 'keep-alive',
107 silly get 'cf-ray': '7d6b436b1a432161-CDG',
107 silly get 'cf-cache-status': 'REVALIDATED',
107 silly get 'access-control-allow-origin': '*',
107 silly get 'cache-control': 'public, max-age=300',
107 silly get etag: 'W/"4654e04be6791831e0b966b80772baea"',
107 silly get 'last-modified': 'Tue, 05 Apr 2022 01:44:16 GMT',
107 silly get vary: 'accept-encoding, accept',
107 silly get 'x-amz-replication-status': 'COMPLETED',
107 silly get server: 'cloudflare',
107 silly get 'content-encoding': 'gzip' } ]
108 verbose get saving @creativebulma/bulma-tooltip to /Users/manon/.npm/registry.npmjs.org/_40creativebulma_252fbulma-tooltip/.cache.json
109 verbose correctMkdir /Users/manon/.npm correctMkdir not in flight; initializing
110 verbose outdated not updating clipboard-polyfill because it's currently at the maximum version that matches its specified semver range
111 info outdated updating [ { dep:
111 info outdated Node {
111 info outdated id: 14,
111 info outdated package: [Object],
111 info outdated path: '/Users/manon/codelibrary/codelibrary/node_modules/axios',
111 info outdated realpath: '/Users/manon/codelibrary/codelibrary/node_modules/axios',
111 info outdated parent: [Object],
111 info outdated isLink: false,
111 info outdated children: [Object],
111 info outdated error: null,
111 info outdated loaded: false,
111 info outdated requiredBy: [Object],
111 info outdated requires: [Object],
111 info outdated missingDeps: {},
111 info outdated missingDevDeps: {},
111 info outdated phantomChildren: {},
111 info outdated location: '/axios',
111 info outdated userRequired: false,
111 info outdated existing: false,
111 info outdated isTop: false,
111 info outdated resolved: [Object] },
111 info outdated depname: 'axios',
111 info outdated current: '0.21.1',
111 info outdated wanted: '0.21.4',
111 info outdated latest: '1.4.0',
111 info outdated req: '^0.21.1',
111 info outdated what: '[email protected]' },
111 info outdated { dep:
111 info outdated Node {
111 info outdated id: 88,
111 info outdated package: [Object],
111 info outdated path: '/Users/manon/codelibrary/codelibrary/node_modules/instantsearch.js',
111 info outdated realpath: '/Users/manon/codelibrary/codelibrary/node_modules/instantsearch.js',
111 info outdated parent: [Object],
111 info outdated isLink: false,
111 info outdated children: [Object],
111 info outdated error: null,
111 info outdated loaded: false,
111 info outdated requiredBy: [Object],
111 info outdated requires: [Object],
111 info outdated missingDeps: {},
111 info outdated missingDevDeps: {},
111 info outdated phantomChildren: {},
111 info outdated location: '/instantsearch.js',
111 info outdated userRequired: false,
111 info outdated existing: false,
111 info outdated isTop: false,
111 info outdated resolved: [Object] },
111 info outdated depname: 'instantsearch.js',
111 info outdated current: '4.13.2',
111 info outdated wanted: '4.56.1',
111 info outdated latest: '4.56.1',
111 info outdated req: '^4.7.2',
111 info outdated what: '[email protected]' },
111 info outdated { dep:
111 info outdated Node {
111 info outdated id: 134,
111 info outdated package: [Object],
111 info outdated path: '/Users/manon/codelibrary/codelibrary/node_modules/prismjs',
111 info outdated realpath: '/Users/manon/codelibrary/codelibrary/node_modules/prismjs',
111 info outdated parent: [Object],
111 info outdated isLink: false,
111 info outdated children: [Object],
111 info outdated error: null,
111 info outdated loaded: false,
111 info outdated requiredBy: [Object],
111 info outdated requires: [Object],
111 info outdated missingDeps: {},
111 info outdated missingDevDeps: {},
111 info outdated phantomChildren: {},
111 info outdated location: '/prismjs',
111 info outdated userRequired: false,
111 info outdated existing: false,
111 info outdated isTop: false,
111 info outdated resolved: [Object] },
111 info outdated depname: 'prismjs',
111 info outdated current: '1.21.0',
111 info outdated wanted: '1.29.0',
111 info outdated latest: '1.29.0',
111 info outdated req: '^1.21.0',
111 info outdated what: '[email protected]' } ]
112 silly loadCurrentTree Starting
113 silly install loadCurrentTree
114 silly install readLocalPackageData
115 silly fetchPackageMetaData [email protected]
116 silly fetchPackageMetaData [email protected]
117 silly fetchPackageMetaData [email protected]
118 silly fetchNamedPackageData axios
119 silly mapToRegistry name axios
120 silly mapToRegistry using default registry
121 silly mapToRegistry registry https://registry.npmjs.org/
122 silly mapToRegistry data Result {
122 silly mapToRegistry raw: 'axios',
122 silly mapToRegistry scope: null,
122 silly mapToRegistry escapedName: 'axios',
122 silly mapToRegistry name: 'axios',
122 silly mapToRegistry rawSpec: '',
122 silly mapToRegistry spec: 'latest',
122 silly mapToRegistry type: 'tag' }
123 silly mapToRegistry uri https://registry.npmjs.org/axios
124 silly fetchNamedPackageData instantsearch.js
125 silly mapToRegistry name instantsearch.js
126 silly mapToRegistry using default registry
127 silly mapToRegistry registry https://registry.npmjs.org/
128 silly mapToRegistry data Result {
128 silly mapToRegistry raw: 'instantsearch.js',
128 silly mapToRegistry scope: null,
128 silly mapToRegistry escapedName: 'instantsearch.js',
128 silly mapToRegistry name: 'instantsearch.js',
128 silly mapToRegistry rawSpec: '',
128 silly mapToRegistry spec: 'latest',
128 silly mapToRegistry type: 'tag' }
129 silly mapToRegistry uri https://registry.npmjs.org/instantsearch.js
130 silly fetchNamedPackageData prismjs
131 silly mapToRegistry name prismjs
132 silly mapToRegistry using default registry
133 silly mapToRegistry registry https://registry.npmjs.org/
134 silly mapToRegistry data Result {
134 silly mapToRegistry raw: 'prismjs',
134 silly mapToRegistry scope: null,
134 silly mapToRegistry escapedName: 'prismjs',
134 silly mapToRegistry name: 'prismjs',
134 silly mapToRegistry rawSpec: '',
134 silly mapToRegistry spec: 'latest',
134 silly mapToRegistry type: 'tag' }
135 silly mapToRegistry uri https://registry.npmjs.org/prismjs
136 verbose get https://registry.npmjs.org/prismjs not expired, no request
137 verbose get https://registry.npmjs.org/axios not expired, no request
138 verbose get https://registry.npmjs.org/instantsearch.js not expired, no request
139 silly install normalizeTree
140 silly loadCurrentTree Finishing
141 silly loadIdealTree Starting
142 silly install loadIdealTree
143 silly cloneCurrentTree Starting
144 silly install cloneCurrentTreeToIdealTree
145 silly cloneCurrentTree Finishing
146 silly loadShrinkwrap Starting
147 silly install loadShrinkwrap
148 silly loadShrinkwrap Finishing
149 silly loadAllDepsIntoIdealTree Starting
150 silly install loadAllDepsIntoIdealTree
151 silly resolveWithNewModule [email protected] checking installable status
152 silly cache add args [ '[email protected]', null ]
153 verbose cache add spec [email protected]
154 silly resolveWithNewModule [email protected] checking installable status
155 silly cache add args [ '[email protected]', null ]
156 verbose cache add spec [email protected]
157 silly resolveWithNewModule [email protected] checking installable status
158 silly cache add args [ '[email protected]', null ]
159 verbose cache add spec [email protected]
160 silly cache add parsed spec Result {
160 silly cache add raw: '[email protected]',
160 silly cache add scope: null,
160 silly cache add escapedName: 'prismjs',
160 silly cache add name: 'prismjs',
160 silly cache add rawSpec: '1.29.0',
160 silly cache add spec: '1.29.0',
160 silly cache add type: 'version' }
161 silly addNamed [email protected]
162 verbose addNamed "1.29.0" is a plain semver version for prismjs
163 silly mapToRegistry name prismjs
164 silly mapToRegistry using default registry
165 silly mapToRegistry registry https://registry.npmjs.org/
166 silly mapToRegistry data Result {
166 silly mapToRegistry raw: 'prismjs',
166 silly mapToRegistry scope: null,
166 silly mapToRegistry escapedName: 'prismjs',
166 silly mapToRegistry name: 'prismjs',
166 silly mapToRegistry rawSpec: '',
166 silly mapToRegistry spec: 'latest',
166 silly mapToRegistry type: 'tag' }
167 silly mapToRegistry uri https://registry.npmjs.org/prismjs
168 verbose addNameVersion registry:https://registry.npmjs.org/prismjs not in flight; fetching
169 silly cache add parsed spec Result {
169 silly cache add raw: '[email protected]',
169 silly cache add scope: null,
169 silly cache add escapedName: 'axios',
169 silly cache add name: 'axios',
169 silly cache add rawSpec: '0.21.4',
169 silly cache add spec: '0.21.4',
169 silly cache add type: 'version' }
170 silly addNamed [email protected]
171 verbose addNamed "0.21.4" is a plain semver version for axios
172 silly mapToRegistry name axios
173 silly mapToRegistry using default registry
174 silly mapToRegistry registry https://registry.npmjs.org/
175 silly mapToRegistry data Result {
175 silly mapToRegistry raw: 'axios',
175 silly mapToRegistry scope: null,
175 silly mapToRegistry escapedName: 'axios',
175 silly mapToRegistry name: 'axios',
175 silly mapToRegistry rawSpec: '',
175 silly mapToRegistry spec: 'latest',
175 silly mapToRegistry type: 'tag' }
176 silly mapToRegistry uri https://registry.npmjs.org/axios
177 verbose addNameVersion registry:https://registry.npmjs.org/axios not in flight; fetching
178 silly cache add parsed spec Result {
178 silly cache add raw: '[email protected]',
178 silly cache add scope: null,
178 silly cache add escapedName: 'instantsearch.js',
178 silly cache add name: 'instantsearch.js',
178 silly cache add rawSpec: '4.56.1',
178 silly cache add spec: '4.56.1',
178 silly cache add type: 'version' }
179 silly addNamed [email protected]
180 verbose addNamed "4.56.1" is a plain semver version for instantsearch.js
181 silly mapToRegistry name instantsearch.js
182 silly mapToRegistry using default registry
183 silly mapToRegistry registry https://registry.npmjs.org/
184 silly mapToRegistry data Result {
184 silly mapToRegistry raw: 'instantsearch.js',
184 silly mapToRegistry scope: null,
184 silly mapToRegistry escapedName: 'instantsearch.js',
184 silly mapToRegistry name: 'instantsearch.js',
184 silly mapToRegistry rawSpec: '',
184 silly mapToRegistry spec: 'latest',
184 silly mapToRegistry type: 'tag' }
185 silly mapToRegistry uri https://registry.npmjs.org/instantsearch.js
186 verbose addNameVersion registry:https://registry.npmjs.org/instantsearch.js not in flight; fetching
187 verbose get https://registry.npmjs.org/prismjs not expired, no request
188 verbose get https://registry.npmjs.org/instantsearch.js not expired, no request
189 verbose get https://registry.npmjs.org/axios not expired, no request
190 silly mapToRegistry name prismjs
191 silly mapToRegistry using default registry
192 silly mapToRegistry registry https://registry.npmjs.org/
193 silly mapToRegistry data Result {
193 silly mapToRegistry raw: 'prismjs',
193 silly mapToRegistry scope: null,
193 silly mapToRegistry escapedName: 'prismjs',
193 silly mapToRegistry name: 'prismjs',
193 silly mapToRegistry rawSpec: '',
193 silly mapToRegistry spec: 'latest',
193 silly mapToRegistry type: 'tag' }
194 silly mapToRegistry uri https://registry.npmjs.org/prismjs
195 verbose addRemoteTarball https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz not in flight; adding
196 verbose addRemoteTarball [ 'https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz',
196 verbose addRemoteTarball 'f113555a8fa9b57c35e637bba27509dcf802dd12' ]
197 silly mapToRegistry name instantsearch.js
198 silly mapToRegistry using default registry
199 silly mapToRegistry registry https://registry.npmjs.org/
200 silly mapToRegistry data Result {
200 silly mapToRegistry raw: 'instantsearch.js',
200 silly mapToRegistry scope: null,
200 silly mapToRegistry escapedName: 'instantsearch.js',
200 silly mapToRegistry name: 'instantsearch.js',
200 silly mapToRegistry rawSpec: '',
200 silly mapToRegistry spec: 'latest',
200 silly mapToRegistry type: 'tag' }
201 silly mapToRegistry uri https://registry.npmjs.org/instantsearch.js
202 verbose addRemoteTarball https://registry.npmjs.org/instantsearch.js/-/instantsearch.js-4.56.1.tgz not in flight; adding
203 verbose addRemoteTarball [ 'https://registry.npmjs.org/instantsearch.js/-/instantsearch.js-4.56.1.tgz',
203 verbose addRemoteTarball 'ddff17fea5ed8d8a0e14e66a977f107f7143adef' ]
204 silly cache afterAdd [email protected]
205 verbose afterAdd /Users/manon/.npm/axios/0.21.4/package/package.json not in flight; writing
206 verbose correctMkdir /Users/manon/.npm correctMkdir not in flight; initializing
207 info retry fetch attempt 1 at 17:11:00
208 info attempt registry request try #1 at 17:11:00
209 http fetch GET https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz
210 info retry fetch attempt 1 at 17:11:00
211 info attempt registry request try #1 at 17:11:00
212 http fetch GET https://registry.npmjs.org/instantsearch.js/-/instantsearch.js-4.56.1.tgz
213 http fetch 200 https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz
214 http fetch 200 https://registry.npmjs.org/instantsearch.js/-/instantsearch.js-4.56.1.tgz
215 verbose afterAdd /Users/manon/.npm/axios/0.21.4/package/package.json written
216 silly fetchAndShaCheck shasum f113555a8fa9b57c35e637bba27509dcf802dd12
217 verbose addTmpTarball /var/folders/t5/qv_vz3t90vg8mng4zfyk68h00000gp/T/npm-56858-59c13f57/registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz not in flight; adding
218 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
219 verbose correctMkdir /Users/manon/.npm correctMkdir not in flight; initializing
220 silly cache afterAdd [email protected]
221 verbose afterAdd /Users/manon/.npm/prismjs/1.29.0/package/package.json not in flight; writing
222 verbose correctMkdir /Users/manon/.npm correctMkdir not in flight; initializing
223 silly fetchAndShaCheck shasum ddff17fea5ed8d8a0e14e66a977f107f7143adef
224 verbose afterAdd /Users/manon/.npm/prismjs/1.29.0/package/package.json written
225 verbose addTmpTarball /var/folders/t5/qv_vz3t90vg8mng4zfyk68h00000gp/T/npm-56858-59c13f57/registry.npmjs.org/instantsearch.js/-/instantsearch.js-4.56.1.tgz not in flight; adding
226 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
227 verbose correctMkdir /Users/manon/.npm correctMkdir not in flight; initializing
228 silly cache afterAdd [email protected]
229 verbose afterAdd /Users/manon/.npm/instantsearch.js/4.56.1/package/package.json not in flight; writing
230 verbose correctMkdir /Users/manon/.npm correctMkdir not in flight; initializing
231 verbose afterAdd /Users/manon/.npm/instantsearch.js/4.56.1/package/package.json written
232 silly fetchNamedPackageData follow-redirects
233 silly mapToRegistry name follow-redirects
234 silly mapToRegistry using default registry
235 silly mapToRegistry registry https://registry.npmjs.org/
236 silly mapToRegistry data Result {
236 silly mapToRegistry raw: 'follow-redirects',
236 silly mapToRegistry scope: null,
236 silly mapToRegistry escapedName: 'follow-redirects',
236 silly mapToRegistry name: 'follow-redirects',
236 silly mapToRegistry rawSpec: '',
236 silly mapToRegistry spec: 'latest',
236 silly mapToRegistry type: 'tag' }
237 silly mapToRegistry uri https://registry.npmjs.org/follow-redirects
238 verbose request uri https://registry.npmjs.org/follow-redirects
239 verbose request no auth needed
240 info attempt registry request try #1 at 17:11:01
241 verbose etag W/"df4aa3ad0a6dd7bf6d621e716e567efe"
242 verbose lastModified Fri, 16 Dec 2022 23:11:36 GMT
243 http request GET https://registry.npmjs.org/follow-redirects
244 http 304 https://registry.npmjs.org/follow-redirects
245 verbose headers { date: 'Tue, 13 Jun 2023 15:11:01 GMT',
245 verbose headers connection: 'keep-alive',
245 verbose headers 'cf-ray': '7d6b43836e2c01f1-CDG',
245 verbose headers 'cf-cache-status': 'HIT',
245 verbose headers age: '292',
245 verbose headers 'cache-control': 'public, max-age=300',
245 verbose headers etag: '"df4aa3ad0a6dd7bf6d621e716e567efe"',
245 verbose headers 'last-modified': 'Fri, 16 Dec 2022 23:11:36 GMT',
245 verbose headers vary: 'Accept-Encoding',
245 verbose headers 'x-amz-replication-status': 'COMPLETED',
245 verbose headers 'x-amz-server-side-encryption': 'AES256',
245 verbose headers server: 'cloudflare' }
246 silly get cb [ 304,
246 silly get { date: 'Tue, 13 Jun 2023 15:11:01 GMT',
246 silly get connection: 'keep-alive',
246 silly get 'cf-ray': '7d6b43836e2c01f1-CDG',
246 silly get 'cf-cache-status': 'HIT',
246 silly get age: '292',
246 silly get 'cache-control': 'public, max-age=300',
246 silly get etag: '"df4aa3ad0a6dd7bf6d621e716e567efe"',
246 silly get 'last-modified': 'Fri, 16 Dec 2022 23:11:36 GMT',
246 silly get vary: 'Accept-Encoding',
246 silly get 'x-amz-replication-status': 'COMPLETED',
246 silly get 'x-amz-server-side-encryption': 'AES256',
246 silly get server: 'cloudflare' } ]
247 verbose etag https://registry.npmjs.org/follow-redirects from cache
248 verbose get saving follow-redirects to /Users/manon/.npm/registry.npmjs.org/follow-redirects/.cache.json
249 verbose correctMkdir /Users/manon/.npm correctMkdir not in flight; initializing
250 silly resolveWithNewModule [email protected] checking installable status
251 silly cache add args [ 'follow-redirects@^1.14.0', null ]
252 verbose cache add spec follow-redirects@^1.14.0
253 silly cache add parsed spec Result {
253 silly cache add raw: 'follow-redirects@^1.14.0',
253 silly cache add scope: null,
253 silly cache add escapedName: 'follow-redirects',
253 silly cache add name: 'follow-redirects',
253 silly cache add rawSpec: '^1.14.0',
253 silly cache add spec: '>=1.14.0 <2.0.0',
253 silly cache add type: 'range' }
254 silly addNamed follow-redirects@>=1.14.0 <2.0.0
255 verbose addNamed ">=1.14.0 <2.0.0" is a valid semver range for follow-redirects
256 silly addNameRange { name: 'follow-redirects',
256 silly addNameRange range: '>=1.14.0 <2.0.0',
256 silly addNameRange hasData: false }
257 silly mapToRegistry name follow-redirects
258 silly mapToRegistry using default registry
259 silly mapToRegistry registry https://registry.npmjs.org/
260 silly mapToRegistry data Result {
260 silly mapToRegistry raw: 'follow-redirects',
260 silly mapToRegistry scope: null,
260 silly mapToRegistry escapedName: 'follow-redirects',
260 silly mapToRegistry name: 'follow-redirects',
260 silly mapToRegistry rawSpec: '',
260 silly mapToRegistry spec: 'latest',
260 silly mapToRegistry type: 'tag' }
261 silly mapToRegistry uri https://registry.npmjs.org/follow-redirects
262 verbose addNameRange registry:https://registry.npmjs.org/follow-redirects not in flight; fetching
263 verbose get https://registry.npmjs.org/follow-redirects not expired, no request
264 silly addNameRange number 2 { name: 'follow-redirects',
264 silly addNameRange range: '>=1.14.0 <2.0.0',
264 silly addNameRange hasData: true }
265 silly addNameRange versions [ 'follow-redirects',
265 silly addNameRange [ '0.0.1',
265 silly addNameRange '0.0.2',
265 silly addNameRange '0.0.3',
265 silly addNameRange '0.0.4',
265 silly addNameRange '0.0.5',
265 silly addNameRange '0.0.6',
265 silly addNameRange '0.0.7',
265 silly addNameRange '0.1.0',
265 silly addNameRange '0.2.0',
265 silly addNameRange '0.3.0',
265 silly addNameRange '1.0.0',
265 silly addNameRange '1.1.0',
265 silly addNameRange '1.2.0',
265 silly addNameRange '1.2.1',
265 silly addNameRange '1.2.2',
265 silly addNameRange '1.2.3',
265 silly addNameRange '1.2.4',
265 silly addNameRange '1.2.5',
265 silly addNameRange '1.2.6',
265 silly addNameRange '1.3.0',
265 silly addNameRange '1.4.0',
265 silly addNameRange '1.4.1',
265 silly addNameRange '1.5.0',
265 silly addNameRange '1.5.1',
265 silly addNameRange '1.5.2',
265 silly addNameRange '1.5.3',
265 silly addNameRange '1.5.4',
265 silly addNameRange '1.5.5',
265 silly addNameRange '1.5.6',
265 silly addNameRange '1.5.7',
265 silly addNameRange '1.5.8',
265 silly addNameRange '1.5.9',
265 silly addNameRange '1.5.10',
265 silly addNameRange '1.6.0',
265 silly addNameRange '1.6.1',
265 silly addNameRange '1.7.0',
265 silly addNameRange '1.8.0',
265 silly addNameRange '1.8.1',
265 silly addNameRange '1.9.0',
265 silly addNameRange '1.9.1',
265 silly addNameRange '1.10.0',
265 silly addNameRange '1.11.0',
265 silly addNameRange '1.12.0',
265 silly addNameRange '1.12.1',
265 silly addNameRange '1.13.0',
265 silly addNameRange '1.13.1',
265 silly addNameRange '1.13.2',
265 silly addNameRange '1.13.3',
265 silly addNameRange '1.14.0',
265 silly addNameRange '1.14.1',
265 silly addNameRange '1.14.2',
265 silly addNameRange '1.14.3',
265 silly addNameRange '1.14.4',
265 silly addNameRange '1.14.5',
265 silly addNameRange '1.14.6',
265 silly addNameRange '1.14.7',
265 silly addNameRange '1.14.8',
265 silly addNameRange '1.14.9',
265 silly addNameRange '1.15.0',
265 silly addNameRange '1.15.1',
265 silly addNameRange '1.15.2' ] ]
266 silly addNamed [email protected]
267 verbose addNamed "1.15.2" is a plain semver version for follow-redirects
268 silly cache afterAdd [email protected]
269 verbose afterAdd /Users/manon/.npm/follow-redirects/1.15.2/package/package.json not in flight; writing
270 verbose correctMkdir /Users/manon/.npm correctMkdir not in flight; initializing
271 verbose afterAdd /Users/manon/.npm/follow-redirects/1.15.2/package/package.json written
272 silly fetchNamedPackageData @algolia/events
273 silly mapToRegistry name @algolia/events
274 silly mapToRegistry scope (from package name) @algolia
275 verbose mapToRegistry no registry URL found in name for scope @algolia
276 silly mapToRegistry using default registry
277 silly mapToRegistry registry https://registry.npmjs.org/
278 silly mapToRegistry data Result {
278 silly mapToRegistry raw: '@algolia/events',
278 silly mapToRegistry scope: '@algolia',
278 silly mapToRegistry escapedName: '@algolia%2fevents',
278 silly mapToRegistry name: '@algolia/events',
278 silly mapToRegistry rawSpec: '',
278 silly mapToRegistry spec: 'latest',
278 silly mapToRegistry type: 'tag' }
279 silly mapToRegistry uri https://registry.npmjs.org/@algolia%2fevents
280 silly fetchNamedPackageData @algolia/ui-components-highlight-vdom
281 silly mapToRegistry name @algolia/ui-components-highlight-vdom
282 silly mapToRegistry scope (from package name) @algolia
283 verbose mapToRegistry no registry URL found in name for scope @algolia
284 silly mapToRegistry using default registry
285 silly mapToRegistry registry https://registry.npmjs.org/
286 silly mapToRegistry data Result {
286 silly mapToRegistry raw: '@algolia/ui-components-highlight-vdom',
286 silly mapToRegistry scope: '@algolia',
286 silly mapToRegistry escapedName: '@algolia%2fui-components-highlight-vdom',
286 silly mapToRegistry name: '@algolia/ui-components-highlight-vdom',
286 silly mapToRegistry rawSpec: '',
286 silly mapToRegistry spec: 'latest',
286 silly mapToRegistry type: 'tag' }
287 silly mapToRegistry uri https://registry.npmjs.org/@algolia%2fui-components-highlight-vdom
288 silly fetchNamedPackageData @algolia/ui-components-shared
289 silly mapToRegistry name @algolia/ui-components-shared
290 silly mapToRegistry scope (from package name) @algolia
291 verbose mapToRegistry no registry URL found in name for scope @algolia
292 silly mapToRegistry using default registry
293 silly mapToRegistry registry https://registry.npmjs.org/
294 silly mapToRegistry data Result {
294 silly mapToRegistry raw: '@algolia/ui-components-shared',
294 silly mapToRegistry scope: '@algolia',
294 silly mapToRegistry escapedName: '@algolia%2fui-components-shared',
294 silly mapToRegistry name: '@algolia/ui-components-shared',
294 silly mapToRegistry rawSpec: '',
294 silly mapToRegistry spec: 'latest',
294 silly mapToRegistry type: 'tag' }
295 silly mapToRegistry uri https://registry.npmjs.org/@algolia%2fui-components-shared
296 silly fetchNamedPackageData @types/dom-speech-recognition
297 silly mapToRegistry name @types/dom-speech-recognition
298 silly mapToRegistry scope (from package name) @types
299 verbose mapToRegistry no registry URL found in name for scope @types
300 silly mapToRegistry using default registry
301 silly mapToRegistry registry https://registry.npmjs.org/
302 silly mapToRegistry data Result {
302 silly mapToRegistry raw: '@types/dom-speech-recognition',
302 silly mapToRegistry scope: '@types',
302 silly mapToRegistry escapedName: '@types%2fdom-speech-recognition',
302 silly mapToRegistry name: '@types/dom-speech-recognition',
302 silly mapToRegistry rawSpec: '',
302 silly mapToRegistry spec: 'latest',
302 silly mapToRegistry type: 'tag' }
303 silly mapToRegistry uri https://registry.npmjs.org/@types%2fdom-speech-recognition
304 silly fetchNamedPackageData @types/google.maps
305 silly mapToRegistry name @types/google.maps
306 silly mapToRegistry scope (from package name) @types
307 verbose mapToRegistry no registry URL found in name for scope @types
308 silly mapToRegistry using default registry
309 silly mapToRegistry registry https://registry.npmjs.org/
310 silly mapToRegistry data Result {
310 silly mapToRegistry raw: '@types/google.maps',
310 silly mapToRegistry scope: '@types',
310 silly mapToRegistry escapedName: '@types%2fgoogle.maps',
310 silly mapToRegistry name: '@types/google.maps',
310 silly mapToRegistry rawSpec: '',
310 silly mapToRegistry spec: 'latest',
310 silly mapToRegistry type: 'tag' }
311 silly mapToRegistry uri https://registry.npmjs.org/@types%2fgoogle.maps
312 silly fetchNamedPackageData @types/hogan.js
313 silly mapToRegistry name @types/hogan.js
314 silly mapToRegistry scope (from package name) @types
315 verbose mapToRegistry no registry URL found in name for scope @types
316 silly mapToRegistry using default registry
317 silly mapToRegistry registry https://registry.npmjs.org/
318 silly mapToRegistry data Result {
318 silly mapToRegistry raw: '@types/hogan.js',
318 silly mapToRegistry scope: '@types',
318 silly mapToRegistry escapedName: '@types%2fhogan.js',
318 silly mapToRegistry name: '@types/hogan.js',
318 silly mapToRegistry rawSpec: '',
318 silly mapToRegistry spec: 'latest',
318 silly mapToRegistry type: 'tag' }
319 silly mapToRegistry uri https://registry.npmjs.org/@types%2fhogan.js
320 silly fetchNamedPackageData @types/qs
321 silly mapToRegistry name @types/qs
322 silly mapToRegistry scope (from package name) @types
323 verbose mapToRegistry no registry URL found in name for scope @types
324 silly mapToRegistry using default registry
325 silly mapToRegistry registry https://registry.npmjs.org/
326 silly mapToRegistry data Result {
326 silly mapToRegistry raw: '@types/qs',
326 silly mapToRegistry scope: '@types',
326 silly mapToRegistry escapedName: '@types%2fqs',
326 silly mapToRegistry name: '@types/qs',
326 silly mapToRegistry rawSpec: '',
326 silly mapToRegistry spec: 'latest',
326 silly mapToRegistry type: 'tag' }
327 silly mapToRegistry uri https://registry.npmjs.org/@types%2fqs
328 silly fetchNamedPackageData algoliasearch-helper
329 silly mapToRegistry name algoliasearch-helper
330 silly mapToRegistry using default registry
331 silly mapToRegistry registry https://registry.npmjs.org/
332 silly mapToRegistry data Result {
332 silly mapToRegistry raw: 'algoliasearch-helper',
332 silly mapToRegistry scope: null,
332 silly mapToRegistry escapedName: 'algoliasearch-helper',
332 silly mapToRegistry name: 'algoliasearch-helper',
332 silly mapToRegistry rawSpec: '',
332 silly mapToRegistry spec: 'latest',
332 silly mapToRegistry type: 'tag' }
333 silly mapToRegistry uri https://registry.npmjs.org/algoliasearch-helper
334 silly fetchNamedPackageData hogan.js
335 silly mapToRegistry name hogan.js
336 silly mapToRegistry using default registry
337 silly mapToRegistry registry https://registry.npmjs.org/
338 silly mapToRegistry data Result {
338 silly mapToRegistry raw: 'hogan.js',
338 silly mapToRegistry scope: null,
338 silly mapToRegistry escapedName: 'hogan.js',
338 silly mapToRegistry name: 'hogan.js',
338 silly mapToRegistry rawSpec: '',
338 silly mapToRegistry spec: 'latest',
338 silly mapToRegistry type: 'tag' }
339 silly mapToRegistry uri https://registry.npmjs.org/hogan.js
340 silly fetchNamedPackageData htm
341 silly mapToRegistry name htm
342 silly mapToRegistry using default registry
343 silly mapToRegistry registry https://registry.npmjs.org/
344 silly mapToRegistry data Result {
344 silly mapToRegistry raw: 'htm',
344 silly mapToRegistry scope: null,
344 silly mapToRegistry escapedName: 'htm',
344 silly mapToRegistry name: 'htm',
344 silly mapToRegistry rawSpec: '',
344 silly mapToRegistry spec: 'latest',
344 silly mapToRegistry type: 'tag' }
345 silly mapToRegistry uri https://registry.npmjs.org/htm
346 silly fetchNamedPackageData preact
347 silly mapToRegistry name preact
348 silly mapToRegistry using default registry
349 silly mapToRegistry registry https://registry.npmjs.org/
350 silly mapToRegistry data Result {
350 silly mapToRegistry raw: 'preact',
350 silly mapToRegistry scope: null,
350 silly mapToRegistry escapedName: 'preact',
350 silly mapToRegistry name: 'preact',
350 silly mapToRegistry rawSpec: '',
350 silly mapToRegistry spec: 'latest',
350 silly mapToRegistry type: 'tag' }
351 silly mapToRegistry uri https://registry.npmjs.org/preact
352 silly fetchNamedPackageData qs
353 silly mapToRegistry name qs
354 silly mapToRegistry using default registry
355 silly mapToRegistry registry https://registry.npmjs.org/
356 silly mapToRegistry data Result {
356 silly mapToRegistry raw: 'qs',
356 silly mapToRegistry scope: null,
356 silly mapToRegistry escapedName: 'qs',
356 silly mapToRegistry name: 'qs',
356 silly mapToRegistry rawSpec: '',
356 silly mapToRegistry spec: 'latest',
356 silly mapToRegistry type: 'tag' }
357 silly mapToRegistry uri https://registry.npmjs.org/qs
358 silly fetchNamedPackageData search-insights
359 silly mapToRegistry name search-insights
360 silly mapToRegistry using default registry
361 silly mapToRegistry registry https://registry.npmjs.org/
362 silly mapToRegistry data Result {
362 silly mapToRegistry raw: 'search-insights',
362 silly mapToRegistry scope: null,
362 silly mapToRegistry escapedName: 'search-insights',
362 silly mapToRegistry name: 'search-insights',
362 silly mapToRegistry rawSpec: '',
362 silly mapToRegistry spec: 'latest',
362 silly mapToRegistry type: 'tag' }
363 silly mapToRegistry uri https://registry.npmjs.org/search-insights
364 verbose request uri https://registry.npmjs.org/@algolia%2fevents
365 verbose request no auth needed
366 info attempt registry request try #1 at 17:11:01
367 http request GET https://registry.npmjs.org/@algolia%2fevents
368 verbose request uri https://registry.npmjs.org/@algolia%2fui-components-highlight-vdom
369 verbose request no auth needed
370 info attempt registry request try #1 at 17:11:01
371 http request GET https://registry.npmjs.org/@algolia%2fui-components-highlight-vdom
372 verbose request uri https://registry.npmjs.org/@algolia%2fui-components-shared
373 verbose request no auth needed
374 info attempt registry request try #1 at 17:11:01
375 http request GET https://registry.npmjs.org/@algolia%2fui-components-shared
376 verbose request uri https://registry.npmjs.org/@types%2fdom-speech-recognition
377 verbose request no auth needed
378 info attempt registry request try #1 at 17:11:01
379 http request GET https://registry.npmjs.org/@types%2fdom-speech-recognition
380 verbose request uri https://registry.npmjs.org/@types%2fgoogle.maps
381 verbose request no auth needed
382 info attempt registry request try #1 at 17:11:01
383 http request GET https://registry.npmjs.org/@types%2fgoogle.maps
384 verbose request uri https://registry.npmjs.org/@types%2fhogan.js
385 verbose request no auth needed
386 info attempt registry request try #1 at 17:11:01
387 http request GET https://registry.npmjs.org/@types%2fhogan.js
388 verbose request uri https://registry.npmjs.org/@types%2fqs
389 verbose request no auth needed
390 info attempt registry request try #1 at 17:11:01
391 http request GET https://registry.npmjs.org/@types%2fqs
392 verbose request uri https://registry.npmjs.org/algoliasearch-helper
393 verbose request no auth needed
394 info attempt registry request try #1 at 17:11:01
395 http request GET https://registry.npmjs.org/algoliasearch-helper
396 verbose request uri https://registry.npmjs.org/hogan.js
397 verbose request no auth needed
398 info attempt registry request try #1 at 17:11:01
399 http request GET https://registry.npmjs.org/hogan.js
400 verbose request uri https://registry.npmjs.org/htm