-
Notifications
You must be signed in to change notification settings - Fork 0
/
npm-debug.log
1485 lines (1485 loc) · 81.8 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', '/usr/bin/npm', 'install' ]
2 info using [email protected]
3 info using [email protected]
4 silly loadCurrentTree Starting
5 silly install loadCurrentTree
6 silly install readLocalPackageData
7 silly install normalizeTree
8 silly loadCurrentTree Finishing
9 silly loadIdealTree Starting
10 silly install loadIdealTree
11 silly cloneCurrentTree Starting
12 silly install cloneCurrentTreeToIdealTree
13 silly cloneCurrentTree Finishing
14 silly loadShrinkwrap Starting
15 silly install loadShrinkwrap
16 silly loadShrinkwrap Finishing
17 silly loadAllDepsIntoIdealTree Starting
18 silly install loadAllDepsIntoIdealTree
19 silly fetchNamedPackageData @babel/polyfill
20 silly mapToRegistry name @babel/polyfill
21 silly mapToRegistry scope (from package name) @babel
22 verbose mapToRegistry no registry URL found in name for scope @babel
23 silly mapToRegistry using default registry
24 silly mapToRegistry registry https://registry.npmjs.org/
25 silly mapToRegistry uri https://registry.npmjs.org/@babel%2fpolyfill
26 silly fetchNamedPackageData @getclaps/button
27 silly mapToRegistry name @getclaps/button
28 silly mapToRegistry scope (from package name) @getclaps
29 verbose mapToRegistry no registry URL found in name for scope @getclaps
30 silly mapToRegistry using default registry
31 silly mapToRegistry registry https://registry.npmjs.org/
32 silly mapToRegistry uri https://registry.npmjs.org/@getclaps%2fbutton
33 silly fetchNamedPackageData @hydecorp/component
34 silly mapToRegistry name @hydecorp/component
35 silly mapToRegistry scope (from package name) @hydecorp
36 verbose mapToRegistry no registry URL found in name for scope @hydecorp
37 silly mapToRegistry using default registry
38 silly mapToRegistry registry https://registry.npmjs.org/
39 silly mapToRegistry uri https://registry.npmjs.org/@hydecorp%2fcomponent
40 silly fetchNamedPackageData @hydecorp/drawer
41 silly mapToRegistry name @hydecorp/drawer
42 silly mapToRegistry scope (from package name) @hydecorp
43 verbose mapToRegistry no registry URL found in name for scope @hydecorp
44 silly mapToRegistry using default registry
45 silly mapToRegistry registry https://registry.npmjs.org/
46 silly mapToRegistry uri https://registry.npmjs.org/@hydecorp%2fdrawer
47 silly fetchNamedPackageData @hydecorp/push-state
48 silly mapToRegistry name @hydecorp/push-state
49 silly mapToRegistry scope (from package name) @hydecorp
50 verbose mapToRegistry no registry URL found in name for scope @hydecorp
51 silly mapToRegistry using default registry
52 silly mapToRegistry registry https://registry.npmjs.org/
53 silly mapToRegistry uri https://registry.npmjs.org/@hydecorp%2fpush-state
54 silly fetchNamedPackageData @juggle/resize-observer
55 silly mapToRegistry name @juggle/resize-observer
56 silly mapToRegistry scope (from package name) @juggle
57 verbose mapToRegistry no registry URL found in name for scope @juggle
58 silly mapToRegistry using default registry
59 silly mapToRegistry registry https://registry.npmjs.org/
60 silly mapToRegistry uri https://registry.npmjs.org/@juggle%2fresize-observer
61 silly fetchNamedPackageData @webcomponents/custom-elements
62 silly mapToRegistry name @webcomponents/custom-elements
63 silly mapToRegistry scope (from package name) @webcomponents
64 verbose mapToRegistry no registry URL found in name for scope @webcomponents
65 silly mapToRegistry using default registry
66 silly mapToRegistry registry https://registry.npmjs.org/
67 silly mapToRegistry uri https://registry.npmjs.org/@webcomponents%2fcustom-elements
68 silly fetchNamedPackageData @webcomponents/shadycss
69 silly mapToRegistry name @webcomponents/shadycss
70 silly mapToRegistry scope (from package name) @webcomponents
71 verbose mapToRegistry no registry URL found in name for scope @webcomponents
72 silly mapToRegistry using default registry
73 silly mapToRegistry registry https://registry.npmjs.org/
74 silly mapToRegistry uri https://registry.npmjs.org/@webcomponents%2fshadycss
75 silly fetchNamedPackageData @webcomponents/shadydom
76 silly mapToRegistry name @webcomponents/shadydom
77 silly mapToRegistry scope (from package name) @webcomponents
78 verbose mapToRegistry no registry URL found in name for scope @webcomponents
79 silly mapToRegistry using default registry
80 silly mapToRegistry registry https://registry.npmjs.org/
81 silly mapToRegistry uri https://registry.npmjs.org/@webcomponents%2fshadydom
82 silly fetchNamedPackageData @webcomponents/template
83 silly mapToRegistry name @webcomponents/template
84 silly mapToRegistry scope (from package name) @webcomponents
85 verbose mapToRegistry no registry URL found in name for scope @webcomponents
86 silly mapToRegistry using default registry
87 silly mapToRegistry registry https://registry.npmjs.org/
88 silly mapToRegistry uri https://registry.npmjs.org/@webcomponents%2ftemplate
89 silly fetchNamedPackageData @webcomponents/url
90 silly mapToRegistry name @webcomponents/url
91 silly mapToRegistry scope (from package name) @webcomponents
92 verbose mapToRegistry no registry URL found in name for scope @webcomponents
93 silly mapToRegistry using default registry
94 silly mapToRegistry registry https://registry.npmjs.org/
95 silly mapToRegistry uri https://registry.npmjs.org/@webcomponents%2furl
96 silly fetchNamedPackageData @webcomponents/webcomponents-platform
97 silly mapToRegistry name @webcomponents/webcomponents-platform
98 silly mapToRegistry scope (from package name) @webcomponents
99 verbose mapToRegistry no registry URL found in name for scope @webcomponents
100 silly mapToRegistry using default registry
101 silly mapToRegistry registry https://registry.npmjs.org/
102 silly mapToRegistry uri https://registry.npmjs.org/@webcomponents%2fwebcomponents-platform
103 silly fetchNamedPackageData @webcomponents/webcomponentsjs
104 silly mapToRegistry name @webcomponents/webcomponentsjs
105 silly mapToRegistry scope (from package name) @webcomponents
106 verbose mapToRegistry no registry URL found in name for scope @webcomponents
107 silly mapToRegistry using default registry
108 silly mapToRegistry registry https://registry.npmjs.org/
109 silly mapToRegistry uri https://registry.npmjs.org/@webcomponents%2fwebcomponentsjs
110 silly fetchNamedPackageData abortcontroller-polyfill
111 silly mapToRegistry name abortcontroller-polyfill
112 silly mapToRegistry using default registry
113 silly mapToRegistry registry https://registry.npmjs.org/
114 silly mapToRegistry uri https://registry.npmjs.org/abortcontroller-polyfill
115 silly fetchNamedPackageData broadcastchannel-polyfill
116 silly mapToRegistry name broadcastchannel-polyfill
117 silly mapToRegistry using default registry
118 silly mapToRegistry registry https://registry.npmjs.org/
119 silly mapToRegistry uri https://registry.npmjs.org/broadcastchannel-polyfill
120 silly fetchNamedPackageData core-js
121 silly mapToRegistry name core-js
122 silly mapToRegistry using default registry
123 silly mapToRegistry registry https://registry.npmjs.org/
124 silly mapToRegistry uri https://registry.npmjs.org/core-js
125 silly fetchNamedPackageData create-element-x
126 silly mapToRegistry name create-element-x
127 silly mapToRegistry using default registry
128 silly mapToRegistry registry https://registry.npmjs.org/
129 silly mapToRegistry uri https://registry.npmjs.org/create-element-x
130 silly fetchNamedPackageData dom4
131 silly mapToRegistry name dom4
132 silly mapToRegistry using default registry
133 silly mapToRegistry registry https://registry.npmjs.org/
134 silly mapToRegistry uri https://registry.npmjs.org/dom4
135 silly fetchNamedPackageData intersection-observer
136 silly mapToRegistry name intersection-observer
137 silly mapToRegistry using default registry
138 silly mapToRegistry registry https://registry.npmjs.org/
139 silly mapToRegistry uri https://registry.npmjs.org/intersection-observer
140 silly fetchNamedPackageData kv-storage-polyfill
141 silly mapToRegistry name kv-storage-polyfill
142 silly mapToRegistry using default registry
143 silly mapToRegistry registry https://registry.npmjs.org/
144 silly mapToRegistry uri https://registry.npmjs.org/kv-storage-polyfill
145 silly fetchNamedPackageData lit-html
146 silly mapToRegistry name lit-html
147 silly mapToRegistry using default registry
148 silly mapToRegistry registry https://registry.npmjs.org/
149 silly mapToRegistry uri https://registry.npmjs.org/lit-html
150 silly fetchNamedPackageData minisearch
151 silly mapToRegistry name minisearch
152 silly mapToRegistry using default registry
153 silly mapToRegistry registry https://registry.npmjs.org/
154 silly mapToRegistry uri https://registry.npmjs.org/minisearch
155 silly fetchNamedPackageData rxjs
156 silly mapToRegistry name rxjs
157 silly mapToRegistry using default registry
158 silly mapToRegistry registry https://registry.npmjs.org/
159 silly mapToRegistry uri https://registry.npmjs.org/rxjs
160 silly fetchNamedPackageData scroll-into-view-if-needed
161 silly mapToRegistry name scroll-into-view-if-needed
162 silly mapToRegistry using default registry
163 silly mapToRegistry registry https://registry.npmjs.org/
164 silly mapToRegistry uri https://registry.npmjs.org/scroll-into-view-if-needed
165 silly fetchNamedPackageData tippy.js
166 silly mapToRegistry name tippy.js
167 silly mapToRegistry using default registry
168 silly mapToRegistry registry https://registry.npmjs.org/
169 silly mapToRegistry uri https://registry.npmjs.org/tippy.js
170 silly fetchNamedPackageData tslib
171 silly mapToRegistry name tslib
172 silly mapToRegistry using default registry
173 silly mapToRegistry registry https://registry.npmjs.org/
174 silly mapToRegistry uri https://registry.npmjs.org/tslib
175 silly fetchNamedPackageData web-animations-js
176 silly mapToRegistry name web-animations-js
177 silly mapToRegistry using default registry
178 silly mapToRegistry registry https://registry.npmjs.org/
179 silly mapToRegistry uri https://registry.npmjs.org/web-animations-js
180 silly fetchNamedPackageData whatwg-fetch
181 silly mapToRegistry name whatwg-fetch
182 silly mapToRegistry using default registry
183 silly mapToRegistry registry https://registry.npmjs.org/
184 silly mapToRegistry uri https://registry.npmjs.org/whatwg-fetch
185 verbose request uri https://registry.npmjs.org/@babel%2fpolyfill
186 verbose request no auth needed
187 info attempt registry request try #1 at 11:37:34
188 verbose request id f65cc352405fcfdf
189 http request GET https://registry.npmjs.org/@babel%2fpolyfill
190 verbose request uri https://registry.npmjs.org/@getclaps%2fbutton
191 verbose request no auth needed
192 info attempt registry request try #1 at 11:37:34
193 http request GET https://registry.npmjs.org/@getclaps%2fbutton
194 verbose request uri https://registry.npmjs.org/@hydecorp%2fcomponent
195 verbose request no auth needed
196 info attempt registry request try #1 at 11:37:34
197 http request GET https://registry.npmjs.org/@hydecorp%2fcomponent
198 verbose request uri https://registry.npmjs.org/@hydecorp%2fdrawer
199 verbose request no auth needed
200 info attempt registry request try #1 at 11:37:34
201 http request GET https://registry.npmjs.org/@hydecorp%2fdrawer
202 verbose request uri https://registry.npmjs.org/@hydecorp%2fpush-state
203 verbose request no auth needed
204 info attempt registry request try #1 at 11:37:34
205 http request GET https://registry.npmjs.org/@hydecorp%2fpush-state
206 verbose request uri https://registry.npmjs.org/@juggle%2fresize-observer
207 verbose request no auth needed
208 info attempt registry request try #1 at 11:37:34
209 http request GET https://registry.npmjs.org/@juggle%2fresize-observer
210 verbose request uri https://registry.npmjs.org/@webcomponents%2fcustom-elements
211 verbose request no auth needed
212 info attempt registry request try #1 at 11:37:34
213 http request GET https://registry.npmjs.org/@webcomponents%2fcustom-elements
214 verbose request uri https://registry.npmjs.org/@webcomponents%2fshadycss
215 verbose request no auth needed
216 info attempt registry request try #1 at 11:37:34
217 http request GET https://registry.npmjs.org/@webcomponents%2fshadycss
218 verbose request uri https://registry.npmjs.org/@webcomponents%2fshadydom
219 verbose request no auth needed
220 info attempt registry request try #1 at 11:37:34
221 http request GET https://registry.npmjs.org/@webcomponents%2fshadydom
222 verbose request uri https://registry.npmjs.org/@webcomponents%2ftemplate
223 verbose request no auth needed
224 info attempt registry request try #1 at 11:37:34
225 http request GET https://registry.npmjs.org/@webcomponents%2ftemplate
226 verbose request uri https://registry.npmjs.org/@webcomponents%2furl
227 verbose request no auth needed
228 info attempt registry request try #1 at 11:37:34
229 http request GET https://registry.npmjs.org/@webcomponents%2furl
230 verbose request uri https://registry.npmjs.org/@webcomponents%2fwebcomponents-platform
231 verbose request no auth needed
232 info attempt registry request try #1 at 11:37:34
233 http request GET https://registry.npmjs.org/@webcomponents%2fwebcomponents-platform
234 verbose request uri https://registry.npmjs.org/@webcomponents%2fwebcomponentsjs
235 verbose request no auth needed
236 info attempt registry request try #1 at 11:37:34
237 http request GET https://registry.npmjs.org/@webcomponents%2fwebcomponentsjs
238 verbose request uri https://registry.npmjs.org/abortcontroller-polyfill
239 verbose request no auth needed
240 info attempt registry request try #1 at 11:37:34
241 http request GET https://registry.npmjs.org/abortcontroller-polyfill
242 verbose request uri https://registry.npmjs.org/broadcastchannel-polyfill
243 verbose request no auth needed
244 info attempt registry request try #1 at 11:37:34
245 http request GET https://registry.npmjs.org/broadcastchannel-polyfill
246 verbose request uri https://registry.npmjs.org/core-js
247 verbose request no auth needed
248 info attempt registry request try #1 at 11:37:34
249 http request GET https://registry.npmjs.org/core-js
250 verbose request uri https://registry.npmjs.org/create-element-x
251 verbose request no auth needed
252 info attempt registry request try #1 at 11:37:34
253 http request GET https://registry.npmjs.org/create-element-x
254 verbose request uri https://registry.npmjs.org/dom4
255 verbose request no auth needed
256 info attempt registry request try #1 at 11:37:34
257 http request GET https://registry.npmjs.org/dom4
258 verbose request uri https://registry.npmjs.org/intersection-observer
259 verbose request no auth needed
260 info attempt registry request try #1 at 11:37:34
261 http request GET https://registry.npmjs.org/intersection-observer
262 verbose request uri https://registry.npmjs.org/kv-storage-polyfill
263 verbose request no auth needed
264 info attempt registry request try #1 at 11:37:34
265 http request GET https://registry.npmjs.org/kv-storage-polyfill
266 verbose request uri https://registry.npmjs.org/lit-html
267 verbose request no auth needed
268 info attempt registry request try #1 at 11:37:34
269 http request GET https://registry.npmjs.org/lit-html
270 verbose request uri https://registry.npmjs.org/minisearch
271 verbose request no auth needed
272 info attempt registry request try #1 at 11:37:34
273 http request GET https://registry.npmjs.org/minisearch
274 verbose request uri https://registry.npmjs.org/rxjs
275 verbose request no auth needed
276 info attempt registry request try #1 at 11:37:34
277 http request GET https://registry.npmjs.org/rxjs
278 verbose request uri https://registry.npmjs.org/scroll-into-view-if-needed
279 verbose request no auth needed
280 info attempt registry request try #1 at 11:37:34
281 http request GET https://registry.npmjs.org/scroll-into-view-if-needed
282 verbose request uri https://registry.npmjs.org/tippy.js
283 verbose request no auth needed
284 info attempt registry request try #1 at 11:37:34
285 http request GET https://registry.npmjs.org/tippy.js
286 verbose request uri https://registry.npmjs.org/tslib
287 verbose request no auth needed
288 info attempt registry request try #1 at 11:37:34
289 http request GET https://registry.npmjs.org/tslib
290 verbose request uri https://registry.npmjs.org/web-animations-js
291 verbose request no auth needed
292 info attempt registry request try #1 at 11:37:34
293 http request GET https://registry.npmjs.org/web-animations-js
294 verbose request uri https://registry.npmjs.org/whatwg-fetch
295 verbose request no auth needed
296 info attempt registry request try #1 at 11:37:34
297 http request GET https://registry.npmjs.org/whatwg-fetch
298 http 200 https://registry.npmjs.org/abortcontroller-polyfill
299 verbose headers { date: 'Fri, 04 Jun 2021 10:37:35 GMT',
299 verbose headers 'content-type': 'application/json',
299 verbose headers 'transfer-encoding': 'chunked',
299 verbose headers connection: 'keep-alive',
299 verbose headers 'cf-ray': '65a086d5a8ca074e-LHR',
299 verbose headers age: '6682',
299 verbose headers 'cache-control': 'public, max-age=300',
299 verbose headers etag: 'W/"2b801e3afa6c8fd122a73c31320111a1"',
299 verbose headers 'last-modified': 'Sat, 08 May 2021 18:14:40 GMT',
299 verbose headers vary: 'accept-encoding, accept',
299 verbose headers 'cf-cache-status': 'HIT',
299 verbose headers 'cf-request-id': '0a7832998c0000074e979a9000000001',
299 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
299 verbose headers server: 'cloudflare',
299 verbose headers 'content-encoding': 'gzip' }
300 silly get cb [ 200,
300 silly get { date: 'Fri, 04 Jun 2021 10:37:35 GMT',
300 silly get 'content-type': 'application/json',
300 silly get 'transfer-encoding': 'chunked',
300 silly get connection: 'keep-alive',
300 silly get 'cf-ray': '65a086d5a8ca074e-LHR',
300 silly get age: '6682',
300 silly get 'cache-control': 'public, max-age=300',
300 silly get etag: 'W/"2b801e3afa6c8fd122a73c31320111a1"',
300 silly get 'last-modified': 'Sat, 08 May 2021 18:14:40 GMT',
300 silly get vary: 'accept-encoding, accept',
300 silly get 'cf-cache-status': 'HIT',
300 silly get 'cf-request-id': '0a7832998c0000074e979a9000000001',
300 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
300 silly get server: 'cloudflare',
300 silly get 'content-encoding': 'gzip' } ]
301 verbose get saving abortcontroller-polyfill to /home/josh/.npm/registry.npmjs.org/abortcontroller-polyfill/.cache.json
302 verbose makeDirectory /home/josh/.npm creation not in flight; initializing
303 silly makeDirectory /home/josh/.npm uid: 1000 gid: 1000
304 silly resolveWithNewModule [email protected] checking installable status
305 silly cache add args [ 'abortcontroller-polyfill@^1.7.1', null ]
306 verbose cache add spec abortcontroller-polyfill@^1.7.1
307 silly cache add parsed spec Result {
307 silly cache add raw: 'abortcontroller-polyfill@^1.7.1',
307 silly cache add scope: null,
307 silly cache add name: 'abortcontroller-polyfill',
307 silly cache add rawSpec: '^1.7.1',
307 silly cache add spec: '>=1.7.1 <2.0.0',
307 silly cache add type: 'range' }
308 silly addNamed abortcontroller-polyfill@>=1.7.1 <2.0.0
309 verbose addNamed ">=1.7.1 <2.0.0" is a valid semver range for abortcontroller-polyfill
310 silly addNameRange { name: 'abortcontroller-polyfill',
310 silly addNameRange range: '>=1.7.1 <2.0.0',
310 silly addNameRange hasData: false }
311 silly mapToRegistry name abortcontroller-polyfill
312 silly mapToRegistry using default registry
313 silly mapToRegistry registry https://registry.npmjs.org/
314 silly mapToRegistry uri https://registry.npmjs.org/abortcontroller-polyfill
315 verbose addNameRange registry:https://registry.npmjs.org/abortcontroller-polyfill not in flight; fetching
316 verbose get https://registry.npmjs.org/abortcontroller-polyfill not expired, no request
317 silly addNameRange number 2 { name: 'abortcontroller-polyfill',
317 silly addNameRange range: '>=1.7.1 <2.0.0',
317 silly addNameRange hasData: true }
318 silly addNameRange versions [ 'abortcontroller-polyfill',
318 silly addNameRange [ '1.0.0',
318 silly addNameRange '1.0.1',
318 silly addNameRange '1.0.2',
318 silly addNameRange '1.0.3',
318 silly addNameRange '1.0.4',
318 silly addNameRange '1.0.5',
318 silly addNameRange '1.0.6',
318 silly addNameRange '1.0.7',
318 silly addNameRange '1.0.8',
318 silly addNameRange '1.0.9',
318 silly addNameRange '1.1.0',
318 silly addNameRange '1.1.1',
318 silly addNameRange '1.1.2',
318 silly addNameRange '1.1.3',
318 silly addNameRange '1.1.4',
318 silly addNameRange '1.1.5',
318 silly addNameRange '1.1.6',
318 silly addNameRange '1.1.7',
318 silly addNameRange '1.1.8',
318 silly addNameRange '1.1.9',
318 silly addNameRange '1.2.0',
318 silly addNameRange '1.2.1',
318 silly addNameRange '1.2.2',
318 silly addNameRange '1.2.3',
318 silly addNameRange '1.2.4',
318 silly addNameRange '1.2.5',
318 silly addNameRange '1.2.6',
318 silly addNameRange '1.2.7',
318 silly addNameRange '1.2.8',
318 silly addNameRange '1.2.9',
318 silly addNameRange '1.3.0',
318 silly addNameRange '1.4.0',
318 silly addNameRange '1.5.0',
318 silly addNameRange '1.6.0',
318 silly addNameRange '1.7.0',
318 silly addNameRange '1.7.1',
318 silly addNameRange '1.7.2',
318 silly addNameRange '1.7.3' ] ]
319 silly addNamed [email protected]
320 verbose addNamed "1.7.3" is a plain semver version for abortcontroller-polyfill
321 http 200 https://registry.npmjs.org/intersection-observer
322 verbose headers { date: 'Fri, 04 Jun 2021 10:37:35 GMT',
322 verbose headers 'content-type': 'application/json',
322 verbose headers 'transfer-encoding': 'chunked',
322 verbose headers connection: 'keep-alive',
322 verbose headers 'cf-ray': '65a086d5cf78e604-LHR',
322 verbose headers age: '5338',
322 verbose headers 'cache-control': 'public, max-age=300',
322 verbose headers etag: 'W/"194de8b76aa9af7866ead5de50400a39"',
322 verbose headers 'last-modified': 'Thu, 10 Dec 2020 17:44:11 GMT',
322 verbose headers vary: 'accept-encoding, accept',
322 verbose headers 'cf-cache-status': 'HIT',
322 verbose headers 'cf-request-id': '0a7832999d0000e6043893f000000001',
322 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
322 verbose headers server: 'cloudflare',
322 verbose headers 'content-encoding': 'gzip' }
323 silly get cb [ 200,
323 silly get { date: 'Fri, 04 Jun 2021 10:37:35 GMT',
323 silly get 'content-type': 'application/json',
323 silly get 'transfer-encoding': 'chunked',
323 silly get connection: 'keep-alive',
323 silly get 'cf-ray': '65a086d5cf78e604-LHR',
323 silly get age: '5338',
323 silly get 'cache-control': 'public, max-age=300',
323 silly get etag: 'W/"194de8b76aa9af7866ead5de50400a39"',
323 silly get 'last-modified': 'Thu, 10 Dec 2020 17:44:11 GMT',
323 silly get vary: 'accept-encoding, accept',
323 silly get 'cf-cache-status': 'HIT',
323 silly get 'cf-request-id': '0a7832999d0000e6043893f000000001',
323 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
323 silly get server: 'cloudflare',
323 silly get 'content-encoding': 'gzip' } ]
324 verbose get saving intersection-observer to /home/josh/.npm/registry.npmjs.org/intersection-observer/.cache.json
325 silly mapToRegistry name abortcontroller-polyfill
326 silly mapToRegistry using default registry
327 silly mapToRegistry registry https://registry.npmjs.org/
328 silly mapToRegistry uri https://registry.npmjs.org/abortcontroller-polyfill
329 verbose addRemoteTarball https://registry.npmjs.org/abortcontroller-polyfill/-/abortcontroller-polyfill-1.7.3.tgz not in flight; adding
330 verbose addRemoteTarball [ 'https://registry.npmjs.org/abortcontroller-polyfill/-/abortcontroller-polyfill-1.7.3.tgz',
330 verbose addRemoteTarball '1b5b487bd6436b5b764fd52a612509702c3144b5' ]
331 http 200 https://registry.npmjs.org/@babel%2fpolyfill
332 verbose headers { date: 'Fri, 04 Jun 2021 10:37:35 GMT',
332 verbose headers 'content-type': 'application/json',
332 verbose headers 'transfer-encoding': 'chunked',
332 verbose headers connection: 'keep-alive',
332 verbose headers 'cf-ray': '65a086d598c6dc43-LHR',
332 verbose headers age: '5418',
332 verbose headers 'cache-control': 'public, max-age=300',
332 verbose headers etag: 'W/"38f077fc01e31efdc945859f0d679bc7"',
332 verbose headers 'last-modified': 'Tue, 22 Dec 2020 01:52:48 GMT',
332 verbose headers vary: 'accept-encoding, accept',
332 verbose headers 'cf-cache-status': 'HIT',
332 verbose headers 'cf-request-id': '0a783299800000dc43fc222000000001',
332 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
332 verbose headers server: 'cloudflare',
332 verbose headers 'content-encoding': 'gzip' }
333 silly get cb [ 200,
333 silly get { date: 'Fri, 04 Jun 2021 10:37:35 GMT',
333 silly get 'content-type': 'application/json',
333 silly get 'transfer-encoding': 'chunked',
333 silly get connection: 'keep-alive',
333 silly get 'cf-ray': '65a086d598c6dc43-LHR',
333 silly get age: '5418',
333 silly get 'cache-control': 'public, max-age=300',
333 silly get etag: 'W/"38f077fc01e31efdc945859f0d679bc7"',
333 silly get 'last-modified': 'Tue, 22 Dec 2020 01:52:48 GMT',
333 silly get vary: 'accept-encoding, accept',
333 silly get 'cf-cache-status': 'HIT',
333 silly get 'cf-request-id': '0a783299800000dc43fc222000000001',
333 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
333 silly get server: 'cloudflare',
333 silly get 'content-encoding': 'gzip' } ]
334 verbose get saving @babel/polyfill to /home/josh/.npm/registry.npmjs.org/_40babel_252fpolyfill/.cache.json
335 info retry fetch attempt 1 at 11:37:35
336 info attempt registry request try #1 at 11:37:35
337 http fetch GET https://registry.npmjs.org/abortcontroller-polyfill/-/abortcontroller-polyfill-1.7.3.tgz
338 silly resolveWithNewModule [email protected] checking installable status
339 silly cache add args [ 'intersection-observer@^0.12.0', null ]
340 verbose cache add spec intersection-observer@^0.12.0
341 silly cache add parsed spec Result {
341 silly cache add raw: 'intersection-observer@^0.12.0',
341 silly cache add scope: null,
341 silly cache add name: 'intersection-observer',
341 silly cache add rawSpec: '^0.12.0',
341 silly cache add spec: '>=0.12.0 <0.13.0',
341 silly cache add type: 'range' }
342 silly addNamed intersection-observer@>=0.12.0 <0.13.0
343 verbose addNamed ">=0.12.0 <0.13.0" is a valid semver range for intersection-observer
344 silly addNameRange { name: 'intersection-observer',
344 silly addNameRange range: '>=0.12.0 <0.13.0',
344 silly addNameRange hasData: false }
345 silly mapToRegistry name intersection-observer
346 silly mapToRegistry using default registry
347 silly mapToRegistry registry https://registry.npmjs.org/
348 silly mapToRegistry uri https://registry.npmjs.org/intersection-observer
349 verbose addNameRange registry:https://registry.npmjs.org/intersection-observer not in flight; fetching
350 verbose get https://registry.npmjs.org/intersection-observer not expired, no request
351 silly addNameRange number 2 { name: 'intersection-observer',
351 silly addNameRange range: '>=0.12.0 <0.13.0',
351 silly addNameRange hasData: true }
352 silly addNameRange versions [ 'intersection-observer',
352 silly addNameRange [ '0.1.0',
352 silly addNameRange '0.1.1',
352 silly addNameRange '0.2.0',
352 silly addNameRange '0.2.1',
352 silly addNameRange '0.3.0',
352 silly addNameRange '0.3.1',
352 silly addNameRange '0.3.2',
352 silly addNameRange '0.3.3',
352 silly addNameRange '0.3.4',
352 silly addNameRange '0.4.0',
352 silly addNameRange '0.4.1',
352 silly addNameRange '0.4.2',
352 silly addNameRange '0.4.3',
352 silly addNameRange '0.5.0',
352 silly addNameRange '0.5.1',
352 silly addNameRange '0.6.0',
352 silly addNameRange '0.7.0',
352 silly addNameRange '0.8.0',
352 silly addNameRange '0.9.0',
352 silly addNameRange '0.10.0',
352 silly addNameRange '0.11.0',
352 silly addNameRange '0.12.0' ] ]
353 silly addNamed [email protected]
354 verbose addNamed "0.12.0" is a plain semver version for intersection-observer
355 silly resolveWithNewModule @babel/[email protected] checking installable status
356 silly cache add args [ '@babel/polyfill@^7.12.1', null ]
357 verbose cache add spec @babel/polyfill@^7.12.1
358 silly cache add parsed spec Result {
358 silly cache add raw: '@babel/polyfill@^7.12.1',
358 silly cache add scope: '@babel',
358 silly cache add name: '@babel/polyfill',
358 silly cache add rawSpec: '^7.12.1',
358 silly cache add spec: '>=7.12.1 <8.0.0',
358 silly cache add type: 'range' }
359 silly addNamed @babel/polyfill@>=7.12.1 <8.0.0
360 verbose addNamed ">=7.12.1 <8.0.0" is a valid semver range for @babel/polyfill
361 silly addNameRange { name: '@babel/polyfill',
361 silly addNameRange range: '>=7.12.1 <8.0.0',
361 silly addNameRange hasData: false }
362 silly mapToRegistry name @babel/polyfill
363 silly mapToRegistry scope (from package name) @babel
364 verbose mapToRegistry no registry URL found in name for scope @babel
365 silly mapToRegistry using default registry
366 silly mapToRegistry registry https://registry.npmjs.org/
367 silly mapToRegistry uri https://registry.npmjs.org/@babel%2fpolyfill
368 verbose addNameRange registry:https://registry.npmjs.org/@babel%2fpolyfill not in flight; fetching
369 silly mapToRegistry name intersection-observer
370 silly mapToRegistry using default registry
371 silly mapToRegistry registry https://registry.npmjs.org/
372 silly mapToRegistry uri https://registry.npmjs.org/intersection-observer
373 verbose addRemoteTarball https://registry.npmjs.org/intersection-observer/-/intersection-observer-0.12.0.tgz not in flight; adding
374 verbose addRemoteTarball [ 'https://registry.npmjs.org/intersection-observer/-/intersection-observer-0.12.0.tgz',
374 verbose addRemoteTarball '6c84628f67ce8698e5f9ccf857d97718745837aa' ]
375 verbose get https://registry.npmjs.org/@babel%2fpolyfill not expired, no request
376 silly addNameRange number 2 { name: '@babel/polyfill',
376 silly addNameRange range: '>=7.12.1 <8.0.0',
376 silly addNameRange hasData: true }
377 silly addNameRange versions [ '@babel/polyfill',
377 silly addNameRange [ '7.0.0-beta.4',
377 silly addNameRange '7.0.0-beta.5',
377 silly addNameRange '7.0.0-beta.31',
377 silly addNameRange '7.0.0-beta.32',
377 silly addNameRange '7.0.0-beta.33',
377 silly addNameRange '7.0.0-beta.34',
377 silly addNameRange '7.0.0-beta.35',
377 silly addNameRange '7.0.0-beta.36',
377 silly addNameRange '7.0.0-beta.37',
377 silly addNameRange '7.0.0-beta.38',
377 silly addNameRange '7.0.0-beta.39',
377 silly addNameRange '7.0.0-beta.40',
377 silly addNameRange '7.0.0-beta.41',
377 silly addNameRange '7.0.0-beta.42',
377 silly addNameRange '7.0.0-beta.43',
377 silly addNameRange '7.0.0-beta.44',
377 silly addNameRange '7.0.0-beta.45',
377 silly addNameRange '7.0.0-beta.46',
377 silly addNameRange '7.0.0-beta.47',
377 silly addNameRange '7.0.0-beta.48',
377 silly addNameRange '7.0.0-beta.49',
377 silly addNameRange '7.0.0-beta.50',
377 silly addNameRange '7.0.0-beta.51',
377 silly addNameRange '7.0.0-beta.52',
377 silly addNameRange '7.0.0-beta.53',
377 silly addNameRange '7.0.0-beta.54',
377 silly addNameRange '7.0.0-beta.55',
377 silly addNameRange '7.0.0-beta.56',
377 silly addNameRange '7.0.0-rc.0',
377 silly addNameRange '7.0.0-rc.1',
377 silly addNameRange '7.0.0-rc.2',
377 silly addNameRange '7.0.0-rc.3',
377 silly addNameRange '7.0.0-rc.4',
377 silly addNameRange '7.0.0',
377 silly addNameRange '7.2.3',
377 silly addNameRange '7.2.5',
377 silly addNameRange '7.4.0',
377 silly addNameRange '7.4.3',
377 silly addNameRange '7.4.4',
377 silly addNameRange '7.6.0',
377 silly addNameRange '7.7.0',
377 silly addNameRange '7.8.0',
377 silly addNameRange '7.8.3',
377 silly addNameRange '7.8.7',
377 silly addNameRange '7.10.1',
377 silly addNameRange '7.10.4',
377 silly addNameRange '7.11.5',
377 silly addNameRange '7.12.1' ] ]
378 silly addNamed @babel/[email protected]
379 verbose addNamed "7.12.1" is a plain semver version for @babel/polyfill
380 warn deprecated @babel/[email protected]: 🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information.
381 silly mapToRegistry name @babel/polyfill
382 silly mapToRegistry scope (from package name) @babel
383 verbose mapToRegistry no registry URL found in name for scope @babel
384 silly mapToRegistry using default registry
385 silly mapToRegistry registry https://registry.npmjs.org/
386 silly mapToRegistry uri https://registry.npmjs.org/@babel%2fpolyfill
387 verbose addRemoteTarball https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.12.1.tgz not in flight; adding
388 verbose addRemoteTarball [ 'https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.12.1.tgz',
388 verbose addRemoteTarball '1f2d6371d1261bbd961f3c5d5909150e12d0bd96' ]
389 info retry fetch attempt 1 at 11:37:35
390 info attempt registry request try #1 at 11:37:35
391 http fetch GET https://registry.npmjs.org/intersection-observer/-/intersection-observer-0.12.0.tgz
392 info retry fetch attempt 1 at 11:37:35
393 info attempt registry request try #1 at 11:37:35
394 http fetch GET https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.12.1.tgz
395 http 200 https://registry.npmjs.org/@webcomponents%2fshadycss
396 verbose headers { date: 'Fri, 04 Jun 2021 10:37:35 GMT',
396 verbose headers 'content-type': 'application/json',
396 verbose headers 'transfer-encoding': 'chunked',
396 verbose headers connection: 'keep-alive',
396 verbose headers 'cf-ray': '65a086d5af67f40f-LHR',
396 verbose headers age: '2776',
396 verbose headers 'cache-control': 'public, max-age=300',
396 verbose headers etag: 'W/"ed7f3c37695e0ac177ee8543adedbf89"',
396 verbose headers 'last-modified': 'Wed, 21 Oct 2020 22:20:28 GMT',
396 verbose headers vary: 'accept-encoding, accept',
396 verbose headers 'cf-cache-status': 'HIT',
396 verbose headers 'cf-request-id': '0a783299850000f40fdbbe0000000001',
396 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
396 verbose headers server: 'cloudflare',
396 verbose headers 'content-encoding': 'gzip' }
397 silly get cb [ 200,
397 silly get { date: 'Fri, 04 Jun 2021 10:37:35 GMT',
397 silly get 'content-type': 'application/json',
397 silly get 'transfer-encoding': 'chunked',
397 silly get connection: 'keep-alive',
397 silly get 'cf-ray': '65a086d5af67f40f-LHR',
397 silly get age: '2776',
397 silly get 'cache-control': 'public, max-age=300',
397 silly get etag: 'W/"ed7f3c37695e0ac177ee8543adedbf89"',
397 silly get 'last-modified': 'Wed, 21 Oct 2020 22:20:28 GMT',
397 silly get vary: 'accept-encoding, accept',
397 silly get 'cf-cache-status': 'HIT',
397 silly get 'cf-request-id': '0a783299850000f40fdbbe0000000001',
397 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
397 silly get server: 'cloudflare',
397 silly get 'content-encoding': 'gzip' } ]
398 verbose get saving @webcomponents/shadycss to /home/josh/.npm/registry.npmjs.org/_40webcomponents_252fshadycss/.cache.json
399 silly resolveWithNewModule @webcomponents/[email protected] checking installable status
400 silly cache add args [ '@webcomponents/shadycss@^1.10.2', null ]
401 verbose cache add spec @webcomponents/shadycss@^1.10.2
402 silly cache add parsed spec Result {
402 silly cache add raw: '@webcomponents/shadycss@^1.10.2',
402 silly cache add scope: '@webcomponents',
402 silly cache add name: '@webcomponents/shadycss',
402 silly cache add rawSpec: '^1.10.2',
402 silly cache add spec: '>=1.10.2 <2.0.0',
402 silly cache add type: 'range' }
403 silly addNamed @webcomponents/shadycss@>=1.10.2 <2.0.0
404 verbose addNamed ">=1.10.2 <2.0.0" is a valid semver range for @webcomponents/shadycss
405 silly addNameRange { name: '@webcomponents/shadycss',
405 silly addNameRange range: '>=1.10.2 <2.0.0',
405 silly addNameRange hasData: false }
406 silly mapToRegistry name @webcomponents/shadycss
407 silly mapToRegistry scope (from package name) @webcomponents
408 verbose mapToRegistry no registry URL found in name for scope @webcomponents
409 silly mapToRegistry using default registry
410 silly mapToRegistry registry https://registry.npmjs.org/
411 silly mapToRegistry uri https://registry.npmjs.org/@webcomponents%2fshadycss
412 verbose addNameRange registry:https://registry.npmjs.org/@webcomponents%2fshadycss not in flight; fetching
413 verbose get https://registry.npmjs.org/@webcomponents%2fshadycss not expired, no request
414 silly addNameRange number 2 { name: '@webcomponents/shadycss',
414 silly addNameRange range: '>=1.10.2 <2.0.0',
414 silly addNameRange hasData: true }
415 silly addNameRange versions [ '@webcomponents/shadycss',
415 silly addNameRange [ '1.0.0-rc.6',
415 silly addNameRange '1.0.0',
415 silly addNameRange '1.0.1',
415 silly addNameRange '1.0.2',
415 silly addNameRange '1.0.3',
415 silly addNameRange '1.0.4',
415 silly addNameRange '1.0.5',
415 silly addNameRange '1.0.6',
415 silly addNameRange '1.1.0',
415 silly addNameRange '1.1.1',
415 silly addNameRange '1.1.2',
415 silly addNameRange '1.1.3',
415 silly addNameRange '1.2.0-0',
415 silly addNameRange '1.2.0',
415 silly addNameRange '1.2.1',
415 silly addNameRange '1.3.0',
415 silly addNameRange '1.3.1',
415 silly addNameRange '1.3.2',
415 silly addNameRange '1.3.3',
415 silly addNameRange '1.3.4',
415 silly addNameRange '1.3.5',
415 silly addNameRange '1.4.0',
415 silly addNameRange '1.5.0',
415 silly addNameRange '1.5.1',
415 silly addNameRange '1.5.2',
415 silly addNameRange '1.6.0',
415 silly addNameRange '1.7.0',
415 silly addNameRange '1.7.1',
415 silly addNameRange '1.8.0',
415 silly addNameRange '1.9.0',
415 silly addNameRange '1.9.1',
415 silly addNameRange '1.9.2',
415 silly addNameRange '1.9.3',
415 silly addNameRange '1.9.4',
415 silly addNameRange '1.9.5',
415 silly addNameRange '1.9.6',
415 silly addNameRange '1.10.0',
415 silly addNameRange '1.10.1',
415 silly addNameRange '1.10.2' ] ]
416 silly addNamed @webcomponents/[email protected]
417 verbose addNamed "1.10.2" is a plain semver version for @webcomponents/shadycss
418 silly mapToRegistry name @webcomponents/shadycss
419 silly mapToRegistry scope (from package name) @webcomponents
420 verbose mapToRegistry no registry URL found in name for scope @webcomponents
421 silly mapToRegistry using default registry
422 silly mapToRegistry registry https://registry.npmjs.org/
423 silly mapToRegistry uri https://registry.npmjs.org/@webcomponents%2fshadycss
424 verbose addRemoteTarball https://registry.npmjs.org/@webcomponents/shadycss/-/shadycss-1.10.2.tgz not in flight; adding
425 verbose addRemoteTarball [ 'https://registry.npmjs.org/@webcomponents/shadycss/-/shadycss-1.10.2.tgz',
425 verbose addRemoteTarball '40e03cab6dc5e12f199949ba2b79e02f183d1e7b' ]
426 http 200 https://registry.npmjs.org/@webcomponents%2fcustom-elements
427 verbose headers { date: 'Fri, 04 Jun 2021 10:37:35 GMT',
427 verbose headers 'content-type': 'application/json',
427 verbose headers 'transfer-encoding': 'chunked',
427 verbose headers connection: 'keep-alive',
427 verbose headers 'cf-ray': '65a086d5a9bf06bd-LHR',
427 verbose headers age: '4127',
427 verbose headers 'cache-control': 'public, max-age=300',
427 verbose headers etag: 'W/"a2821487a3ee39adbbd6d4272a1b7956"',
427 verbose headers 'last-modified': 'Wed, 21 Oct 2020 22:20:22 GMT',
427 verbose headers vary: 'accept-encoding, accept',
427 verbose headers 'cf-cache-status': 'HIT',
427 verbose headers 'cf-request-id': '0a7832998c000006bd181ee000000001',
427 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
427 verbose headers server: 'cloudflare',
427 verbose headers 'content-encoding': 'gzip' }
428 silly get cb [ 200,
428 silly get { date: 'Fri, 04 Jun 2021 10:37:35 GMT',
428 silly get 'content-type': 'application/json',
428 silly get 'transfer-encoding': 'chunked',
428 silly get connection: 'keep-alive',
428 silly get 'cf-ray': '65a086d5a9bf06bd-LHR',
428 silly get age: '4127',
428 silly get 'cache-control': 'public, max-age=300',
428 silly get etag: 'W/"a2821487a3ee39adbbd6d4272a1b7956"',
428 silly get 'last-modified': 'Wed, 21 Oct 2020 22:20:22 GMT',
428 silly get vary: 'accept-encoding, accept',
428 silly get 'cf-cache-status': 'HIT',
428 silly get 'cf-request-id': '0a7832998c000006bd181ee000000001',
428 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
428 silly get server: 'cloudflare',
428 silly get 'content-encoding': 'gzip' } ]
429 verbose get saving @webcomponents/custom-elements to /home/josh/.npm/registry.npmjs.org/_40webcomponents_252fcustom-elements/.cache.json
430 info retry fetch attempt 1 at 11:37:35
431 info attempt registry request try #1 at 11:37:35
432 http fetch GET https://registry.npmjs.org/@webcomponents/shadycss/-/shadycss-1.10.2.tgz
433 silly resolveWithNewModule @webcomponents/[email protected] checking installable status
434 silly cache add args [ '@webcomponents/custom-elements@^1.4.3', null ]
435 verbose cache add spec @webcomponents/custom-elements@^1.4.3
436 silly cache add parsed spec Result {
436 silly cache add raw: '@webcomponents/custom-elements@^1.4.3',
436 silly cache add scope: '@webcomponents',
436 silly cache add name: '@webcomponents/custom-elements',
436 silly cache add rawSpec: '^1.4.3',
436 silly cache add spec: '>=1.4.3 <2.0.0',
436 silly cache add type: 'range' }
437 silly addNamed @webcomponents/custom-elements@>=1.4.3 <2.0.0
438 verbose addNamed ">=1.4.3 <2.0.0" is a valid semver range for @webcomponents/custom-elements
439 silly addNameRange { name: '@webcomponents/custom-elements',
439 silly addNameRange range: '>=1.4.3 <2.0.0',
439 silly addNameRange hasData: false }
440 silly mapToRegistry name @webcomponents/custom-elements
441 silly mapToRegistry scope (from package name) @webcomponents
442 verbose mapToRegistry no registry URL found in name for scope @webcomponents
443 silly mapToRegistry using default registry
444 silly mapToRegistry registry https://registry.npmjs.org/
445 silly mapToRegistry uri https://registry.npmjs.org/@webcomponents%2fcustom-elements
446 verbose addNameRange registry:https://registry.npmjs.org/@webcomponents%2fcustom-elements not in flight; fetching
447 verbose get https://registry.npmjs.org/@webcomponents%2fcustom-elements not expired, no request
448 silly addNameRange number 2 { name: '@webcomponents/custom-elements',
448 silly addNameRange range: '>=1.4.3 <2.0.0',
448 silly addNameRange hasData: true }
449 silly addNameRange versions [ '@webcomponents/custom-elements',
449 silly addNameRange [ '1.0.0-alpha.1',
449 silly addNameRange '1.0.0-alpha.2',
449 silly addNameRange '1.0.0-alpha.3',
449 silly addNameRange '1.0.0-rc.3',
449 silly addNameRange '1.0.0-rc.5',
449 silly addNameRange '1.0.0',
449 silly addNameRange '1.0.2',
449 silly addNameRange '1.0.3',
449 silly addNameRange '1.0.4',
449 silly addNameRange '1.0.6',
449 silly addNameRange '1.0.7',
449 silly addNameRange '1.0.8',
449 silly addNameRange '1.0.9',
449 silly addNameRange '1.1.0',
449 silly addNameRange '1.1.1',
449 silly addNameRange '1.1.2',
449 silly addNameRange '1.1.3',
449 silly addNameRange '1.2.0',
449 silly addNameRange '1.2.1',
449 silly addNameRange '1.2.2',
449 silly addNameRange '1.2.3',
449 silly addNameRange '1.2.4',
449 silly addNameRange '1.3.0',
449 silly addNameRange '1.3.1',
449 silly addNameRange '1.3.2',
449 silly addNameRange '1.4.0',
449 silly addNameRange '1.4.1',
449 silly addNameRange '1.4.2',
449 silly addNameRange '1.4.3' ] ]
450 silly addNamed @webcomponents/[email protected]
451 verbose addNamed "1.4.3" is a plain semver version for @webcomponents/custom-elements
452 silly mapToRegistry name @webcomponents/custom-elements
453 silly mapToRegistry scope (from package name) @webcomponents
454 verbose mapToRegistry no registry URL found in name for scope @webcomponents
455 silly mapToRegistry using default registry
456 silly mapToRegistry registry https://registry.npmjs.org/
457 silly mapToRegistry uri https://registry.npmjs.org/@webcomponents%2fcustom-elements
458 verbose addRemoteTarball https://registry.npmjs.org/@webcomponents/custom-elements/-/custom-elements-1.4.3.tgz not in flight; adding
459 verbose addRemoteTarball [ 'https://registry.npmjs.org/@webcomponents/custom-elements/-/custom-elements-1.4.3.tgz',
459 verbose addRemoteTarball '1800d49f38bb4425ebfd160b50115e62776109d7' ]
460 info retry fetch attempt 1 at 11:37:35
461 info attempt registry request try #1 at 11:37:35
462 http fetch GET https://registry.npmjs.org/@webcomponents/custom-elements/-/custom-elements-1.4.3.tgz
463 http 200 https://registry.npmjs.org/dom4
464 verbose headers { date: 'Fri, 04 Jun 2021 10:37:35 GMT',
464 verbose headers 'content-type': 'application/json',
464 verbose headers 'transfer-encoding': 'chunked',
464 verbose headers connection: 'keep-alive',
464 verbose headers 'cf-ray': '65a086d5cb1b06f9-LHR',
464 verbose headers age: '4990',
464 verbose headers 'cache-control': 'public, max-age=300',
464 verbose headers etag: 'W/"0b4f5e51b7a7b31375cc4620d65ece1a"',
464 verbose headers 'last-modified': 'Thu, 05 Nov 2020 22:21:02 GMT',
464 verbose headers vary: 'accept-encoding, accept',
464 verbose headers 'cf-cache-status': 'HIT',
464 verbose headers 'cf-request-id': '0a7832999e000006f959ad5000000001',
464 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
464 verbose headers server: 'cloudflare',
464 verbose headers 'content-encoding': 'gzip' }
465 silly get cb [ 200,
465 silly get { date: 'Fri, 04 Jun 2021 10:37:35 GMT',
465 silly get 'content-type': 'application/json',
465 silly get 'transfer-encoding': 'chunked',
465 silly get connection: 'keep-alive',
465 silly get 'cf-ray': '65a086d5cb1b06f9-LHR',
465 silly get age: '4990',
465 silly get 'cache-control': 'public, max-age=300',
465 silly get etag: 'W/"0b4f5e51b7a7b31375cc4620d65ece1a"',
465 silly get 'last-modified': 'Thu, 05 Nov 2020 22:21:02 GMT',
465 silly get vary: 'accept-encoding, accept',
465 silly get 'cf-cache-status': 'HIT',
465 silly get 'cf-request-id': '0a7832999e000006f959ad5000000001',
465 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
465 silly get server: 'cloudflare',
465 silly get 'content-encoding': 'gzip' } ]
466 verbose get saving dom4 to /home/josh/.npm/registry.npmjs.org/dom4/.cache.json
467 silly resolveWithNewModule [email protected] checking installable status
468 silly cache add args [ 'dom4@^2.1.6', null ]
469 verbose cache add spec dom4@^2.1.6
470 silly cache add parsed spec Result {
470 silly cache add raw: 'dom4@^2.1.6',
470 silly cache add scope: null,
470 silly cache add name: 'dom4',
470 silly cache add rawSpec: '^2.1.6',
470 silly cache add spec: '>=2.1.6 <3.0.0',
470 silly cache add type: 'range' }
471 silly addNamed dom4@>=2.1.6 <3.0.0
472 verbose addNamed ">=2.1.6 <3.0.0" is a valid semver range for dom4
473 silly addNameRange { name: 'dom4', range: '>=2.1.6 <3.0.0', hasData: false }
474 silly mapToRegistry name dom4
475 silly mapToRegistry using default registry
476 silly mapToRegistry registry https://registry.npmjs.org/
477 silly mapToRegistry uri https://registry.npmjs.org/dom4
478 verbose addNameRange registry:https://registry.npmjs.org/dom4 not in flight; fetching
479 verbose get https://registry.npmjs.org/dom4 not expired, no request
480 silly addNameRange number 2 { name: 'dom4', range: '>=2.1.6 <3.0.0', hasData: true }
481 silly addNameRange versions [ 'dom4',
481 silly addNameRange [ '1.0.0',
481 silly addNameRange '1.0.1',
481 silly addNameRange '1.1.1',
481 silly addNameRange '1.2.1',
481 silly addNameRange '1.3.1',
481 silly addNameRange '1.4.0',
481 silly addNameRange '1.4.1',
481 silly addNameRange '1.4.5',
481 silly addNameRange '1.4.6',
481 silly addNameRange '1.5.0',
481 silly addNameRange '1.5.1',
481 silly addNameRange '1.5.2',
481 silly addNameRange '1.6.0',
481 silly addNameRange '1.7.0',
481 silly addNameRange '1.8.0',
481 silly addNameRange '1.8.1',
481 silly addNameRange '1.8.2',
481 silly addNameRange '1.8.3',
481 silly addNameRange '1.8.4',
481 silly addNameRange '1.8.5',
481 silly addNameRange '2.0.0',
481 silly addNameRange '2.0.1',
481 silly addNameRange '2.0.2',
481 silly addNameRange '2.0.3',
481 silly addNameRange '2.1.0',
481 silly addNameRange '2.1.1',
481 silly addNameRange '2.1.2',
481 silly addNameRange '2.1.3',
481 silly addNameRange '2.1.4',
481 silly addNameRange '2.1.5',
481 silly addNameRange '2.1.6' ] ]
482 silly addNamed [email protected]
483 verbose addNamed "2.1.6" is a plain semver version for dom4
484 silly mapToRegistry name dom4
485 silly mapToRegistry using default registry
486 silly mapToRegistry registry https://registry.npmjs.org/
487 silly mapToRegistry uri https://registry.npmjs.org/dom4
488 verbose addRemoteTarball https://registry.npmjs.org/dom4/-/dom4-2.1.6.tgz not in flight; adding
489 verbose addRemoteTarball [ 'https://registry.npmjs.org/dom4/-/dom4-2.1.6.tgz',
489 verbose addRemoteTarball 'c90df07134aa0dbd81ed4d6ba1237b36fc164770' ]
490 info retry fetch attempt 1 at 11:37:35
491 info attempt registry request try #1 at 11:37:35
492 http fetch GET https://registry.npmjs.org/dom4/-/dom4-2.1.6.tgz
493 http 200 https://registry.npmjs.org/web-animations-js
494 verbose headers { date: 'Fri, 04 Jun 2021 10:37:35 GMT',
494 verbose headers 'content-type': 'application/json',
494 verbose headers 'transfer-encoding': 'chunked',
494 verbose headers connection: 'keep-alive',
494 verbose headers 'cf-ray': '65a086d5fc4806f5-LHR',
494 verbose headers age: '136',
494 verbose headers 'cache-control': 'public, max-age=300',
494 verbose headers etag: 'W/"4230c60a3f3c277040e901ac333436d7"',
494 verbose headers 'last-modified': 'Tue, 25 Jun 2019 08:40:39 GMT',
494 verbose headers vary: 'accept-encoding, accept',
494 verbose headers 'cf-cache-status': 'HIT',
494 verbose headers 'cf-request-id': '0a783299bb000006f5f19c0000000001',
494 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
494 verbose headers server: 'cloudflare',
494 verbose headers 'content-encoding': 'gzip' }
495 silly get cb [ 200,
495 silly get { date: 'Fri, 04 Jun 2021 10:37:35 GMT',
495 silly get 'content-type': 'application/json',
495 silly get 'transfer-encoding': 'chunked',
495 silly get connection: 'keep-alive',
495 silly get 'cf-ray': '65a086d5fc4806f5-LHR',
495 silly get age: '136',
495 silly get 'cache-control': 'public, max-age=300',
495 silly get etag: 'W/"4230c60a3f3c277040e901ac333436d7"',
495 silly get 'last-modified': 'Tue, 25 Jun 2019 08:40:39 GMT',
495 silly get vary: 'accept-encoding, accept',
495 silly get 'cf-cache-status': 'HIT',
495 silly get 'cf-request-id': '0a783299bb000006f5f19c0000000001',
495 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
495 silly get server: 'cloudflare',
495 silly get 'content-encoding': 'gzip' } ]
496 verbose get saving web-animations-js to /home/josh/.npm/registry.npmjs.org/web-animations-js/.cache.json
497 silly resolveWithNewModule [email protected] checking installable status
498 silly cache add args [ 'web-animations-js@^2.3.2', null ]
499 verbose cache add spec web-animations-js@^2.3.2
500 silly cache add parsed spec Result {
500 silly cache add raw: 'web-animations-js@^2.3.2',
500 silly cache add scope: null,
500 silly cache add name: 'web-animations-js',
500 silly cache add rawSpec: '^2.3.2',
500 silly cache add spec: '>=2.3.2 <3.0.0',
500 silly cache add type: 'range' }
501 silly addNamed web-animations-js@>=2.3.2 <3.0.0
502 verbose addNamed ">=2.3.2 <3.0.0" is a valid semver range for web-animations-js
503 silly addNameRange { name: 'web-animations-js',
503 silly addNameRange range: '>=2.3.2 <3.0.0',
503 silly addNameRange hasData: false }
504 silly mapToRegistry name web-animations-js
505 silly mapToRegistry using default registry
506 silly mapToRegistry registry https://registry.npmjs.org/
507 silly mapToRegistry uri https://registry.npmjs.org/web-animations-js
508 verbose addNameRange registry:https://registry.npmjs.org/web-animations-js not in flight; fetching
509 http 200 https://registry.npmjs.org/@webcomponents%2fwebcomponents-platform
510 verbose headers { date: 'Fri, 04 Jun 2021 10:37:35 GMT',
510 verbose headers 'content-type': 'application/json',
510 verbose headers 'transfer-encoding': 'chunked',
510 verbose headers connection: 'keep-alive',
510 verbose headers 'cf-ray': '65a086d5be922c72-LHR',
510 verbose headers age: '1971',
510 verbose headers 'cache-control': 'public, max-age=300',
510 verbose headers etag: 'W/"1c286347586b26c6093a4ba54637319a"',
510 verbose headers 'last-modified': 'Wed, 03 Jun 2020 22:11:20 GMT',
510 verbose headers vary: 'accept-encoding, accept',