-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathnpm-debug.log
More file actions
4926 lines (4926 loc) · 271 KB
/
npm-debug.log
File metadata and controls
4926 lines (4926 loc) · 271 KB
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 npm@3.5.2
3 info using node@v8.10.0
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 superagent
20 silly mapToRegistry name superagent
21 silly mapToRegistry using default registry
22 silly mapToRegistry registry https://registry.npmjs.org/
23 silly mapToRegistry uri https://registry.npmjs.org/superagent
24 silly fetchNamedPackageData querystring
25 silly mapToRegistry name querystring
26 silly mapToRegistry using default registry
27 silly mapToRegistry registry https://registry.npmjs.org/
28 silly mapToRegistry uri https://registry.npmjs.org/querystring
29 verbose request uri https://registry.npmjs.org/querystring
30 verbose request no auth needed
31 info attempt registry request try #1 at 16:21:28
32 verbose request id 4c732a3b89720efe
33 verbose etag W/"3b38eb7ff901785447bd12ed1913952a"
34 verbose lastModified Sun, 27 May 2018 13:23:56 GMT
35 http request GET https://registry.npmjs.org/querystring
36 verbose request uri https://registry.npmjs.org/superagent
37 verbose request no auth needed
38 info attempt registry request try #1 at 16:21:28
39 verbose etag W/"cb3e94494da7a9c9354a595c2f46a0eb"
40 verbose lastModified Sun, 30 Aug 2020 19:25:11 GMT
41 http request GET https://registry.npmjs.org/superagent
42 http 304 https://registry.npmjs.org/querystring
43 verbose headers { date: 'Tue, 22 Dec 2020 10:51:29 GMT',
43 verbose headers connection: 'keep-alive',
43 verbose headers 'set-cookie':
43 verbose headers [ '__cfduid=dd2d1a696fe7e0b3a76d62f45f691576c1608634289; expires=Thu, 21-Jan-21 10:51:29 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
43 verbose headers 'cf-ray': '605949b429473199-BOM',
43 verbose headers age: '5314',
43 verbose headers 'cache-control': 'public, max-age=300',
43 verbose headers etag: '"3b38eb7ff901785447bd12ed1913952a"',
43 verbose headers 'last-modified': 'Sun, 27 May 2018 13:23:56 GMT',
43 verbose headers vary: 'Accept-Encoding',
43 verbose headers 'cf-cache-status': 'HIT',
43 verbose headers 'cf-request-id': '072bac649700003199cd3ea000000001',
43 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
43 verbose headers server: 'cloudflare' }
44 silly get cb [ 304,
44 silly get { date: 'Tue, 22 Dec 2020 10:51:29 GMT',
44 silly get connection: 'keep-alive',
44 silly get 'set-cookie':
44 silly get [ '__cfduid=dd2d1a696fe7e0b3a76d62f45f691576c1608634289; expires=Thu, 21-Jan-21 10:51:29 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
44 silly get 'cf-ray': '605949b429473199-BOM',
44 silly get age: '5314',
44 silly get 'cache-control': 'public, max-age=300',
44 silly get etag: '"3b38eb7ff901785447bd12ed1913952a"',
44 silly get 'last-modified': 'Sun, 27 May 2018 13:23:56 GMT',
44 silly get vary: 'Accept-Encoding',
44 silly get 'cf-cache-status': 'HIT',
44 silly get 'cf-request-id': '072bac649700003199cd3ea000000001',
44 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
44 silly get server: 'cloudflare' } ]
45 verbose etag https://registry.npmjs.org/querystring from cache
46 verbose get saving querystring to /home/sahil/.npm/registry.npmjs.org/querystring/.cache.json
47 http 304 https://registry.npmjs.org/superagent
48 verbose headers { date: 'Tue, 22 Dec 2020 10:51:29 GMT',
48 verbose headers connection: 'keep-alive',
48 verbose headers 'set-cookie':
48 verbose headers [ '__cfduid=d3fb417a6053bd4e1be0ef4b0d0af8ac81608634289; expires=Thu, 21-Jan-21 10:51:29 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
48 verbose headers 'cf-ray': '605949b43d702dfe-BOM',
48 verbose headers age: '961',
48 verbose headers 'cache-control': 'public, max-age=300',
48 verbose headers etag: '"cb3e94494da7a9c9354a595c2f46a0eb"',
48 verbose headers 'last-modified': 'Sun, 30 Aug 2020 19:25:11 GMT',
48 verbose headers vary: 'Accept-Encoding',
48 verbose headers 'cf-cache-status': 'HIT',
48 verbose headers 'cf-request-id': '072bac649e00002dfed6256000000001',
48 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
48 verbose headers server: 'cloudflare' }
49 silly get cb [ 304,
49 silly get { date: 'Tue, 22 Dec 2020 10:51:29 GMT',
49 silly get connection: 'keep-alive',
49 silly get 'set-cookie':
49 silly get [ '__cfduid=d3fb417a6053bd4e1be0ef4b0d0af8ac81608634289; expires=Thu, 21-Jan-21 10:51:29 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
49 silly get 'cf-ray': '605949b43d702dfe-BOM',
49 silly get age: '961',
49 silly get 'cache-control': 'public, max-age=300',
49 silly get etag: '"cb3e94494da7a9c9354a595c2f46a0eb"',
49 silly get 'last-modified': 'Sun, 30 Aug 2020 19:25:11 GMT',
49 silly get vary: 'Accept-Encoding',
49 silly get 'cf-cache-status': 'HIT',
49 silly get 'cf-request-id': '072bac649e00002dfed6256000000001',
49 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
49 silly get server: 'cloudflare' } ]
50 verbose etag https://registry.npmjs.org/superagent from cache
51 verbose get saving superagent to /home/sahil/.npm/registry.npmjs.org/superagent/.cache.json
52 silly resolveWithNewModule querystring@0.2.0 checking installable status
53 silly cache add args [ 'querystring@0.2.0', null ]
54 verbose cache add spec querystring@0.2.0
55 silly cache add parsed spec Result {
55 silly cache add raw: 'querystring@0.2.0',
55 silly cache add scope: null,
55 silly cache add name: 'querystring',
55 silly cache add rawSpec: '0.2.0',
55 silly cache add spec: '0.2.0',
55 silly cache add type: 'version' }
56 silly addNamed querystring@0.2.0
57 verbose addNamed "0.2.0" is a plain semver version for querystring
58 silly mapToRegistry name querystring
59 silly mapToRegistry using default registry
60 silly mapToRegistry registry https://registry.npmjs.org/
61 silly mapToRegistry uri https://registry.npmjs.org/querystring
62 verbose addNameVersion registry:https://registry.npmjs.org/querystring not in flight; fetching
63 silly resolveWithNewModule superagent@3.7.0 checking installable status
64 silly cache add args [ 'superagent@3.7.0', null ]
65 verbose cache add spec superagent@3.7.0
66 silly cache add parsed spec Result {
66 silly cache add raw: 'superagent@3.7.0',
66 silly cache add scope: null,
66 silly cache add name: 'superagent',
66 silly cache add rawSpec: '3.7.0',
66 silly cache add spec: '3.7.0',
66 silly cache add type: 'version' }
67 silly addNamed superagent@3.7.0
68 verbose addNamed "3.7.0" is a plain semver version for superagent
69 silly mapToRegistry name superagent
70 silly mapToRegistry using default registry
71 silly mapToRegistry registry https://registry.npmjs.org/
72 silly mapToRegistry uri https://registry.npmjs.org/superagent
73 verbose addNameVersion registry:https://registry.npmjs.org/superagent not in flight; fetching
74 verbose get https://registry.npmjs.org/querystring not expired, no request
75 verbose get https://registry.npmjs.org/superagent not expired, no request
76 silly cache afterAdd querystring@0.2.0
77 verbose afterAdd /home/sahil/.npm/querystring/0.2.0/package/package.json not in flight; writing
78 silly cache afterAdd superagent@3.7.0
79 verbose afterAdd /home/sahil/.npm/superagent/3.7.0/package/package.json not in flight; writing
80 verbose afterAdd /home/sahil/.npm/querystring/0.2.0/package/package.json written
81 verbose afterAdd /home/sahil/.npm/superagent/3.7.0/package/package.json written
82 silly fetchNamedPackageData component-emitter
83 silly mapToRegistry name component-emitter
84 silly mapToRegistry using default registry
85 silly mapToRegistry registry https://registry.npmjs.org/
86 silly mapToRegistry uri https://registry.npmjs.org/component-emitter
87 silly fetchNamedPackageData cookiejar
88 silly mapToRegistry name cookiejar
89 silly mapToRegistry using default registry
90 silly mapToRegistry registry https://registry.npmjs.org/
91 silly mapToRegistry uri https://registry.npmjs.org/cookiejar
92 silly fetchNamedPackageData debug
93 silly mapToRegistry name debug
94 silly mapToRegistry using default registry
95 silly mapToRegistry registry https://registry.npmjs.org/
96 silly mapToRegistry uri https://registry.npmjs.org/debug
97 silly fetchNamedPackageData extend
98 silly mapToRegistry name extend
99 silly mapToRegistry using default registry
100 silly mapToRegistry registry https://registry.npmjs.org/
101 silly mapToRegistry uri https://registry.npmjs.org/extend
102 silly fetchNamedPackageData form-data
103 silly mapToRegistry name form-data
104 silly mapToRegistry using default registry
105 silly mapToRegistry registry https://registry.npmjs.org/
106 silly mapToRegistry uri https://registry.npmjs.org/form-data
107 silly fetchNamedPackageData formidable
108 silly mapToRegistry name formidable
109 silly mapToRegistry using default registry
110 silly mapToRegistry registry https://registry.npmjs.org/
111 silly mapToRegistry uri https://registry.npmjs.org/formidable
112 silly fetchNamedPackageData methods
113 silly mapToRegistry name methods
114 silly mapToRegistry using default registry
115 silly mapToRegistry registry https://registry.npmjs.org/
116 silly mapToRegistry uri https://registry.npmjs.org/methods
117 silly fetchNamedPackageData mime
118 silly mapToRegistry name mime
119 silly mapToRegistry using default registry
120 silly mapToRegistry registry https://registry.npmjs.org/
121 silly mapToRegistry uri https://registry.npmjs.org/mime
122 silly fetchNamedPackageData qs
123 silly mapToRegistry name qs
124 silly mapToRegistry using default registry
125 silly mapToRegistry registry https://registry.npmjs.org/
126 silly mapToRegistry uri https://registry.npmjs.org/qs
127 silly fetchNamedPackageData readable-stream
128 silly mapToRegistry name readable-stream
129 silly mapToRegistry using default registry
130 silly mapToRegistry registry https://registry.npmjs.org/
131 silly mapToRegistry uri https://registry.npmjs.org/readable-stream
132 verbose request uri https://registry.npmjs.org/component-emitter
133 verbose request no auth needed
134 info attempt registry request try #1 at 16:21:29
135 verbose etag W/"1670b0d27d155658ab1616cdf972efb4"
136 verbose lastModified Mon, 15 Apr 2019 20:48:15 GMT
137 http request GET https://registry.npmjs.org/component-emitter
138 verbose request uri https://registry.npmjs.org/cookiejar
139 verbose request no auth needed
140 info attempt registry request try #1 at 16:21:29
141 verbose etag W/"95bc481093461a5ad210e984f6f08df4"
142 verbose lastModified Wed, 30 May 2018 02:28:10 GMT
143 http request GET https://registry.npmjs.org/cookiejar
144 verbose request uri https://registry.npmjs.org/extend
145 verbose request no auth needed
146 info attempt registry request try #1 at 16:21:29
147 verbose etag W/"924fa39abddd399eb964b1aa611da651"
148 verbose lastModified Thu, 19 Jul 2018 22:12:47 GMT
149 http request GET https://registry.npmjs.org/extend
150 verbose request uri https://registry.npmjs.org/methods
151 verbose request no auth needed
152 info attempt registry request try #1 at 16:21:29
153 verbose etag W/"a861fec3b8f0d6cd86f2f00cf1452298"
154 verbose lastModified Sun, 27 May 2018 07:57:35 GMT
155 http request GET https://registry.npmjs.org/methods
156 verbose request uri https://registry.npmjs.org/mime
157 verbose request no auth needed
158 info attempt registry request try #1 at 16:21:29
159 verbose etag W/"da5f1eb3d6be1de04c850018106068ca"
160 verbose lastModified Wed, 16 Dec 2020 02:30:55 GMT
161 http request GET https://registry.npmjs.org/mime
162 verbose request uri https://registry.npmjs.org/form-data
163 verbose request no auth needed
164 info attempt registry request try #1 at 16:21:29
165 verbose etag W/"5e211bf0fabf58f7b2a855c8b4ce28a4"
166 verbose lastModified Wed, 06 Nov 2019 07:57:03 GMT
167 http request GET https://registry.npmjs.org/form-data
168 verbose request uri https://registry.npmjs.org/readable-stream
169 verbose request no auth needed
170 info attempt registry request try #1 at 16:21:29
171 verbose etag W/"cd4a066a34bf22a921492b57a292e033"
172 verbose lastModified Thu, 13 Feb 2020 19:42:09 GMT
173 http request GET https://registry.npmjs.org/readable-stream
174 verbose request uri https://registry.npmjs.org/qs
175 verbose request no auth needed
176 info attempt registry request try #1 at 16:21:29
177 verbose etag W/"e367147982609ecdcb636c8616e97895"
178 verbose lastModified Fri, 09 Oct 2020 18:07:35 GMT
179 http request GET https://registry.npmjs.org/qs
180 verbose request uri https://registry.npmjs.org/formidable
181 verbose request no auth needed
182 info attempt registry request try #1 at 16:21:29
183 verbose etag W/"5ad34097ca5f1c88367421fe49bad340"
184 verbose lastModified Sat, 09 May 2020 14:43:06 GMT
185 http request GET https://registry.npmjs.org/formidable
186 verbose request uri https://registry.npmjs.org/debug
187 verbose request no auth needed
188 info attempt registry request try #1 at 16:21:29
189 verbose etag W/"5b70224da41fe63879bbe39279973e35"
190 verbose lastModified Tue, 15 Dec 2020 13:42:31 GMT
191 http request GET https://registry.npmjs.org/debug
192 http 304 https://registry.npmjs.org/component-emitter
193 verbose headers { date: 'Tue, 22 Dec 2020 10:51:29 GMT',
193 verbose headers connection: 'keep-alive',
193 verbose headers 'set-cookie':
193 verbose headers [ '__cfduid=dd2d1a696fe7e0b3a76d62f45f691576c1608634289; expires=Thu, 21-Jan-21 10:51:29 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
193 verbose headers 'cf-ray': '605949b55d013199-BOM',
193 verbose headers age: '3382',
193 verbose headers 'cache-control': 'public, max-age=300',
193 verbose headers etag: '"1670b0d27d155658ab1616cdf972efb4"',
193 verbose headers 'last-modified': 'Mon, 15 Apr 2019 20:48:15 GMT',
193 verbose headers vary: 'Accept-Encoding',
193 verbose headers 'cf-cache-status': 'HIT',
193 verbose headers 'cf-request-id': '072bac655500003199668d5000000001',
193 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
193 verbose headers server: 'cloudflare' }
194 silly get cb [ 304,
194 silly get { date: 'Tue, 22 Dec 2020 10:51:29 GMT',
194 silly get connection: 'keep-alive',
194 silly get 'set-cookie':
194 silly get [ '__cfduid=dd2d1a696fe7e0b3a76d62f45f691576c1608634289; expires=Thu, 21-Jan-21 10:51:29 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
194 silly get 'cf-ray': '605949b55d013199-BOM',
194 silly get age: '3382',
194 silly get 'cache-control': 'public, max-age=300',
194 silly get etag: '"1670b0d27d155658ab1616cdf972efb4"',
194 silly get 'last-modified': 'Mon, 15 Apr 2019 20:48:15 GMT',
194 silly get vary: 'Accept-Encoding',
194 silly get 'cf-cache-status': 'HIT',
194 silly get 'cf-request-id': '072bac655500003199668d5000000001',
194 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
194 silly get server: 'cloudflare' } ]
195 verbose etag https://registry.npmjs.org/component-emitter from cache
196 verbose get saving component-emitter to /home/sahil/.npm/registry.npmjs.org/component-emitter/.cache.json
197 silly resolveWithNewModule component-emitter@1.3.0 checking installable status
198 silly cache add args [ 'component-emitter@^1.2.0', null ]
199 verbose cache add spec component-emitter@^1.2.0
200 silly cache add parsed spec Result {
200 silly cache add raw: 'component-emitter@^1.2.0',
200 silly cache add scope: null,
200 silly cache add name: 'component-emitter',
200 silly cache add rawSpec: '^1.2.0',
200 silly cache add spec: '>=1.2.0 <2.0.0',
200 silly cache add type: 'range' }
201 silly addNamed component-emitter@>=1.2.0 <2.0.0
202 verbose addNamed ">=1.2.0 <2.0.0" is a valid semver range for component-emitter
203 silly addNameRange { name: 'component-emitter',
203 silly addNameRange range: '>=1.2.0 <2.0.0',
203 silly addNameRange hasData: false }
204 silly mapToRegistry name component-emitter
205 silly mapToRegistry using default registry
206 silly mapToRegistry registry https://registry.npmjs.org/
207 silly mapToRegistry uri https://registry.npmjs.org/component-emitter
208 verbose addNameRange registry:https://registry.npmjs.org/component-emitter not in flight; fetching
209 http 304 https://registry.npmjs.org/cookiejar
210 verbose headers { date: 'Tue, 22 Dec 2020 10:51:29 GMT',
210 verbose headers connection: 'keep-alive',
210 verbose headers 'set-cookie':
210 verbose headers [ '__cfduid=d3fb417a6053bd4e1be0ef4b0d0af8ac81608634289; expires=Thu, 21-Jan-21 10:51:29 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
210 verbose headers 'cf-ray': '605949b568fc2dfe-BOM',
210 verbose headers age: '6232',
210 verbose headers 'cache-control': 'public, max-age=300',
210 verbose headers etag: '"95bc481093461a5ad210e984f6f08df4"',
210 verbose headers 'last-modified': 'Wed, 30 May 2018 02:28:10 GMT',
210 verbose headers vary: 'Accept-Encoding',
210 verbose headers 'cf-cache-status': 'HIT',
210 verbose headers 'cf-request-id': '072bac656100002dfe77baf000000001',
210 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
210 verbose headers server: 'cloudflare' }
211 silly get cb [ 304,
211 silly get { date: 'Tue, 22 Dec 2020 10:51:29 GMT',
211 silly get connection: 'keep-alive',
211 silly get 'set-cookie':
211 silly get [ '__cfduid=d3fb417a6053bd4e1be0ef4b0d0af8ac81608634289; expires=Thu, 21-Jan-21 10:51:29 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
211 silly get 'cf-ray': '605949b568fc2dfe-BOM',
211 silly get age: '6232',
211 silly get 'cache-control': 'public, max-age=300',
211 silly get etag: '"95bc481093461a5ad210e984f6f08df4"',
211 silly get 'last-modified': 'Wed, 30 May 2018 02:28:10 GMT',
211 silly get vary: 'Accept-Encoding',
211 silly get 'cf-cache-status': 'HIT',
211 silly get 'cf-request-id': '072bac656100002dfe77baf000000001',
211 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
211 silly get server: 'cloudflare' } ]
212 verbose etag https://registry.npmjs.org/cookiejar from cache
213 verbose get saving cookiejar to /home/sahil/.npm/registry.npmjs.org/cookiejar/.cache.json
214 verbose get https://registry.npmjs.org/component-emitter not expired, no request
215 silly addNameRange number 2 { name: 'component-emitter',
215 silly addNameRange range: '>=1.2.0 <2.0.0',
215 silly addNameRange hasData: true }
216 silly addNameRange versions [ 'component-emitter',
216 silly addNameRange [ '1.1.2', '1.1.3', '1.2.0', '1.2.1', '1.3.0' ] ]
217 silly addNamed component-emitter@1.3.0
218 verbose addNamed "1.3.0" is a plain semver version for component-emitter
219 silly cache afterAdd component-emitter@1.3.0
220 verbose afterAdd /home/sahil/.npm/component-emitter/1.3.0/package/package.json not in flight; writing
221 silly resolveWithNewModule cookiejar@2.1.2 checking installable status
222 silly cache add args [ 'cookiejar@^2.1.0', null ]
223 verbose cache add spec cookiejar@^2.1.0
224 silly cache add parsed spec Result {
224 silly cache add raw: 'cookiejar@^2.1.0',
224 silly cache add scope: null,
224 silly cache add name: 'cookiejar',
224 silly cache add rawSpec: '^2.1.0',
224 silly cache add spec: '>=2.1.0 <3.0.0',
224 silly cache add type: 'range' }
225 silly addNamed cookiejar@>=2.1.0 <3.0.0
226 verbose addNamed ">=2.1.0 <3.0.0" is a valid semver range for cookiejar
227 silly addNameRange { name: 'cookiejar', range: '>=2.1.0 <3.0.0', hasData: false }
228 silly mapToRegistry name cookiejar
229 silly mapToRegistry using default registry
230 silly mapToRegistry registry https://registry.npmjs.org/
231 silly mapToRegistry uri https://registry.npmjs.org/cookiejar
232 verbose addNameRange registry:https://registry.npmjs.org/cookiejar not in flight; fetching
233 verbose get https://registry.npmjs.org/cookiejar not expired, no request
234 silly addNameRange number 2 { name: 'cookiejar', range: '>=2.1.0 <3.0.0', hasData: true }
235 silly addNameRange versions [ 'cookiejar',
235 silly addNameRange [ '1.0.0',
235 silly addNameRange '1.0.3',
235 silly addNameRange '1.0.5',
235 silly addNameRange '1.1.0',
235 silly addNameRange '1.1.1',
235 silly addNameRange '1.2.0',
235 silly addNameRange '1.3.0',
235 silly addNameRange '1.3.1',
235 silly addNameRange '1.3.2',
235 silly addNameRange '2.0.0',
235 silly addNameRange '2.0.1',
235 silly addNameRange '2.0.2',
235 silly addNameRange '2.0.3',
235 silly addNameRange '2.0.4',
235 silly addNameRange '2.0.6',
235 silly addNameRange '2.1.0',
235 silly addNameRange '2.1.1',
235 silly addNameRange '2.1.2' ] ]
236 silly addNamed cookiejar@2.1.2
237 verbose addNamed "2.1.2" is a plain semver version for cookiejar
238 verbose afterAdd /home/sahil/.npm/component-emitter/1.3.0/package/package.json written
239 silly cache afterAdd cookiejar@2.1.2
240 verbose afterAdd /home/sahil/.npm/cookiejar/2.1.2/package/package.json not in flight; writing
241 verbose afterAdd /home/sahil/.npm/cookiejar/2.1.2/package/package.json written
242 http 304 https://registry.npmjs.org/readable-stream
243 verbose headers { date: 'Tue, 22 Dec 2020 10:51:29 GMT',
243 verbose headers connection: 'keep-alive',
243 verbose headers 'set-cookie':
243 verbose headers [ '__cfduid=d3b38c6d42fe8b58afbba23177d0eee0f1608634289; expires=Thu, 21-Jan-21 10:51:29 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
243 verbose headers 'cf-ray': '605949b6baa4d59f-BOM',
243 verbose headers age: '5082',
243 verbose headers 'cache-control': 'public, max-age=300',
243 verbose headers etag: '"cd4a066a34bf22a921492b57a292e033"',
243 verbose headers 'last-modified': 'Thu, 13 Feb 2020 19:42:09 GMT',
243 verbose headers vary: 'Accept-Encoding',
243 verbose headers 'cf-cache-status': 'HIT',
243 verbose headers 'cf-request-id': '072bac66320000d59f868d6000000001',
243 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
243 verbose headers server: 'cloudflare' }
244 silly get cb [ 304,
244 silly get { date: 'Tue, 22 Dec 2020 10:51:29 GMT',
244 silly get connection: 'keep-alive',
244 silly get 'set-cookie':
244 silly get [ '__cfduid=d3b38c6d42fe8b58afbba23177d0eee0f1608634289; expires=Thu, 21-Jan-21 10:51:29 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
244 silly get 'cf-ray': '605949b6baa4d59f-BOM',
244 silly get age: '5082',
244 silly get 'cache-control': 'public, max-age=300',
244 silly get etag: '"cd4a066a34bf22a921492b57a292e033"',
244 silly get 'last-modified': 'Thu, 13 Feb 2020 19:42:09 GMT',
244 silly get vary: 'Accept-Encoding',
244 silly get 'cf-cache-status': 'HIT',
244 silly get 'cf-request-id': '072bac66320000d59f868d6000000001',
244 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
244 silly get server: 'cloudflare' } ]
245 verbose etag https://registry.npmjs.org/readable-stream from cache
246 verbose get saving readable-stream to /home/sahil/.npm/registry.npmjs.org/readable-stream/.cache.json
247 http 304 https://registry.npmjs.org/extend
248 verbose headers { date: 'Tue, 22 Dec 2020 10:51:29 GMT',
248 verbose headers connection: 'keep-alive',
248 verbose headers 'set-cookie':
248 verbose headers [ '__cfduid=d981b873e88325ca7b0852ecff969923c1608634289; expires=Thu, 21-Jan-21 10:51:29 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
248 verbose headers 'cf-ray': '605949b6aa692e00-BOM',
248 verbose headers age: '1682',
248 verbose headers 'cache-control': 'public, max-age=300',
248 verbose headers etag: '"924fa39abddd399eb964b1aa611da651"',
248 verbose headers 'last-modified': 'Thu, 19 Jul 2018 22:12:47 GMT',
248 verbose headers vary: 'Accept-Encoding',
248 verbose headers 'cf-cache-status': 'HIT',
248 verbose headers 'cf-request-id': '072bac662900002e006e22a000000001',
248 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
248 verbose headers server: 'cloudflare' }
249 silly get cb [ 304,
249 silly get { date: 'Tue, 22 Dec 2020 10:51:29 GMT',
249 silly get connection: 'keep-alive',
249 silly get 'set-cookie':
249 silly get [ '__cfduid=d981b873e88325ca7b0852ecff969923c1608634289; expires=Thu, 21-Jan-21 10:51:29 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
249 silly get 'cf-ray': '605949b6aa692e00-BOM',
249 silly get age: '1682',
249 silly get 'cache-control': 'public, max-age=300',
249 silly get etag: '"924fa39abddd399eb964b1aa611da651"',
249 silly get 'last-modified': 'Thu, 19 Jul 2018 22:12:47 GMT',
249 silly get vary: 'Accept-Encoding',
249 silly get 'cf-cache-status': 'HIT',
249 silly get 'cf-request-id': '072bac662900002e006e22a000000001',
249 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
249 silly get server: 'cloudflare' } ]
250 verbose etag https://registry.npmjs.org/extend from cache
251 verbose get saving extend to /home/sahil/.npm/registry.npmjs.org/extend/.cache.json
252 http 304 https://registry.npmjs.org/mime
253 verbose headers { date: 'Tue, 22 Dec 2020 10:51:29 GMT',
253 verbose headers connection: 'keep-alive',
253 verbose headers 'set-cookie':
253 verbose headers [ '__cfduid=ddb90fbdb25c11a6d660c8344830eb3d31608634289; expires=Thu, 21-Jan-21 10:51:29 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
253 verbose headers 'cf-ray': '605949b6ba782e83-BOM',
253 verbose headers age: '7190',
253 verbose headers 'cache-control': 'public, max-age=300',
253 verbose headers etag: '"da5f1eb3d6be1de04c850018106068ca"',
253 verbose headers 'last-modified': 'Wed, 16 Dec 2020 02:30:55 GMT',
253 verbose headers vary: 'Accept-Encoding',
253 verbose headers 'cf-cache-status': 'HIT',
253 verbose headers 'cf-request-id': '072bac663100002e836cacf000000001',
253 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
253 verbose headers server: 'cloudflare' }
254 silly get cb [ 304,
254 silly get { date: 'Tue, 22 Dec 2020 10:51:29 GMT',
254 silly get connection: 'keep-alive',
254 silly get 'set-cookie':
254 silly get [ '__cfduid=ddb90fbdb25c11a6d660c8344830eb3d31608634289; expires=Thu, 21-Jan-21 10:51:29 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
254 silly get 'cf-ray': '605949b6ba782e83-BOM',
254 silly get age: '7190',
254 silly get 'cache-control': 'public, max-age=300',
254 silly get etag: '"da5f1eb3d6be1de04c850018106068ca"',
254 silly get 'last-modified': 'Wed, 16 Dec 2020 02:30:55 GMT',
254 silly get vary: 'Accept-Encoding',
254 silly get 'cf-cache-status': 'HIT',
254 silly get 'cf-request-id': '072bac663100002e836cacf000000001',
254 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
254 silly get server: 'cloudflare' } ]
255 verbose etag https://registry.npmjs.org/mime from cache
256 verbose get saving mime to /home/sahil/.npm/registry.npmjs.org/mime/.cache.json
257 http 304 https://registry.npmjs.org/form-data
258 verbose headers { date: 'Tue, 22 Dec 2020 10:51:29 GMT',
258 verbose headers connection: 'keep-alive',
258 verbose headers 'set-cookie':
258 verbose headers [ '__cfduid=d781903b48165902a0e8f97df6837ee1d1608634289; expires=Thu, 21-Jan-21 10:51:29 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
258 verbose headers 'cf-ray': '605949b6ccc2d5d0-BOM',
258 verbose headers age: '3510',
258 verbose headers 'cache-control': 'public, max-age=300',
258 verbose headers etag: '"5e211bf0fabf58f7b2a855c8b4ce28a4"',
258 verbose headers 'last-modified': 'Wed, 06 Nov 2019 07:57:03 GMT',
258 verbose headers vary: 'Accept-Encoding',
258 verbose headers 'cf-cache-status': 'HIT',
258 verbose headers 'cf-request-id': '072bac663b0000d5d0612ca000000001',
258 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
258 verbose headers server: 'cloudflare' }
259 silly get cb [ 304,
259 silly get { date: 'Tue, 22 Dec 2020 10:51:29 GMT',
259 silly get connection: 'keep-alive',
259 silly get 'set-cookie':
259 silly get [ '__cfduid=d781903b48165902a0e8f97df6837ee1d1608634289; expires=Thu, 21-Jan-21 10:51:29 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
259 silly get 'cf-ray': '605949b6ccc2d5d0-BOM',
259 silly get age: '3510',
259 silly get 'cache-control': 'public, max-age=300',
259 silly get etag: '"5e211bf0fabf58f7b2a855c8b4ce28a4"',
259 silly get 'last-modified': 'Wed, 06 Nov 2019 07:57:03 GMT',
259 silly get vary: 'Accept-Encoding',
259 silly get 'cf-cache-status': 'HIT',
259 silly get 'cf-request-id': '072bac663b0000d5d0612ca000000001',
259 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
259 silly get server: 'cloudflare' } ]
260 verbose etag https://registry.npmjs.org/form-data from cache
261 verbose get saving form-data to /home/sahil/.npm/registry.npmjs.org/form-data/.cache.json
262 http 304 https://registry.npmjs.org/methods
263 verbose headers { date: 'Tue, 22 Dec 2020 10:51:29 GMT',
263 verbose headers connection: 'keep-alive',
263 verbose headers 'set-cookie':
263 verbose headers [ '__cfduid=dd276ff4b5a91faf4c278d3d7ef992c661608634289; expires=Thu, 21-Jan-21 10:51:29 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
263 verbose headers 'cf-ray': '605949b6cb4d2e0b-BOM',
263 verbose headers age: '2178',
263 verbose headers 'cache-control': 'public, max-age=300',
263 verbose headers etag: '"a861fec3b8f0d6cd86f2f00cf1452298"',
263 verbose headers 'last-modified': 'Sun, 27 May 2018 07:57:35 GMT',
263 verbose headers vary: 'Accept-Encoding',
263 verbose headers 'cf-cache-status': 'HIT',
263 verbose headers 'cf-request-id': '072bac663e00002e0bd730f000000001',
263 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
263 verbose headers server: 'cloudflare' }
264 silly get cb [ 304,
264 silly get { date: 'Tue, 22 Dec 2020 10:51:29 GMT',
264 silly get connection: 'keep-alive',
264 silly get 'set-cookie':
264 silly get [ '__cfduid=dd276ff4b5a91faf4c278d3d7ef992c661608634289; expires=Thu, 21-Jan-21 10:51:29 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
264 silly get 'cf-ray': '605949b6cb4d2e0b-BOM',
264 silly get age: '2178',
264 silly get 'cache-control': 'public, max-age=300',
264 silly get etag: '"a861fec3b8f0d6cd86f2f00cf1452298"',
264 silly get 'last-modified': 'Sun, 27 May 2018 07:57:35 GMT',
264 silly get vary: 'Accept-Encoding',
264 silly get 'cf-cache-status': 'HIT',
264 silly get 'cf-request-id': '072bac663e00002e0bd730f000000001',
264 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
264 silly get server: 'cloudflare' } ]
265 verbose etag https://registry.npmjs.org/methods from cache
266 verbose get saving methods to /home/sahil/.npm/registry.npmjs.org/methods/.cache.json
267 silly resolveWithNewModule extend@3.0.2 checking installable status
268 silly cache add args [ 'extend@^3.0.0', null ]
269 verbose cache add spec extend@^3.0.0
270 silly cache add parsed spec Result {
270 silly cache add raw: 'extend@^3.0.0',
270 silly cache add scope: null,
270 silly cache add name: 'extend',
270 silly cache add rawSpec: '^3.0.0',
270 silly cache add spec: '>=3.0.0 <4.0.0',
270 silly cache add type: 'range' }
271 silly addNamed extend@>=3.0.0 <4.0.0
272 verbose addNamed ">=3.0.0 <4.0.0" is a valid semver range for extend
273 silly addNameRange { name: 'extend', range: '>=3.0.0 <4.0.0', hasData: false }
274 silly mapToRegistry name extend
275 silly mapToRegistry using default registry
276 silly mapToRegistry registry https://registry.npmjs.org/
277 silly mapToRegistry uri https://registry.npmjs.org/extend
278 verbose addNameRange registry:https://registry.npmjs.org/extend not in flight; fetching
279 silly resolveWithNewModule readable-stream@2.3.7 checking installable status
280 silly cache add args [ 'readable-stream@^2.0.5', null ]
281 verbose cache add spec readable-stream@^2.0.5
282 silly cache add parsed spec Result {
282 silly cache add raw: 'readable-stream@^2.0.5',
282 silly cache add scope: null,
282 silly cache add name: 'readable-stream',
282 silly cache add rawSpec: '^2.0.5',
282 silly cache add spec: '>=2.0.5 <3.0.0',
282 silly cache add type: 'range' }
283 silly addNamed readable-stream@>=2.0.5 <3.0.0
284 verbose addNamed ">=2.0.5 <3.0.0" is a valid semver range for readable-stream
285 silly addNameRange { name: 'readable-stream',
285 silly addNameRange range: '>=2.0.5 <3.0.0',
285 silly addNameRange hasData: false }
286 silly mapToRegistry name readable-stream
287 silly mapToRegistry using default registry
288 silly mapToRegistry registry https://registry.npmjs.org/
289 silly mapToRegistry uri https://registry.npmjs.org/readable-stream
290 verbose addNameRange registry:https://registry.npmjs.org/readable-stream not in flight; fetching
291 http 304 https://registry.npmjs.org/debug
292 verbose headers { date: 'Tue, 22 Dec 2020 10:51:29 GMT',
292 verbose headers connection: 'keep-alive',
292 verbose headers 'set-cookie':
292 verbose headers [ '__cfduid=d0017637f3854e855d8b8215063266b8a1608634289; expires=Thu, 21-Jan-21 10:51:29 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
292 verbose headers 'cf-ray': '605949b6bd6b2e40-BOM',
292 verbose headers age: '571',
292 verbose headers 'cache-control': 'public, max-age=300',
292 verbose headers etag: '"5b70224da41fe63879bbe39279973e35"',
292 verbose headers 'last-modified': 'Tue, 15 Dec 2020 13:42:31 GMT',
292 verbose headers vary: 'Accept-Encoding',
292 verbose headers 'cf-cache-status': 'HIT',
292 verbose headers 'cf-request-id': '072bac663700002e40ed20d000000001',
292 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
292 verbose headers server: 'cloudflare' }
293 silly get cb [ 304,
293 silly get { date: 'Tue, 22 Dec 2020 10:51:29 GMT',
293 silly get connection: 'keep-alive',
293 silly get 'set-cookie':
293 silly get [ '__cfduid=d0017637f3854e855d8b8215063266b8a1608634289; expires=Thu, 21-Jan-21 10:51:29 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
293 silly get 'cf-ray': '605949b6bd6b2e40-BOM',
293 silly get age: '571',
293 silly get 'cache-control': 'public, max-age=300',
293 silly get etag: '"5b70224da41fe63879bbe39279973e35"',
293 silly get 'last-modified': 'Tue, 15 Dec 2020 13:42:31 GMT',
293 silly get vary: 'Accept-Encoding',
293 silly get 'cf-cache-status': 'HIT',
293 silly get 'cf-request-id': '072bac663700002e40ed20d000000001',
293 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
293 silly get server: 'cloudflare' } ]
294 verbose etag https://registry.npmjs.org/debug from cache
295 verbose get saving debug to /home/sahil/.npm/registry.npmjs.org/debug/.cache.json
296 silly resolveWithNewModule mime@1.6.0 checking installable status
297 silly cache add args [ 'mime@^1.4.1', null ]
298 verbose cache add spec mime@^1.4.1
299 silly cache add parsed spec Result {
299 silly cache add raw: 'mime@^1.4.1',
299 silly cache add scope: null,
299 silly cache add name: 'mime',
299 silly cache add rawSpec: '^1.4.1',
299 silly cache add spec: '>=1.4.1 <2.0.0',
299 silly cache add type: 'range' }
300 silly addNamed mime@>=1.4.1 <2.0.0
301 verbose addNamed ">=1.4.1 <2.0.0" is a valid semver range for mime
302 silly addNameRange { name: 'mime', range: '>=1.4.1 <2.0.0', hasData: false }
303 silly mapToRegistry name mime
304 silly mapToRegistry using default registry
305 silly mapToRegistry registry https://registry.npmjs.org/
306 silly mapToRegistry uri https://registry.npmjs.org/mime
307 verbose addNameRange registry:https://registry.npmjs.org/mime not in flight; fetching
308 verbose get https://registry.npmjs.org/extend not expired, no request
309 silly addNameRange number 2 { name: 'extend', range: '>=3.0.0 <4.0.0', hasData: true }
310 silly addNameRange versions [ 'extend',
310 silly addNameRange [ '1.0.0',
310 silly addNameRange '1.1.0',
310 silly addNameRange '1.1.1',
310 silly addNameRange '1.1.3',
310 silly addNameRange '1.2.0',
310 silly addNameRange '1.2.1',
310 silly addNameRange '1.3.0',
310 silly addNameRange '2.0.0',
310 silly addNameRange '2.0.1',
310 silly addNameRange '3.0.0',
310 silly addNameRange '3.0.1',
310 silly addNameRange '3.0.2',
310 silly addNameRange '2.0.2' ] ]
311 silly addNamed extend@3.0.2
312 verbose addNamed "3.0.2" is a plain semver version for extend
313 verbose get https://registry.npmjs.org/readable-stream not expired, no request
314 silly addNameRange number 2 { name: 'readable-stream',
314 silly addNameRange range: '>=2.0.5 <3.0.0',
314 silly addNameRange hasData: true }
315 silly addNameRange versions [ 'readable-stream',
315 silly addNameRange [ '0.0.1',
315 silly addNameRange '0.0.2',
315 silly addNameRange '0.0.3',
315 silly addNameRange '0.0.4',
315 silly addNameRange '0.1.0',
315 silly addNameRange '0.2.0',
315 silly addNameRange '0.3.0',
315 silly addNameRange '0.3.1',
315 silly addNameRange '1.0.0',
315 silly addNameRange '1.0.1',
315 silly addNameRange '1.0.2',
315 silly addNameRange '1.0.15',
315 silly addNameRange '1.0.17',
315 silly addNameRange '1.1.7',
315 silly addNameRange '1.1.8',
315 silly addNameRange '1.1.9',
315 silly addNameRange '1.0.24',
315 silly addNameRange '1.0.25',
315 silly addNameRange '1.1.10',
315 silly addNameRange '1.0.25-1',
315 silly addNameRange '1.1.11',
315 silly addNameRange '1.0.26',
315 silly addNameRange '1.0.26-1',
315 silly addNameRange '1.1.11-1',
315 silly addNameRange '1.0.26-2',
315 silly addNameRange '1.1.12',
315 silly addNameRange '1.0.26-3',
315 silly addNameRange '1.0.26-4',
315 silly addNameRange '1.1.12-1',
315 silly addNameRange '1.0.27-1',
315 silly addNameRange '1.1.13-1',
315 silly addNameRange '1.0.31',
315 silly addNameRange '1.1.13',
315 silly addNameRange '1.0.32',
315 silly addNameRange '1.0.32-1',
315 silly addNameRange '1.0.33-1',
315 silly addNameRange '1.0.33-2',
315 silly addNameRange '1.0.33',
315 silly addNameRange '2.0.0',
315 silly addNameRange '2.0.1',
315 silly addNameRange '2.0.2',
315 silly addNameRange '2.0.3',
315 silly addNameRange '2.0.4',
315 silly addNameRange '2.0.5',
315 silly addNameRange '2.0.6',
315 silly addNameRange '1.0.34',
315 silly addNameRange '1.1.14',
315 silly addNameRange '2.1.0',
315 silly addNameRange '2.1.1',
315 silly addNameRange '2.1.2',
315 silly addNameRange '2.1.3',
315 silly addNameRange '2.1.4',
315 silly addNameRange '2.1.5',
315 silly addNameRange '2.2.0',
315 silly addNameRange '2.2.1',
315 silly addNameRange '2.2.2',
315 silly addNameRange '2.2.3',
315 silly addNameRange '2.2.4',
315 silly addNameRange '2.2.5',
315 silly addNameRange '2.2.6',
315 silly addNameRange '2.2.7',
315 silly addNameRange '2.2.8',
315 silly addNameRange '2.2.9',
315 silly addNameRange '2.2.10',
315 silly addNameRange '2.2.11',
315 silly addNameRange '2.3.0',
315 silly addNameRange '2.3.1',
315 silly addNameRange '2.3.2',
315 silly addNameRange '2.3.3',
315 silly addNameRange '2.3.4',
315 silly addNameRange '2.3.5',
315 silly addNameRange '2.3.6',
315 silly addNameRange '3.0.0-rc.1',
315 silly addNameRange '3.0.0-rc.2',
315 silly addNameRange '3.0.0-rc.3',
315 silly addNameRange '3.0.0',
315 silly addNameRange '3.0.1',
315 silly addNameRange '3.0.2',
315 silly addNameRange '3.0.3',
315 silly addNameRange '3.0.4',
315 silly addNameRange '3.0.5',
315 silly addNameRange '3.0.6',
315 silly addNameRange '3.1.0',
315 silly addNameRange '3.1.1',
315 silly addNameRange '3.2.0',
315 silly addNameRange '3.3.0',
315 silly addNameRange '3.4.0',
315 silly addNameRange '2.3.7',
315 silly addNameRange '3.5.0',
315 silly addNameRange '3.6.0' ] ]
316 silly addNamed readable-stream@2.3.7
317 verbose addNamed "2.3.7" is a plain semver version for readable-stream
318 silly resolveWithNewModule form-data@2.5.1 checking installable status
319 silly cache add args [ 'form-data@^2.3.1', null ]
320 verbose cache add spec form-data@^2.3.1
321 silly cache add parsed spec Result {
321 silly cache add raw: 'form-data@^2.3.1',
321 silly cache add scope: null,
321 silly cache add name: 'form-data',
321 silly cache add rawSpec: '^2.3.1',
321 silly cache add spec: '>=2.3.1 <3.0.0',
321 silly cache add type: 'range' }
322 silly addNamed form-data@>=2.3.1 <3.0.0
323 verbose addNamed ">=2.3.1 <3.0.0" is a valid semver range for form-data
324 silly addNameRange { name: 'form-data', range: '>=2.3.1 <3.0.0', hasData: false }
325 silly mapToRegistry name form-data
326 silly mapToRegistry using default registry
327 silly mapToRegistry registry https://registry.npmjs.org/
328 silly mapToRegistry uri https://registry.npmjs.org/form-data
329 verbose addNameRange registry:https://registry.npmjs.org/form-data not in flight; fetching
330 http 304 https://registry.npmjs.org/qs
331 verbose headers { date: 'Tue, 22 Dec 2020 10:51:29 GMT',
331 verbose headers connection: 'keep-alive',
331 verbose headers 'set-cookie':
331 verbose headers [ '__cfduid=daf33162fd4a55ecdb2b2dd935d0a471d1608634289; expires=Thu, 21-Jan-21 10:51:29 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
331 verbose headers 'cf-ray': '605949b6ee17d58f-BOM',
331 verbose headers age: '3097',
331 verbose headers 'cache-control': 'public, max-age=300',
331 verbose headers etag: '"e367147982609ecdcb636c8616e97895"',
331 verbose headers 'last-modified': 'Fri, 09 Oct 2020 18:07:35 GMT',
331 verbose headers vary: 'Accept-Encoding',
331 verbose headers 'cf-cache-status': 'HIT',
331 verbose headers 'cf-request-id': '072bac66500000d58f75aa3000000001',
331 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
331 verbose headers server: 'cloudflare' }
332 silly get cb [ 304,
332 silly get { date: 'Tue, 22 Dec 2020 10:51:29 GMT',
332 silly get connection: 'keep-alive',
332 silly get 'set-cookie':
332 silly get [ '__cfduid=daf33162fd4a55ecdb2b2dd935d0a471d1608634289; expires=Thu, 21-Jan-21 10:51:29 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
332 silly get 'cf-ray': '605949b6ee17d58f-BOM',
332 silly get age: '3097',
332 silly get 'cache-control': 'public, max-age=300',
332 silly get etag: '"e367147982609ecdcb636c8616e97895"',
332 silly get 'last-modified': 'Fri, 09 Oct 2020 18:07:35 GMT',
332 silly get vary: 'Accept-Encoding',
332 silly get 'cf-cache-status': 'HIT',
332 silly get 'cf-request-id': '072bac66500000d58f75aa3000000001',
332 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
332 silly get server: 'cloudflare' } ]
333 verbose etag https://registry.npmjs.org/qs from cache
334 verbose get saving qs to /home/sahil/.npm/registry.npmjs.org/qs/.cache.json
335 http 304 https://registry.npmjs.org/formidable
336 verbose headers { date: 'Tue, 22 Dec 2020 10:51:29 GMT',
336 verbose headers connection: 'keep-alive',
336 verbose headers 'set-cookie':
336 verbose headers [ '__cfduid=dc7dd83ed75c53a731c81f66de62f67491608634289; expires=Thu, 21-Jan-21 10:51:29 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
336 verbose headers 'cf-ray': '605949b6dbe42e59-BOM',
336 verbose headers age: '261',
336 verbose headers 'cache-control': 'public, max-age=300',
336 verbose headers etag: '"5ad34097ca5f1c88367421fe49bad340"',
336 verbose headers 'last-modified': 'Sat, 09 May 2020 14:43:06 GMT',
336 verbose headers vary: 'Accept-Encoding',
336 verbose headers 'cf-cache-status': 'HIT',
336 verbose headers 'cf-request-id': '072bac664400002e59ea2a7000000001',
336 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
336 verbose headers server: 'cloudflare' }
337 silly get cb [ 304,
337 silly get { date: 'Tue, 22 Dec 2020 10:51:29 GMT',
337 silly get connection: 'keep-alive',
337 silly get 'set-cookie':
337 silly get [ '__cfduid=dc7dd83ed75c53a731c81f66de62f67491608634289; expires=Thu, 21-Jan-21 10:51:29 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
337 silly get 'cf-ray': '605949b6dbe42e59-BOM',
337 silly get age: '261',
337 silly get 'cache-control': 'public, max-age=300',
337 silly get etag: '"5ad34097ca5f1c88367421fe49bad340"',
337 silly get 'last-modified': 'Sat, 09 May 2020 14:43:06 GMT',
337 silly get vary: 'Accept-Encoding',
337 silly get 'cf-cache-status': 'HIT',
337 silly get 'cf-request-id': '072bac664400002e59ea2a7000000001',
337 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
337 silly get server: 'cloudflare' } ]
338 verbose etag https://registry.npmjs.org/formidable from cache
339 verbose get saving formidable to /home/sahil/.npm/registry.npmjs.org/formidable/.cache.json
340 silly resolveWithNewModule methods@1.1.2 checking installable status
341 silly cache add args [ 'methods@^1.1.1', null ]
342 verbose cache add spec methods@^1.1.1
343 silly cache add parsed spec Result {
343 silly cache add raw: 'methods@^1.1.1',
343 silly cache add scope: null,
343 silly cache add name: 'methods',
343 silly cache add rawSpec: '^1.1.1',
343 silly cache add spec: '>=1.1.1 <2.0.0',
343 silly cache add type: 'range' }
344 silly addNamed methods@>=1.1.1 <2.0.0
345 verbose addNamed ">=1.1.1 <2.0.0" is a valid semver range for methods
346 silly addNameRange { name: 'methods', range: '>=1.1.1 <2.0.0', hasData: false }
347 silly mapToRegistry name methods
348 silly mapToRegistry using default registry
349 silly mapToRegistry registry https://registry.npmjs.org/
350 silly mapToRegistry uri https://registry.npmjs.org/methods
351 verbose addNameRange registry:https://registry.npmjs.org/methods not in flight; fetching
352 verbose get https://registry.npmjs.org/mime not expired, no request
353 silly addNameRange number 2 { name: 'mime', range: '>=1.4.1 <2.0.0', hasData: true }
354 silly addNameRange versions [ 'mime',
354 silly addNameRange [ '1.0.0',
354 silly addNameRange '1.1.0',
354 silly addNameRange '1.2.1',
354 silly addNameRange '1.2.2',
354 silly addNameRange '1.2.3',
354 silly addNameRange '1.2.4',
354 silly addNameRange '1.2.5',
354 silly addNameRange '1.2.6',
354 silly addNameRange '1.2.7',
354 silly addNameRange '1.2.8',
354 silly addNameRange '1.2.9',
354 silly addNameRange '1.2.10',
354 silly addNameRange '1.2.11',
354 silly addNameRange '1.3.0',
354 silly addNameRange '1.3.2',
354 silly addNameRange '1.3.3',
354 silly addNameRange '1.3.4',
354 silly addNameRange '1.3.5',
354 silly addNameRange '1.3.6',
354 silly addNameRange '1.4.0',
354 silly addNameRange '2.0.0',
354 silly addNameRange '2.0.1',
354 silly addNameRange '2.0.2',
354 silly addNameRange '1.4.1',
354 silly addNameRange '2.0.3',
354 silly addNameRange '1.5.0',
354 silly addNameRange '1.6.0',
354 silly addNameRange '2.0.5',
354 silly addNameRange '2.1.0',
354 silly addNameRange '2.2.0',
354 silly addNameRange '2.2.1',
354 silly addNameRange '2.2.2',
354 silly addNameRange '2.3.0',
354 silly addNameRange '2.3.1',
354 silly addNameRange '2.4.0',
354 silly addNameRange '2.4.1',
354 silly addNameRange '2.4.2',
354 silly addNameRange '2.4.3',
354 silly addNameRange '2.4.4',
354 silly addNameRange '2.4.5',
354 silly addNameRange '2.4.6',
354 silly addNameRange '2.4.7' ] ]
355 silly addNamed mime@1.6.0
356 verbose addNamed "1.6.0" is a plain semver version for mime
357 silly cache afterAdd extend@3.0.2
358 verbose afterAdd /home/sahil/.npm/extend/3.0.2/package/package.json not in flight; writing
359 silly cache afterAdd readable-stream@2.3.7
360 verbose afterAdd /home/sahil/.npm/readable-stream/2.3.7/package/package.json not in flight; writing
361 silly resolveWithNewModule debug@3.2.7 checking installable status
362 silly cache add args [ 'debug@^3.1.0', null ]
363 verbose cache add spec debug@^3.1.0
364 silly cache add parsed spec Result {
364 silly cache add raw: 'debug@^3.1.0',
364 silly cache add scope: null,
364 silly cache add name: 'debug',
364 silly cache add rawSpec: '^3.1.0',
364 silly cache add spec: '>=3.1.0 <4.0.0',
364 silly cache add type: 'range' }
365 silly addNamed debug@>=3.1.0 <4.0.0
366 verbose addNamed ">=3.1.0 <4.0.0" is a valid semver range for debug
367 silly addNameRange { name: 'debug', range: '>=3.1.0 <4.0.0', hasData: false }
368 silly mapToRegistry name debug
369 silly mapToRegistry using default registry
370 silly mapToRegistry registry https://registry.npmjs.org/
371 silly mapToRegistry uri https://registry.npmjs.org/debug
372 verbose addNameRange registry:https://registry.npmjs.org/debug not in flight; fetching
373 verbose get https://registry.npmjs.org/form-data not expired, no request
374 silly addNameRange number 2 { name: 'form-data', range: '>=2.3.1 <3.0.0', hasData: true }
375 silly addNameRange versions [ 'form-data',
375 silly addNameRange [ '0.0.0',
375 silly addNameRange '0.0.2',
375 silly addNameRange '0.0.3',
375 silly addNameRange '0.0.4',
375 silly addNameRange '0.0.5',
375 silly addNameRange '0.0.6',
375 silly addNameRange '0.0.7',
375 silly addNameRange '0.0.8',
375 silly addNameRange '0.0.9',
375 silly addNameRange '0.0.10',
375 silly addNameRange '0.1.0',
375 silly addNameRange '0.1.1',
375 silly addNameRange '0.1.2',
375 silly addNameRange '0.1.3',
375 silly addNameRange '0.1.4',
375 silly addNameRange '0.2.0',
375 silly addNameRange '1.0.0-rc1',
375 silly addNameRange '1.0.0-rc2',
375 silly addNameRange '1.0.0-rc3',
375 silly addNameRange '1.0.0-rc4',
375 silly addNameRange '1.0.0',
375 silly addNameRange '1.0.1',
375 silly addNameRange '2.0.0',
375 silly addNameRange '2.1.0',
375 silly addNameRange '2.1.1',
375 silly addNameRange '2.1.2',
375 silly addNameRange '2.1.4',
375 silly addNameRange '2.2.0',
375 silly addNameRange '2.3.1',
375 silly addNameRange '2.3.2-rc1',
375 silly addNameRange '2.3.2',
375 silly addNameRange '2.3.3',
375 silly addNameRange '2.4.0',
375 silly addNameRange '2.5.0',
375 silly addNameRange '2.5.1',
375 silly addNameRange '3.0.0' ] ]
376 silly addNamed form-data@2.5.1
377 verbose addNamed "2.5.1" is a plain semver version for form-data
378 verbose get https://registry.npmjs.org/methods not expired, no request
379 silly addNameRange number 2 { name: 'methods', range: '>=1.1.1 <2.0.0', hasData: true }
380 silly addNameRange versions [ 'methods',
380 silly addNameRange [ '0.0.1', '0.1.0', '1.0.0', '1.0.1', '1.1.0', '1.1.1', '1.1.2' ] ]
381 silly addNamed methods@1.1.2
382 verbose addNamed "1.1.2" is a plain semver version for methods
383 silly cache afterAdd mime@1.6.0
384 verbose afterAdd /home/sahil/.npm/mime/1.6.0/package/package.json not in flight; writing
385 silly resolveWithNewModule formidable@1.2.2 checking installable status
386 silly cache add args [ 'formidable@^1.1.1', null ]
387 verbose cache add spec formidable@^1.1.1
388 silly cache add parsed spec Result {
388 silly cache add raw: 'formidable@^1.1.1',
388 silly cache add scope: null,
388 silly cache add name: 'formidable',
388 silly cache add rawSpec: '^1.1.1',
388 silly cache add spec: '>=1.1.1 <2.0.0',
388 silly cache add type: 'range' }
389 silly addNamed formidable@>=1.1.1 <2.0.0
390 verbose addNamed ">=1.1.1 <2.0.0" is a valid semver range for formidable
391 silly addNameRange { name: 'formidable', range: '>=1.1.1 <2.0.0', hasData: false }
392 silly mapToRegistry name formidable
393 silly mapToRegistry using default registry
394 silly mapToRegistry registry https://registry.npmjs.org/
395 silly mapToRegistry uri https://registry.npmjs.org/formidable
396 verbose addNameRange registry:https://registry.npmjs.org/formidable not in flight; fetching
397 silly resolveWithNewModule qs@6.9.4 checking installable status
398 silly cache add args [ 'qs@^6.5.1', null ]
399 verbose cache add spec qs@^6.5.1
400 silly cache add parsed spec Result {