forked from arya-s/nocchi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnpm-debug.log
13167 lines (13167 loc) · 723 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/nodejs', '/usr/bin/npm', 'i' ]
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 wolfram-alpha
20 silly mapToRegistry name wolfram-alpha
21 silly mapToRegistry using default registry
22 silly mapToRegistry registry https://registry.npmjs.org/
23 silly mapToRegistry uri https://registry.npmjs.org/wolfram-alpha
24 verbose request uri https://registry.npmjs.org/wolfram-alpha
25 verbose request no auth needed
26 info attempt registry request try #1 at 9:16:37 AM
27 verbose request id e9f446e87ab2c939
28 verbose etag "58f3b10d-34c8"
29 verbose lastModified Sun, 16 Apr 2017 17:59:41 GMT
30 http request GET https://registry.npmjs.org/wolfram-alpha
31 http 304 https://registry.npmjs.org/wolfram-alpha
32 verbose headers { date: 'Fri, 06 Apr 2018 13:16:37 GMT',
32 verbose headers via: '1.1 varnish',
32 verbose headers 'cache-control': 'max-age=300',
32 verbose headers etag: '"58f3b10d-34c8"',
32 verbose headers age: '91',
32 verbose headers connection: 'keep-alive',
32 verbose headers 'x-served-by': 'cache-dca17748-DCA',
32 verbose headers 'x-cache': 'HIT',
32 verbose headers 'x-cache-hits': '1',
32 verbose headers 'x-timer': 'S1523020598.553041,VS0,VE1',
32 verbose headers vary: 'Accept-Encoding, Accept' }
33 silly get cb [ 304,
33 silly get { date: 'Fri, 06 Apr 2018 13:16:37 GMT',
33 silly get via: '1.1 varnish',
33 silly get 'cache-control': 'max-age=300',
33 silly get etag: '"58f3b10d-34c8"',
33 silly get age: '91',
33 silly get connection: 'keep-alive',
33 silly get 'x-served-by': 'cache-dca17748-DCA',
33 silly get 'x-cache': 'HIT',
33 silly get 'x-cache-hits': '1',
33 silly get 'x-timer': 'S1523020598.553041,VS0,VE1',
33 silly get vary: 'Accept-Encoding, Accept' } ]
34 verbose etag https://registry.npmjs.org/wolfram-alpha from cache
35 verbose get saving wolfram-alpha to /home/mike/.npm/registry.npmjs.org/wolfram-alpha/.cache.json
36 silly resolveWithNewModule [email protected] checking installable status
37 silly cache add args [ 'wolfram-alpha@^0.5.0', null ]
38 verbose cache add spec wolfram-alpha@^0.5.0
39 silly cache add parsed spec Result {
39 silly cache add raw: 'wolfram-alpha@^0.5.0',
39 silly cache add scope: null,
39 silly cache add name: 'wolfram-alpha',
39 silly cache add rawSpec: '^0.5.0',
39 silly cache add spec: '>=0.5.0 <0.6.0',
39 silly cache add type: 'range' }
40 silly addNamed wolfram-alpha@>=0.5.0 <0.6.0
41 verbose addNamed ">=0.5.0 <0.6.0" is a valid semver range for wolfram-alpha
42 silly addNameRange { name: 'wolfram-alpha',
42 silly addNameRange range: '>=0.5.0 <0.6.0',
42 silly addNameRange hasData: false }
43 silly mapToRegistry name wolfram-alpha
44 silly mapToRegistry using default registry
45 silly mapToRegistry registry https://registry.npmjs.org/
46 silly mapToRegistry uri https://registry.npmjs.org/wolfram-alpha
47 verbose addNameRange registry:https://registry.npmjs.org/wolfram-alpha not in flight; fetching
48 verbose get https://registry.npmjs.org/wolfram-alpha not expired, no request
49 silly addNameRange number 2 { name: 'wolfram-alpha', range: '>=0.5.0 <0.6.0', hasData: true }
50 silly addNameRange versions [ 'wolfram-alpha',
50 silly addNameRange [ '0.1.0',
50 silly addNameRange '0.1.1',
50 silly addNameRange '0.2.0',
50 silly addNameRange '0.2.1',
50 silly addNameRange '0.3.0',
50 silly addNameRange '0.4.0',
50 silly addNameRange '0.5.0',
50 silly addNameRange '0.6.0' ] ]
51 silly addNamed [email protected]
52 verbose addNamed "0.5.0" is a plain semver version for wolfram-alpha
53 silly cache afterAdd [email protected]
54 verbose afterAdd /home/mike/.npm/wolfram-alpha/0.5.0/package/package.json not in flight; writing
55 verbose afterAdd /home/mike/.npm/wolfram-alpha/0.5.0/package/package.json written
56 silly fetchNamedPackageData ogg-packet
57 silly mapToRegistry name ogg-packet
58 silly mapToRegistry using default registry
59 silly mapToRegistry registry https://registry.npmjs.org/
60 silly mapToRegistry uri https://registry.npmjs.org/ogg-packet
61 verbose request uri https://registry.npmjs.org/ogg-packet
62 verbose request no auth needed
63 info attempt registry request try #1 at 9:16:37 AM
64 verbose etag "50bbbf05-122e"
65 verbose lastModified Sun, 2 Dec 2012 20:50:13 GMT
66 http request GET https://registry.npmjs.org/ogg-packet
67 http 304 https://registry.npmjs.org/ogg-packet
68 verbose headers { date: 'Fri, 06 Apr 2018 13:16:37 GMT',
68 verbose headers via: '1.1 varnish',
68 verbose headers 'cache-control': 'max-age=300',
68 verbose headers etag: '"50bbbf05-122e"',
68 verbose headers age: '1186',
68 verbose headers connection: 'keep-alive',
68 verbose headers 'x-served-by': 'cache-dca17726-DCA',
68 verbose headers 'x-cache': 'HIT',
68 verbose headers 'x-cache-hits': '1',
68 verbose headers 'x-timer': 'S1523020598.741060,VS0,VE1',
68 verbose headers vary: 'Accept-Encoding, Accept' }
69 silly get cb [ 304,
69 silly get { date: 'Fri, 06 Apr 2018 13:16:37 GMT',
69 silly get via: '1.1 varnish',
69 silly get 'cache-control': 'max-age=300',
69 silly get etag: '"50bbbf05-122e"',
69 silly get age: '1186',
69 silly get connection: 'keep-alive',
69 silly get 'x-served-by': 'cache-dca17726-DCA',
69 silly get 'x-cache': 'HIT',
69 silly get 'x-cache-hits': '1',
69 silly get 'x-timer': 'S1523020598.741060,VS0,VE1',
69 silly get vary: 'Accept-Encoding, Accept' } ]
70 verbose etag https://registry.npmjs.org/ogg-packet from cache
71 verbose get saving ogg-packet to /home/mike/.npm/registry.npmjs.org/ogg-packet/.cache.json
72 silly resolveWithNewModule [email protected] checking installable status
73 silly cache add args [ 'ogg-packet@^1.0.0', null ]
74 verbose cache add spec ogg-packet@^1.0.0
75 silly cache add parsed spec Result {
75 silly cache add raw: 'ogg-packet@^1.0.0',
75 silly cache add scope: null,
75 silly cache add name: 'ogg-packet',
75 silly cache add rawSpec: '^1.0.0',
75 silly cache add spec: '>=1.0.0 <2.0.0',
75 silly cache add type: 'range' }
76 silly addNamed ogg-packet@>=1.0.0 <2.0.0
77 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for ogg-packet
78 silly addNameRange { name: 'ogg-packet', range: '>=1.0.0 <2.0.0', hasData: false }
79 silly mapToRegistry name ogg-packet
80 silly mapToRegistry using default registry
81 silly mapToRegistry registry https://registry.npmjs.org/
82 silly mapToRegistry uri https://registry.npmjs.org/ogg-packet
83 verbose addNameRange registry:https://registry.npmjs.org/ogg-packet not in flight; fetching
84 verbose get https://registry.npmjs.org/ogg-packet not expired, no request
85 silly addNameRange number 2 { name: 'ogg-packet', range: '>=1.0.0 <2.0.0', hasData: true }
86 silly addNameRange versions [ 'ogg-packet', [ '1.0.0' ] ]
87 silly addNamed [email protected]
88 verbose addNamed "1.0.0" is a plain semver version for ogg-packet
89 silly cache afterAdd [email protected]
90 verbose afterAdd /home/mike/.npm/ogg-packet/1.0.0/package/package.json not in flight; writing
91 verbose afterAdd /home/mike/.npm/ogg-packet/1.0.0/package/package.json written
92 silly fetchNamedPackageData ref-struct
93 silly mapToRegistry name ref-struct
94 silly mapToRegistry using default registry
95 silly mapToRegistry registry https://registry.npmjs.org/
96 silly mapToRegistry uri https://registry.npmjs.org/ref-struct
97 verbose request uri https://registry.npmjs.org/ref-struct
98 verbose request no auth needed
99 info attempt registry request try #1 at 9:16:37 AM
100 verbose etag "591436e6-412b"
101 verbose lastModified Thu, 11 May 2017 10:03:18 GMT
102 http request GET https://registry.npmjs.org/ref-struct
103 http 304 https://registry.npmjs.org/ref-struct
104 verbose headers { date: 'Fri, 06 Apr 2018 13:16:37 GMT',
104 verbose headers via: '1.1 varnish',
104 verbose headers 'cache-control': 'max-age=300',
104 verbose headers etag: '"591436e6-412b"',
104 verbose headers age: '2697',
104 verbose headers connection: 'keep-alive',
104 verbose headers 'x-served-by': 'cache-dca17748-DCA',
104 verbose headers 'x-cache': 'HIT',
104 verbose headers 'x-cache-hits': '1',
104 verbose headers 'x-timer': 'S1523020598.839484,VS0,VE0',
104 verbose headers vary: 'Accept-Encoding, Accept' }
105 silly get cb [ 304,
105 silly get { date: 'Fri, 06 Apr 2018 13:16:37 GMT',
105 silly get via: '1.1 varnish',
105 silly get 'cache-control': 'max-age=300',
105 silly get etag: '"591436e6-412b"',
105 silly get age: '2697',
105 silly get connection: 'keep-alive',
105 silly get 'x-served-by': 'cache-dca17748-DCA',
105 silly get 'x-cache': 'HIT',
105 silly get 'x-cache-hits': '1',
105 silly get 'x-timer': 'S1523020598.839484,VS0,VE0',
105 silly get vary: 'Accept-Encoding, Accept' } ]
106 verbose etag https://registry.npmjs.org/ref-struct from cache
107 verbose get saving ref-struct to /home/mike/.npm/registry.npmjs.org/ref-struct/.cache.json
108 silly resolveWithNewModule [email protected] checking installable status
109 silly cache add args [ 'ref-struct@*', null ]
110 verbose cache add spec ref-struct@*
111 silly cache add parsed spec Result {
111 silly cache add raw: 'ref-struct@*',
111 silly cache add scope: null,
111 silly cache add name: 'ref-struct',
111 silly cache add rawSpec: '*',
111 silly cache add spec: '*',
111 silly cache add type: 'range' }
112 silly addNamed ref-struct@*
113 verbose addNamed "*" is a valid semver range for ref-struct
114 silly addNameRange { name: 'ref-struct', range: '*', hasData: false }
115 silly mapToRegistry name ref-struct
116 silly mapToRegistry using default registry
117 silly mapToRegistry registry https://registry.npmjs.org/
118 silly mapToRegistry uri https://registry.npmjs.org/ref-struct
119 verbose addNameRange registry:https://registry.npmjs.org/ref-struct not in flight; fetching
120 verbose get https://registry.npmjs.org/ref-struct not expired, no request
121 silly addNameRange number 2 { name: 'ref-struct', range: '*', hasData: true }
122 silly addNameRange versions [ 'ref-struct',
122 silly addNameRange [ '0.0.1',
122 silly addNameRange '0.0.2',
122 silly addNameRange '0.0.3',
122 silly addNameRange '0.0.4',
122 silly addNameRange '0.0.5',
122 silly addNameRange '0.0.6',
122 silly addNameRange '0.0.7',
122 silly addNameRange '1.0.0',
122 silly addNameRange '1.0.1',
122 silly addNameRange '1.0.2',
122 silly addNameRange '1.1.0' ] ]
123 silly addNamed [email protected]
124 verbose addNamed "1.1.0" is a plain semver version for ref-struct
125 silly cache afterAdd [email protected]
126 verbose afterAdd /home/mike/.npm/ref-struct/1.1.0/package/package.json not in flight; writing
127 verbose afterAdd /home/mike/.npm/ref-struct/1.1.0/package/package.json written
128 silly fetchNamedPackageData ref
129 silly mapToRegistry name ref
130 silly mapToRegistry using default registry
131 silly mapToRegistry registry https://registry.npmjs.org/
132 silly mapToRegistry uri https://registry.npmjs.org/ref
133 verbose request uri https://registry.npmjs.org/ref
134 verbose request no auth needed
135 info attempt registry request try #1 at 9:16:37 AM
136 verbose etag "5a5d6b6a-f8d0"
137 verbose lastModified Tue, 16 Jan 2018 3:03:06 GMT
138 http request GET https://registry.npmjs.org/ref
139 http 304 https://registry.npmjs.org/ref
140 verbose headers { date: 'Fri, 06 Apr 2018 13:16:37 GMT',
140 verbose headers via: '1.1 varnish',
140 verbose headers 'cache-control': 'max-age=300',
140 verbose headers etag: '"5a5d6b6a-f8d0"',
140 verbose headers age: '0',
140 verbose headers connection: 'keep-alive',
140 verbose headers 'x-served-by': 'cache-dca17740-DCA',
140 verbose headers 'x-cache': 'MISS',
140 verbose headers 'x-cache-hits': '0',
140 verbose headers 'x-timer': 'S1523020598.939194,VS0,VE121',
140 verbose headers vary: 'Accept-Encoding, Accept' }
141 silly get cb [ 304,
141 silly get { date: 'Fri, 06 Apr 2018 13:16:37 GMT',
141 silly get via: '1.1 varnish',
141 silly get 'cache-control': 'max-age=300',
141 silly get etag: '"5a5d6b6a-f8d0"',
141 silly get age: '0',
141 silly get connection: 'keep-alive',
141 silly get 'x-served-by': 'cache-dca17740-DCA',
141 silly get 'x-cache': 'MISS',
141 silly get 'x-cache-hits': '0',
141 silly get 'x-timer': 'S1523020598.939194,VS0,VE121',
141 silly get vary: 'Accept-Encoding, Accept' } ]
142 verbose etag https://registry.npmjs.org/ref from cache
143 verbose get saving ref to /home/mike/.npm/registry.npmjs.org/ref/.cache.json
144 silly resolveWithNewModule [email protected] checking installable status
145 silly cache add args [ 'ref@1', null ]
146 verbose cache add spec ref@1
147 silly cache add parsed spec Result {
147 silly cache add raw: 'ref@1',
147 silly cache add scope: null,
147 silly cache add name: 'ref',
147 silly cache add rawSpec: '1',
147 silly cache add spec: '>=1.0.0 <2.0.0',
147 silly cache add type: 'range' }
148 silly addNamed ref@>=1.0.0 <2.0.0
149 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for ref
150 silly addNameRange { name: 'ref', range: '>=1.0.0 <2.0.0', hasData: false }
151 silly mapToRegistry name ref
152 silly mapToRegistry using default registry
153 silly mapToRegistry registry https://registry.npmjs.org/
154 silly mapToRegistry uri https://registry.npmjs.org/ref
155 verbose addNameRange registry:https://registry.npmjs.org/ref not in flight; fetching
156 verbose get https://registry.npmjs.org/ref not expired, no request
157 silly addNameRange number 2 { name: 'ref', range: '>=1.0.0 <2.0.0', hasData: true }
158 silly addNameRange versions [ 'ref',
158 silly addNameRange [ '0.0.1',
158 silly addNameRange '0.0.2',
158 silly addNameRange '0.0.3',
158 silly addNameRange '0.0.4',
158 silly addNameRange '0.0.5',
158 silly addNameRange '0.0.6',
158 silly addNameRange '0.0.7',
158 silly addNameRange '0.0.8',
158 silly addNameRange '0.0.9',
158 silly addNameRange '0.0.10',
158 silly addNameRange '0.0.11',
158 silly addNameRange '0.0.12',
158 silly addNameRange '0.0.13',
158 silly addNameRange '0.0.14',
158 silly addNameRange '0.0.15',
158 silly addNameRange '0.0.16',
158 silly addNameRange '0.0.17',
158 silly addNameRange '0.0.18',
158 silly addNameRange '0.0.19',
158 silly addNameRange '0.0.20',
158 silly addNameRange '0.1.0',
158 silly addNameRange '0.1.1',
158 silly addNameRange '0.1.2',
158 silly addNameRange '0.1.3',
158 silly addNameRange '0.2.0',
158 silly addNameRange '0.2.1',
158 silly addNameRange '0.2.2',
158 silly addNameRange '0.2.3',
158 silly addNameRange '0.3.0',
158 silly addNameRange '0.3.1',
158 silly addNameRange '0.3.2',
158 silly addNameRange '0.3.3',
158 silly addNameRange '0.3.4',
158 silly addNameRange '0.3.5',
158 silly addNameRange '1.0.0',
158 silly addNameRange '1.0.1',
158 silly addNameRange '1.0.2',
158 silly addNameRange '1.1.0',
158 silly addNameRange '1.1.1',
158 silly addNameRange '1.1.2',
158 silly addNameRange '1.1.3',
158 silly addNameRange '1.2.0',
158 silly addNameRange '1.3.0',
158 silly addNameRange '1.3.1',
158 silly addNameRange '1.3.2',
158 silly addNameRange '1.3.3',
158 silly addNameRange '1.3.4',
158 silly addNameRange '1.3.5' ] ]
159 silly addNamed [email protected]
160 verbose addNamed "1.3.5" is a plain semver version for ref
161 silly cache afterAdd [email protected]
162 verbose afterAdd /home/mike/.npm/ref/1.3.5/package/package.json not in flight; writing
163 verbose afterAdd /home/mike/.npm/ref/1.3.5/package/package.json written
164 silly fetchNamedPackageData aws4
165 silly mapToRegistry name aws4
166 silly mapToRegistry using default registry
167 silly mapToRegistry registry https://registry.npmjs.org/
168 silly mapToRegistry uri https://registry.npmjs.org/aws4
169 silly fetchNamedPackageData caseless
170 silly mapToRegistry name caseless
171 silly mapToRegistry using default registry
172 silly mapToRegistry registry https://registry.npmjs.org/
173 silly mapToRegistry uri https://registry.npmjs.org/caseless
174 silly fetchNamedPackageData combined-stream
175 silly mapToRegistry name combined-stream
176 silly mapToRegistry using default registry
177 silly mapToRegistry registry https://registry.npmjs.org/
178 silly mapToRegistry uri https://registry.npmjs.org/combined-stream
179 silly fetchNamedPackageData extend
180 silly mapToRegistry name extend
181 silly mapToRegistry using default registry
182 silly mapToRegistry registry https://registry.npmjs.org/
183 silly mapToRegistry uri https://registry.npmjs.org/extend
184 silly fetchNamedPackageData forever-agent
185 silly mapToRegistry name forever-agent
186 silly mapToRegistry using default registry
187 silly mapToRegistry registry https://registry.npmjs.org/
188 silly mapToRegistry uri https://registry.npmjs.org/forever-agent
189 silly fetchNamedPackageData is-typedarray
190 silly mapToRegistry name is-typedarray
191 silly mapToRegistry using default registry
192 silly mapToRegistry registry https://registry.npmjs.org/
193 silly mapToRegistry uri https://registry.npmjs.org/is-typedarray
194 silly fetchNamedPackageData isstream
195 silly mapToRegistry name isstream
196 silly mapToRegistry using default registry
197 silly mapToRegistry registry https://registry.npmjs.org/
198 silly mapToRegistry uri https://registry.npmjs.org/isstream
199 silly fetchNamedPackageData json-stringify-safe
200 silly mapToRegistry name json-stringify-safe
201 silly mapToRegistry using default registry
202 silly mapToRegistry registry https://registry.npmjs.org/
203 silly mapToRegistry uri https://registry.npmjs.org/json-stringify-safe
204 silly fetchNamedPackageData mime-types
205 silly mapToRegistry name mime-types
206 silly mapToRegistry using default registry
207 silly mapToRegistry registry https://registry.npmjs.org/
208 silly mapToRegistry uri https://registry.npmjs.org/mime-types
209 silly fetchNamedPackageData oauth-sign
210 silly mapToRegistry name oauth-sign
211 silly mapToRegistry using default registry
212 silly mapToRegistry registry https://registry.npmjs.org/
213 silly mapToRegistry uri https://registry.npmjs.org/oauth-sign
214 silly fetchNamedPackageData stringstream
215 silly mapToRegistry name stringstream
216 silly mapToRegistry using default registry
217 silly mapToRegistry registry https://registry.npmjs.org/
218 silly mapToRegistry uri https://registry.npmjs.org/stringstream
219 silly fetchNamedPackageData tough-cookie
220 silly mapToRegistry name tough-cookie
221 silly mapToRegistry using default registry
222 silly mapToRegistry registry https://registry.npmjs.org/
223 silly mapToRegistry uri https://registry.npmjs.org/tough-cookie
224 silly fetchNamedPackageData tunnel-agent
225 silly mapToRegistry name tunnel-agent
226 silly mapToRegistry using default registry
227 silly mapToRegistry registry https://registry.npmjs.org/
228 silly mapToRegistry uri https://registry.npmjs.org/tunnel-agent
229 silly fetchNamedPackageData uuid
230 silly mapToRegistry name uuid
231 silly mapToRegistry using default registry
232 silly mapToRegistry registry https://registry.npmjs.org/
233 silly mapToRegistry uri https://registry.npmjs.org/uuid
234 verbose request uri https://registry.npmjs.org/aws4
235 verbose request no auth needed
236 info attempt registry request try #1 at 9:16:38 AM
237 verbose etag "59e7ba90-11353"
238 verbose lastModified Wed, 18 Oct 2017 20:33:20 GMT
239 http request GET https://registry.npmjs.org/aws4
240 verbose request uri https://registry.npmjs.org/extend
241 verbose request no auth needed
242 info attempt registry request try #1 at 9:16:38 AM
243 verbose etag "5a9fb894-4205"
244 verbose lastModified Wed, 7 Mar 2018 10:01:56 GMT
245 http request GET https://registry.npmjs.org/extend
246 verbose request uri https://registry.npmjs.org/combined-stream
247 verbose request no auth needed
248 info attempt registry request try #1 at 9:16:38 AM
249 verbose etag "5a8312cb-73ab"
250 verbose lastModified Tue, 13 Feb 2018 16:31:07 GMT
251 http request GET https://registry.npmjs.org/combined-stream
252 verbose request uri https://registry.npmjs.org/caseless
253 verbose request no auth needed
254 info attempt registry request try #1 at 9:16:38 AM
255 verbose etag "5a5384c6-3859"
256 verbose lastModified Mon, 8 Jan 2018 14:48:38 GMT
257 http request GET https://registry.npmjs.org/caseless
258 verbose request uri https://registry.npmjs.org/forever-agent
259 verbose request no auth needed
260 info attempt registry request try #1 at 9:16:38 AM
261 verbose etag "5818cfd0-1f69"
262 verbose lastModified Tue, 1 Nov 2016 17:24:32 GMT
263 http request GET https://registry.npmjs.org/forever-agent
264 verbose request uri https://registry.npmjs.org/isstream
265 verbose request no auth needed
266 info attempt registry request try #1 at 9:16:38 AM
267 verbose etag "5a4472b7-1f5c"
268 verbose lastModified Thu, 28 Dec 2017 4:27:35 GMT
269 http request GET https://registry.npmjs.org/isstream
270 verbose request uri https://registry.npmjs.org/is-typedarray
271 verbose request no auth needed
272 info attempt registry request try #1 at 9:16:38 AM
273 verbose etag "585f1704-d82"
274 verbose lastModified Sun, 25 Dec 2016 0:47:00 GMT
275 http request GET https://registry.npmjs.org/is-typedarray
276 verbose request uri https://registry.npmjs.org/json-stringify-safe
277 verbose request no auth needed
278 info attempt registry request try #1 at 9:16:38 AM
279 verbose etag "5a9862b0-1cbf"
280 verbose lastModified Thu, 1 Mar 2018 20:29:36 GMT
281 http request GET https://registry.npmjs.org/json-stringify-safe
282 verbose request uri https://registry.npmjs.org/oauth-sign
283 verbose request no auth needed
284 info attempt registry request try #1 at 9:16:38 AM
285 verbose etag "5a3df41b-29a5"
286 verbose lastModified Sat, 23 Dec 2017 6:13:47 GMT
287 http request GET https://registry.npmjs.org/oauth-sign
288 verbose request uri https://registry.npmjs.org/stringstream
289 verbose request no auth needed
290 info attempt registry request try #1 at 9:16:38 AM
291 verbose etag "5a4476e3-199b"
292 verbose lastModified Thu, 28 Dec 2017 4:45:23 GMT
293 http request GET https://registry.npmjs.org/stringstream
294 verbose request uri https://registry.npmjs.org/mime-types
295 verbose request no auth needed
296 info attempt registry request try #1 at 9:16:38 AM
297 verbose etag "5ab131f5-10a66"
298 verbose lastModified Tue, 20 Mar 2018 16:08:21 GMT
299 http request GET https://registry.npmjs.org/mime-types
300 verbose request uri https://registry.npmjs.org/tunnel-agent
301 verbose request no auth needed
302 info attempt registry request try #1 at 9:16:38 AM
303 verbose etag "5a44794b-2907"
304 verbose lastModified Thu, 28 Dec 2017 4:55:39 GMT
305 http request GET https://registry.npmjs.org/tunnel-agent
306 verbose request uri https://registry.npmjs.org/tough-cookie
307 verbose request no auth needed
308 info attempt registry request try #1 at 9:16:38 AM
309 verbose etag "5a948a46-11991"
310 verbose lastModified Mon, 26 Feb 2018 22:29:26 GMT
311 http request GET https://registry.npmjs.org/tough-cookie
312 verbose request uri https://registry.npmjs.org/uuid
313 verbose request no auth needed
314 info attempt registry request try #1 at 9:16:38 AM
315 verbose etag "5ab010d1-84fe"
316 verbose lastModified Mon, 19 Mar 2018 19:34:41 GMT
317 http request GET https://registry.npmjs.org/uuid
318 http 304 https://registry.npmjs.org/aws4
319 verbose headers { date: 'Fri, 06 Apr 2018 13:16:38 GMT',
319 verbose headers via: '1.1 varnish',
319 verbose headers 'cache-control': 'max-age=300',
319 verbose headers etag: '"59e7ba90-11353"',
319 verbose headers age: '11750',
319 verbose headers connection: 'keep-alive',
319 verbose headers 'x-served-by': 'cache-dca17735-DCA',
319 verbose headers 'x-cache': 'HIT',
319 verbose headers 'x-cache-hits': '212',
319 verbose headers 'x-timer': 'S1523020598.235379,VS0,VE0',
319 verbose headers vary: 'Accept-Encoding, Accept' }
320 silly get cb [ 304,
320 silly get { date: 'Fri, 06 Apr 2018 13:16:38 GMT',
320 silly get via: '1.1 varnish',
320 silly get 'cache-control': 'max-age=300',
320 silly get etag: '"59e7ba90-11353"',
320 silly get age: '11750',
320 silly get connection: 'keep-alive',
320 silly get 'x-served-by': 'cache-dca17735-DCA',
320 silly get 'x-cache': 'HIT',
320 silly get 'x-cache-hits': '212',
320 silly get 'x-timer': 'S1523020598.235379,VS0,VE0',
320 silly get vary: 'Accept-Encoding, Accept' } ]
321 verbose etag https://registry.npmjs.org/aws4 from cache
322 verbose get saving aws4 to /home/mike/.npm/registry.npmjs.org/aws4/.cache.json
323 http 304 https://registry.npmjs.org/combined-stream
324 verbose headers { date: 'Fri, 06 Apr 2018 13:16:38 GMT',
324 verbose headers via: '1.1 varnish',
324 verbose headers 'cache-control': 'max-age=300',
324 verbose headers etag: '"5a8312cb-73ab"',
324 verbose headers age: '14374',
324 verbose headers connection: 'keep-alive',
324 verbose headers 'x-served-by': 'cache-dca17734-DCA',
324 verbose headers 'x-cache': 'HIT',
324 verbose headers 'x-cache-hits': '303',
324 verbose headers 'x-timer': 'S1523020598.240883,VS0,VE0',
324 verbose headers vary: 'Accept-Encoding, Accept' }
325 silly get cb [ 304,
325 silly get { date: 'Fri, 06 Apr 2018 13:16:38 GMT',
325 silly get via: '1.1 varnish',
325 silly get 'cache-control': 'max-age=300',
325 silly get etag: '"5a8312cb-73ab"',
325 silly get age: '14374',
325 silly get connection: 'keep-alive',
325 silly get 'x-served-by': 'cache-dca17734-DCA',
325 silly get 'x-cache': 'HIT',
325 silly get 'x-cache-hits': '303',
325 silly get 'x-timer': 'S1523020598.240883,VS0,VE0',
325 silly get vary: 'Accept-Encoding, Accept' } ]
326 verbose etag https://registry.npmjs.org/combined-stream from cache
327 verbose get saving combined-stream to /home/mike/.npm/registry.npmjs.org/combined-stream/.cache.json
328 http 304 https://registry.npmjs.org/caseless
329 verbose headers { date: 'Fri, 06 Apr 2018 13:16:38 GMT',
329 verbose headers via: '1.1 varnish',
329 verbose headers 'cache-control': 'max-age=300',
329 verbose headers etag: '"5a5384c6-3859"',
329 verbose headers age: '2183',
329 verbose headers connection: 'keep-alive',
329 verbose headers 'x-served-by': 'cache-dca17743-DCA',
329 verbose headers 'x-cache': 'HIT',
329 verbose headers 'x-cache-hits': '56',
329 verbose headers 'x-timer': 'S1523020598.240580,VS0,VE0',
329 verbose headers vary: 'Accept-Encoding, Accept' }
330 silly get cb [ 304,
330 silly get { date: 'Fri, 06 Apr 2018 13:16:38 GMT',
330 silly get via: '1.1 varnish',
330 silly get 'cache-control': 'max-age=300',
330 silly get etag: '"5a5384c6-3859"',
330 silly get age: '2183',
330 silly get connection: 'keep-alive',
330 silly get 'x-served-by': 'cache-dca17743-DCA',
330 silly get 'x-cache': 'HIT',
330 silly get 'x-cache-hits': '56',
330 silly get 'x-timer': 'S1523020598.240580,VS0,VE0',
330 silly get vary: 'Accept-Encoding, Accept' } ]
331 verbose etag https://registry.npmjs.org/caseless from cache
332 verbose get saving caseless to /home/mike/.npm/registry.npmjs.org/caseless/.cache.json
333 http 304 https://registry.npmjs.org/extend
334 verbose headers { date: 'Fri, 06 Apr 2018 13:16:38 GMT',
334 verbose headers via: '1.1 varnish',
334 verbose headers 'cache-control': 'max-age=300',
334 verbose headers etag: '"5a9fb894-4205"',
334 verbose headers age: '11033',
334 verbose headers connection: 'keep-alive',
334 verbose headers 'x-served-by': 'cache-dca17727-DCA',
334 verbose headers 'x-cache': 'HIT',
334 verbose headers 'x-cache-hits': '243',
334 verbose headers 'x-timer': 'S1523020598.246923,VS0,VE0',
334 verbose headers vary: 'Accept-Encoding, Accept' }
335 silly get cb [ 304,
335 silly get { date: 'Fri, 06 Apr 2018 13:16:38 GMT',
335 silly get via: '1.1 varnish',
335 silly get 'cache-control': 'max-age=300',
335 silly get etag: '"5a9fb894-4205"',
335 silly get age: '11033',
335 silly get connection: 'keep-alive',
335 silly get 'x-served-by': 'cache-dca17727-DCA',
335 silly get 'x-cache': 'HIT',
335 silly get 'x-cache-hits': '243',
335 silly get 'x-timer': 'S1523020598.246923,VS0,VE0',
335 silly get vary: 'Accept-Encoding, Accept' } ]
336 verbose etag https://registry.npmjs.org/extend from cache
337 verbose get saving extend to /home/mike/.npm/registry.npmjs.org/extend/.cache.json
338 silly resolveWithNewModule [email protected] checking installable status
339 silly cache add args [ 'aws4@^1.6.0', null ]
340 verbose cache add spec aws4@^1.6.0
341 silly cache add parsed spec Result {
341 silly cache add raw: 'aws4@^1.6.0',
341 silly cache add scope: null,
341 silly cache add name: 'aws4',
341 silly cache add rawSpec: '^1.6.0',
341 silly cache add spec: '>=1.6.0 <2.0.0',
341 silly cache add type: 'range' }
342 silly addNamed aws4@>=1.6.0 <2.0.0
343 verbose addNamed ">=1.6.0 <2.0.0" is a valid semver range for aws4
344 silly addNameRange { name: 'aws4', range: '>=1.6.0 <2.0.0', hasData: false }
345 silly mapToRegistry name aws4
346 silly mapToRegistry using default registry
347 silly mapToRegistry registry https://registry.npmjs.org/
348 silly mapToRegistry uri https://registry.npmjs.org/aws4
349 verbose addNameRange registry:https://registry.npmjs.org/aws4 not in flight; fetching
350 silly resolveWithNewModule [email protected] checking installable status
351 silly cache add args [ 'combined-stream@~1.0.5', null ]
352 verbose cache add spec combined-stream@~1.0.5
353 silly cache add parsed spec Result {
353 silly cache add raw: 'combined-stream@~1.0.5',
353 silly cache add scope: null,
353 silly cache add name: 'combined-stream',
353 silly cache add rawSpec: '~1.0.5',
353 silly cache add spec: '>=1.0.5 <1.1.0',
353 silly cache add type: 'range' }
354 silly addNamed combined-stream@>=1.0.5 <1.1.0
355 verbose addNamed ">=1.0.5 <1.1.0" is a valid semver range for combined-stream
356 silly addNameRange { name: 'combined-stream',
356 silly addNameRange range: '>=1.0.5 <1.1.0',
356 silly addNameRange hasData: false }
357 silly mapToRegistry name combined-stream
358 silly mapToRegistry using default registry
359 silly mapToRegistry registry https://registry.npmjs.org/
360 silly mapToRegistry uri https://registry.npmjs.org/combined-stream
361 verbose addNameRange registry:https://registry.npmjs.org/combined-stream not in flight; fetching
362 silly resolveWithNewModule [email protected] checking installable status
363 silly cache add args [ 'caseless@~0.12.0', null ]
364 verbose cache add spec caseless@~0.12.0
365 silly cache add parsed spec Result {
365 silly cache add raw: 'caseless@~0.12.0',
365 silly cache add scope: null,
365 silly cache add name: 'caseless',
365 silly cache add rawSpec: '~0.12.0',
365 silly cache add spec: '>=0.12.0 <0.13.0',
365 silly cache add type: 'range' }
366 silly addNamed caseless@>=0.12.0 <0.13.0
367 verbose addNamed ">=0.12.0 <0.13.0" is a valid semver range for caseless
368 silly addNameRange { name: 'caseless', range: '>=0.12.0 <0.13.0', hasData: false }
369 silly mapToRegistry name caseless
370 silly mapToRegistry using default registry
371 silly mapToRegistry registry https://registry.npmjs.org/
372 silly mapToRegistry uri https://registry.npmjs.org/caseless
373 verbose addNameRange registry:https://registry.npmjs.org/caseless not in flight; fetching
374 silly resolveWithNewModule [email protected] checking installable status
375 silly cache add args [ 'extend@~3.0.1', null ]
376 verbose cache add spec extend@~3.0.1
377 silly cache add parsed spec Result {
377 silly cache add raw: 'extend@~3.0.1',
377 silly cache add scope: null,
377 silly cache add name: 'extend',
377 silly cache add rawSpec: '~3.0.1',
377 silly cache add spec: '>=3.0.1 <3.1.0',
377 silly cache add type: 'range' }
378 silly addNamed extend@>=3.0.1 <3.1.0
379 verbose addNamed ">=3.0.1 <3.1.0" is a valid semver range for extend
380 silly addNameRange { name: 'extend', range: '>=3.0.1 <3.1.0', hasData: false }
381 silly mapToRegistry name extend
382 silly mapToRegistry using default registry
383 silly mapToRegistry registry https://registry.npmjs.org/
384 silly mapToRegistry uri https://registry.npmjs.org/extend
385 verbose addNameRange registry:https://registry.npmjs.org/extend not in flight; fetching
386 verbose get https://registry.npmjs.org/combined-stream not expired, no request
387 silly addNameRange number 2 { name: 'combined-stream',
387 silly addNameRange range: '>=1.0.5 <1.1.0',
387 silly addNameRange hasData: true }
388 silly addNameRange versions [ 'combined-stream',
388 silly addNameRange [ '0.0.0',
388 silly addNameRange '0.0.1',
388 silly addNameRange '0.0.2',
388 silly addNameRange '0.0.3',
388 silly addNameRange '0.0.4',
388 silly addNameRange '0.0.5',
388 silly addNameRange '0.0.7',
388 silly addNameRange '1.0.0',
388 silly addNameRange '1.0.1',
388 silly addNameRange '1.0.2',
388 silly addNameRange '1.0.3',
388 silly addNameRange '1.0.4',
388 silly addNameRange '1.0.5',
388 silly addNameRange '1.0.6-rc1',
388 silly addNameRange '1.0.6' ] ]
389 silly addNamed [email protected]
390 verbose addNamed "1.0.6" is a plain semver version for combined-stream
391 verbose get https://registry.npmjs.org/extend not expired, no request
392 silly addNameRange number 2 { name: 'extend', range: '>=3.0.1 <3.1.0', hasData: true }
393 silly addNameRange versions [ 'extend',
393 silly addNameRange [ '1.0.0',
393 silly addNameRange '1.1.0',
393 silly addNameRange '1.1.1',
393 silly addNameRange '1.1.3',
393 silly addNameRange '1.2.0',
393 silly addNameRange '1.2.1',
393 silly addNameRange '1.3.0',
393 silly addNameRange '2.0.0',
393 silly addNameRange '2.0.1',
393 silly addNameRange '3.0.0',
393 silly addNameRange '3.0.1' ] ]
394 silly addNamed [email protected]
395 verbose addNamed "3.0.1" is a plain semver version for extend
396 verbose get https://registry.npmjs.org/caseless not expired, no request
397 silly addNameRange number 2 { name: 'caseless', range: '>=0.12.0 <0.13.0', hasData: true }
398 silly addNameRange versions [ 'caseless',
398 silly addNameRange [ '0.1.0',
398 silly addNameRange '0.2.0',
398 silly addNameRange '0.3.0',
398 silly addNameRange '0.4.0',
398 silly addNameRange '0.5.0',
398 silly addNameRange '0.6.0',
398 silly addNameRange '0.7.0',
398 silly addNameRange '0.8.0',
398 silly addNameRange '0.9.0',
398 silly addNameRange '0.10.0',
398 silly addNameRange '0.11.0',
398 silly addNameRange '0.12.0' ] ]
399 silly addNamed [email protected]
400 verbose addNamed "0.12.0" is a plain semver version for caseless
401 verbose get https://registry.npmjs.org/aws4 not expired, no request
402 silly addNameRange number 2 { name: 'aws4', range: '>=1.6.0 <2.0.0', hasData: true }
403 silly addNameRange versions [ 'aws4',
403 silly addNameRange [ '0.0.1',
403 silly addNameRange '0.1.0',
403 silly addNameRange '0.1.1',
403 silly addNameRange '0.1.2',
403 silly addNameRange '0.1.3',
403 silly addNameRange '0.1.4',
403 silly addNameRange '0.1.5',
403 silly addNameRange '0.1.6',
403 silly addNameRange '0.1.7',
403 silly addNameRange '0.1.8',
403 silly addNameRange '0.1.9',
403 silly addNameRange '0.1.10',
403 silly addNameRange '0.1.12',
403 silly addNameRange '0.2.0',
403 silly addNameRange '0.2.1',
403 silly addNameRange '0.2.2',
403 silly addNameRange '0.2.3',
403 silly addNameRange '0.3.0',
403 silly addNameRange '0.4.0',
403 silly addNameRange '0.4.1',
403 silly addNameRange '0.4.2',
403 silly addNameRange '0.5.0',
403 silly addNameRange '0.5.1',
403 silly addNameRange '1.0.0',
403 silly addNameRange '1.0.1',
403 silly addNameRange '1.0.2',
403 silly addNameRange '1.0.3',
403 silly addNameRange '1.0.4',
403 silly addNameRange '1.1.0',
403 silly addNameRange '1.2.0',
403 silly addNameRange '1.2.1',
403 silly addNameRange '1.3.1',
403 silly addNameRange '1.3.2',
403 silly addNameRange '1.4.0',
403 silly addNameRange '1.4.1',
403 silly addNameRange '1.5.0',
403 silly addNameRange '1.6.0' ] ]
404 silly addNamed [email protected]
405 verbose addNamed "1.6.0" is a plain semver version for aws4
406 http 304 https://registry.npmjs.org/forever-agent
407 verbose headers { date: 'Fri, 06 Apr 2018 13:16:38 GMT',
407 verbose headers via: '1.1 varnish',
407 verbose headers 'cache-control': 'max-age=300',
407 verbose headers etag: '"5818cfd0-1f69"',
407 verbose headers age: '11439',
407 verbose headers connection: 'keep-alive',
407 verbose headers 'x-served-by': 'cache-dca17725-DCA',
407 verbose headers 'x-cache': 'HIT',
407 verbose headers 'x-cache-hits': '221',
407 verbose headers 'x-timer': 'S1523020598.273580,VS0,VE0',
407 verbose headers vary: 'Accept-Encoding, Accept' }
408 silly get cb [ 304,
408 silly get { date: 'Fri, 06 Apr 2018 13:16:38 GMT',
408 silly get via: '1.1 varnish',
408 silly get 'cache-control': 'max-age=300',
408 silly get etag: '"5818cfd0-1f69"',
408 silly get age: '11439',
408 silly get connection: 'keep-alive',
408 silly get 'x-served-by': 'cache-dca17725-DCA',
408 silly get 'x-cache': 'HIT',
408 silly get 'x-cache-hits': '221',
408 silly get 'x-timer': 'S1523020598.273580,VS0,VE0',
408 silly get vary: 'Accept-Encoding, Accept' } ]
409 verbose etag https://registry.npmjs.org/forever-agent from cache
410 verbose get saving forever-agent to /home/mike/.npm/registry.npmjs.org/forever-agent/.cache.json
411 silly cache afterAdd [email protected]
412 verbose afterAdd /home/mike/.npm/combined-stream/1.0.6/package/package.json not in flight; writing
413 silly cache afterAdd [email protected]
414 verbose afterAdd /home/mike/.npm/extend/3.0.1/package/package.json not in flight; writing
415 silly cache afterAdd [email protected]
416 verbose afterAdd /home/mike/.npm/caseless/0.12.0/package/package.json not in flight; writing
417 silly cache afterAdd [email protected]
418 verbose afterAdd /home/mike/.npm/aws4/1.6.0/package/package.json not in flight; writing
419 silly resolveWithNewModule [email protected] checking installable status
420 silly cache add args [ 'forever-agent@~0.6.1', null ]
421 verbose cache add spec forever-agent@~0.6.1
422 silly cache add parsed spec Result {
422 silly cache add raw: 'forever-agent@~0.6.1',
422 silly cache add scope: null,
422 silly cache add name: 'forever-agent',
422 silly cache add rawSpec: '~0.6.1',
422 silly cache add spec: '>=0.6.1 <0.7.0',
422 silly cache add type: 'range' }
423 silly addNamed forever-agent@>=0.6.1 <0.7.0
424 verbose addNamed ">=0.6.1 <0.7.0" is a valid semver range for forever-agent
425 silly addNameRange { name: 'forever-agent',
425 silly addNameRange range: '>=0.6.1 <0.7.0',
425 silly addNameRange hasData: false }
426 silly mapToRegistry name forever-agent
427 silly mapToRegistry using default registry
428 silly mapToRegistry registry https://registry.npmjs.org/
429 silly mapToRegistry uri https://registry.npmjs.org/forever-agent
430 verbose addNameRange registry:https://registry.npmjs.org/forever-agent not in flight; fetching
431 verbose afterAdd /home/mike/.npm/combined-stream/1.0.6/package/package.json written
432 verbose afterAdd /home/mike/.npm/extend/3.0.1/package/package.json written
433 verbose afterAdd /home/mike/.npm/aws4/1.6.0/package/package.json written
434 verbose afterAdd /home/mike/.npm/caseless/0.12.0/package/package.json written
435 http 304 https://registry.npmjs.org/json-stringify-safe
436 verbose headers { date: 'Fri, 06 Apr 2018 13:16:38 GMT',
436 verbose headers via: '1.1 varnish',
436 verbose headers 'cache-control': 'max-age=300',
436 verbose headers etag: '"5a9862b0-1cbf"',
436 verbose headers age: '2312',
436 verbose headers connection: 'keep-alive',
436 verbose headers 'x-served-by': 'cache-dca17742-DCA',
436 verbose headers 'x-cache': 'HIT',
436 verbose headers 'x-cache-hits': '85',
436 verbose headers 'x-timer': 'S1523020598.289906,VS0,VE0',
436 verbose headers vary: 'Accept-Encoding, Accept' }
437 silly get cb [ 304,
437 silly get { date: 'Fri, 06 Apr 2018 13:16:38 GMT',
437 silly get via: '1.1 varnish',
437 silly get 'cache-control': 'max-age=300',
437 silly get etag: '"5a9862b0-1cbf"',
437 silly get age: '2312',
437 silly get connection: 'keep-alive',
437 silly get 'x-served-by': 'cache-dca17742-DCA',
437 silly get 'x-cache': 'HIT',
437 silly get 'x-cache-hits': '85',
437 silly get 'x-timer': 'S1523020598.289906,VS0,VE0',
437 silly get vary: 'Accept-Encoding, Accept' } ]
438 verbose etag https://registry.npmjs.org/json-stringify-safe from cache
439 verbose get saving json-stringify-safe to /home/mike/.npm/registry.npmjs.org/json-stringify-safe/.cache.json
440 http 304 https://registry.npmjs.org/oauth-sign
441 verbose headers { date: 'Fri, 06 Apr 2018 13:16:38 GMT',
441 verbose headers via: '1.1 varnish',
441 verbose headers 'cache-control': 'max-age=300',
441 verbose headers etag: '"5a3df41b-29a5"',
441 verbose headers age: '10970',
441 verbose headers connection: 'keep-alive',
441 verbose headers 'x-served-by': 'cache-dca17733-DCA',
441 verbose headers 'x-cache': 'HIT',
441 verbose headers 'x-cache-hits': '206',
441 verbose headers 'x-timer': 'S1523020598.289718,VS0,VE0',
441 verbose headers vary: 'Accept-Encoding, Accept' }
442 silly get cb [ 304,
442 silly get { date: 'Fri, 06 Apr 2018 13:16:38 GMT',
442 silly get via: '1.1 varnish',
442 silly get 'cache-control': 'max-age=300',
442 silly get etag: '"5a3df41b-29a5"',
442 silly get age: '10970',
442 silly get connection: 'keep-alive',
442 silly get 'x-served-by': 'cache-dca17733-DCA',
442 silly get 'x-cache': 'HIT',
442 silly get 'x-cache-hits': '206',
442 silly get 'x-timer': 'S1523020598.289718,VS0,VE0',
442 silly get vary: 'Accept-Encoding, Accept' } ]
443 verbose etag https://registry.npmjs.org/oauth-sign from cache
444 verbose get saving oauth-sign to /home/mike/.npm/registry.npmjs.org/oauth-sign/.cache.json
445 http 304 https://registry.npmjs.org/isstream
446 verbose headers { date: 'Fri, 06 Apr 2018 13:16:38 GMT',
446 verbose headers via: '1.1 varnish',
446 verbose headers 'cache-control': 'max-age=300',
446 verbose headers etag: '"5a4472b7-1f5c"',
446 verbose headers age: '9189',
446 verbose headers connection: 'keep-alive',
446 verbose headers 'x-served-by': 'cache-dca17740-DCA',
446 verbose headers 'x-cache': 'HIT',
446 verbose headers 'x-cache-hits': '193',
446 verbose headers 'x-timer': 'S1523020598.289898,VS0,VE0',
446 verbose headers vary: 'Accept-Encoding, Accept' }
447 silly get cb [ 304,
447 silly get { date: 'Fri, 06 Apr 2018 13:16:38 GMT',
447 silly get via: '1.1 varnish',
447 silly get 'cache-control': 'max-age=300',
447 silly get etag: '"5a4472b7-1f5c"',
447 silly get age: '9189',
447 silly get connection: 'keep-alive',
447 silly get 'x-served-by': 'cache-dca17740-DCA',
447 silly get 'x-cache': 'HIT',
447 silly get 'x-cache-hits': '193',
447 silly get 'x-timer': 'S1523020598.289898,VS0,VE0',
447 silly get vary: 'Accept-Encoding, Accept' } ]
448 verbose etag https://registry.npmjs.org/isstream from cache
449 verbose get saving isstream to /home/mike/.npm/registry.npmjs.org/isstream/.cache.json
450 http 304 https://registry.npmjs.org/is-typedarray
451 verbose headers { date: 'Fri, 06 Apr 2018 13:16:38 GMT',
451 verbose headers via: '1.1 varnish',
451 verbose headers 'cache-control': 'max-age=300',
451 verbose headers etag: '"585f1704-d82"',
451 verbose headers age: '11156',
451 verbose headers connection: 'keep-alive',
451 verbose headers 'x-served-by': 'cache-dca17732-DCA',
451 verbose headers 'x-cache': 'HIT',
451 verbose headers 'x-cache-hits': '194',
451 verbose headers 'x-timer': 'S1523020598.290875,VS0,VE0',
451 verbose headers vary: 'Accept-Encoding, Accept' }
452 silly get cb [ 304,
452 silly get { date: 'Fri, 06 Apr 2018 13:16:38 GMT',
452 silly get via: '1.1 varnish',
452 silly get 'cache-control': 'max-age=300',
452 silly get etag: '"585f1704-d82"',
452 silly get age: '11156',
452 silly get connection: 'keep-alive',
452 silly get 'x-served-by': 'cache-dca17732-DCA',
452 silly get 'x-cache': 'HIT',
452 silly get 'x-cache-hits': '194',
452 silly get 'x-timer': 'S1523020598.290875,VS0,VE0',
452 silly get vary: 'Accept-Encoding, Accept' } ]
453 verbose etag https://registry.npmjs.org/is-typedarray from cache
454 verbose get saving is-typedarray to /home/mike/.npm/registry.npmjs.org/is-typedarray/.cache.json
455 http 304 https://registry.npmjs.org/stringstream
456 verbose headers { date: 'Fri, 06 Apr 2018 13:16:38 GMT',
456 verbose headers via: '1.1 varnish',
456 verbose headers 'cache-control': 'max-age=300',
456 verbose headers etag: '"5a4476e3-199b"',
456 verbose headers age: '9171',
456 verbose headers connection: 'keep-alive',
456 verbose headers 'x-served-by': 'cache-dca17739-DCA',
456 verbose headers 'x-cache': 'HIT',
456 verbose headers 'x-cache-hits': '170',
456 verbose headers 'x-timer': 'S1523020598.305502,VS0,VE0',
456 verbose headers vary: 'Accept-Encoding, Accept' }
457 silly get cb [ 304,
457 silly get { date: 'Fri, 06 Apr 2018 13:16:38 GMT',
457 silly get via: '1.1 varnish',
457 silly get 'cache-control': 'max-age=300',
457 silly get etag: '"5a4476e3-199b"',
457 silly get age: '9171',
457 silly get connection: 'keep-alive',
457 silly get 'x-served-by': 'cache-dca17739-DCA',
457 silly get 'x-cache': 'HIT',
457 silly get 'x-cache-hits': '170',
457 silly get 'x-timer': 'S1523020598.305502,VS0,VE0',
457 silly get vary: 'Accept-Encoding, Accept' } ]
458 verbose etag https://registry.npmjs.org/stringstream from cache
459 verbose get saving stringstream to /home/mike/.npm/registry.npmjs.org/stringstream/.cache.json
460 http 304 https://registry.npmjs.org/mime-types
461 verbose headers { date: 'Fri, 06 Apr 2018 13:16:38 GMT',
461 verbose headers via: '1.1 varnish',
461 verbose headers 'cache-control': 'max-age=300',
461 verbose headers etag: '"5ab131f5-10a66"',
461 verbose headers age: '3869',
461 verbose headers connection: 'keep-alive',
461 verbose headers 'x-served-by': 'cache-dca17720-DCA',
461 verbose headers 'x-cache': 'HIT',
461 verbose headers 'x-cache-hits': '93',
461 verbose headers 'x-timer': 'S1523020598.305589,VS0,VE0',
461 verbose headers vary: 'Accept-Encoding, Accept' }
462 silly get cb [ 304,
462 silly get { date: 'Fri, 06 Apr 2018 13:16:38 GMT',
462 silly get via: '1.1 varnish',
462 silly get 'cache-control': 'max-age=300',
462 silly get etag: '"5ab131f5-10a66"',
462 silly get age: '3869',
462 silly get connection: 'keep-alive',
462 silly get 'x-served-by': 'cache-dca17720-DCA',
462 silly get 'x-cache': 'HIT',
462 silly get 'x-cache-hits': '93',
462 silly get 'x-timer': 'S1523020598.305589,VS0,VE0',
462 silly get vary: 'Accept-Encoding, Accept' } ]
463 verbose etag https://registry.npmjs.org/mime-types from cache
464 verbose get saving mime-types to /home/mike/.npm/registry.npmjs.org/mime-types/.cache.json
465 verbose get https://registry.npmjs.org/forever-agent not expired, no request
466 silly addNameRange number 2 { name: 'forever-agent', range: '>=0.6.1 <0.7.0', hasData: true }
467 silly addNameRange versions [ 'forever-agent',
467 silly addNameRange [ '0.2.0', '0.3.0', '0.4.0', '0.5.0', '0.5.2', '0.6.0', '0.6.1' ] ]
468 silly addNamed [email protected]
469 verbose addNamed "0.6.1" is a plain semver version for forever-agent
470 silly resolveWithNewModule [email protected] checking installable status
471 silly cache add args [ 'oauth-sign@~0.8.2', null ]
472 verbose cache add spec oauth-sign@~0.8.2
473 silly cache add parsed spec Result {
473 silly cache add raw: 'oauth-sign@~0.8.2',
473 silly cache add scope: null,
473 silly cache add name: 'oauth-sign',
473 silly cache add rawSpec: '~0.8.2',
473 silly cache add spec: '>=0.8.2 <0.9.0',
473 silly cache add type: 'range' }