-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnpm-debug.log
15067 lines (15067 loc) · 953 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', 'install', 'gulp-sass' ]
2 info using [email protected]
3 info using [email protected]
4 silly loadCurrentTree Starting
5 silly install loadCurrentTree
6 silly install readLocalPackageData
7 silly fetchPackageMetaData gulp-sass@~0.7.2
8 silly fetchNamedPackageData gulp-sass
9 silly mapToRegistry name gulp-sass
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry data Result {
12 silly mapToRegistry raw: 'gulp-sass',
12 silly mapToRegistry scope: null,
12 silly mapToRegistry escapedName: 'gulp-sass',
12 silly mapToRegistry name: 'gulp-sass',
12 silly mapToRegistry rawSpec: '',
12 silly mapToRegistry spec: 'latest',
12 silly mapToRegistry type: 'tag' }
13 silly mapToRegistry uri https://registry.npmjs.org/gulp-sass
14 verbose request uri https://registry.npmjs.org/gulp-sass
15 verbose request no auth needed
16 info attempt registry request try #1 at 5:42:56 AM
17 verbose request id d625ebcb8883d0e7
18 verbose etag W/"58f5470b-e7a5"
19 verbose lastModified Mon, 17 Apr 2017 22:51:55 GMT
20 http request GET https://registry.npmjs.org/gulp-sass
21 http 304 https://registry.npmjs.org/gulp-sass
22 verbose headers { date: 'Tue, 18 Apr 2017 05:42:58 GMT',
22 verbose headers via: '1.1 varnish',
22 verbose headers 'cache-control': 'max-age=300',
22 verbose headers etag: 'W/"58f5470b-e7a5"',
22 verbose headers age: '0',
22 verbose headers connection: 'keep-alive',
22 verbose headers 'x-served-by': 'cache-lhr6323-LHR',
22 verbose headers 'x-cache': 'HIT',
22 verbose headers 'x-cache-hits': '1',
22 verbose headers 'x-timer': 'S1492494179.663809,VS0,VE106',
22 verbose headers vary: 'Accept-Encoding' }
23 silly get cb [ 304,
23 silly get { date: 'Tue, 18 Apr 2017 05:42:58 GMT',
23 silly get via: '1.1 varnish',
23 silly get 'cache-control': 'max-age=300',
23 silly get etag: 'W/"58f5470b-e7a5"',
23 silly get age: '0',
23 silly get connection: 'keep-alive',
23 silly get 'x-served-by': 'cache-lhr6323-LHR',
23 silly get 'x-cache': 'HIT',
23 silly get 'x-cache-hits': '1',
23 silly get 'x-timer': 'S1492494179.663809,VS0,VE106',
23 silly get vary: 'Accept-Encoding' } ]
24 verbose etag https://registry.npmjs.org/gulp-sass from cache
25 verbose get saving gulp-sass to /home/vagrant/.npm/registry.npmjs.org/gulp-sass/.cache.json
26 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing
27 silly install normalizeTree
28 silly loadCurrentTree Finishing
29 silly loadIdealTree Starting
30 silly install loadIdealTree
31 silly cloneCurrentTree Starting
32 silly install cloneCurrentTreeToIdealTree
33 silly cloneCurrentTree Finishing
34 silly loadShrinkwrap Starting
35 silly install loadShrinkwrap
36 silly loadShrinkwrap Finishing
37 silly loadAllDepsIntoIdealTree Starting
38 silly install loadAllDepsIntoIdealTree
39 silly resolveWithNewModule [email protected] checking installable status
40 silly cache add args [ 'gulp-sass@~0.7.2', null ]
41 verbose cache add spec gulp-sass@~0.7.2
42 silly cache add parsed spec Result {
42 silly cache add raw: 'gulp-sass@~0.7.2',
42 silly cache add scope: null,
42 silly cache add escapedName: 'gulp-sass',
42 silly cache add name: 'gulp-sass',
42 silly cache add rawSpec: '~0.7.2',
42 silly cache add spec: '>=0.7.2 <0.8.0',
42 silly cache add type: 'range' }
43 silly addNamed gulp-sass@>=0.7.2 <0.8.0
44 verbose addNamed ">=0.7.2 <0.8.0" is a valid semver range for gulp-sass
45 silly addNameRange { name: 'gulp-sass', range: '>=0.7.2 <0.8.0', hasData: false }
46 silly mapToRegistry name gulp-sass
47 silly mapToRegistry using default registry
48 silly mapToRegistry registry https://registry.npmjs.org/
49 silly mapToRegistry data Result {
49 silly mapToRegistry raw: 'gulp-sass',
49 silly mapToRegistry scope: null,
49 silly mapToRegistry escapedName: 'gulp-sass',
49 silly mapToRegistry name: 'gulp-sass',
49 silly mapToRegistry rawSpec: '',
49 silly mapToRegistry spec: 'latest',
49 silly mapToRegistry type: 'tag' }
50 silly mapToRegistry uri https://registry.npmjs.org/gulp-sass
51 verbose addNameRange registry:https://registry.npmjs.org/gulp-sass not in flight; fetching
52 verbose get https://registry.npmjs.org/gulp-sass not expired, no request
53 silly addNameRange number 2 { name: 'gulp-sass', range: '>=0.7.2 <0.8.0', hasData: true }
54 silly addNameRange versions [ 'gulp-sass',
54 silly addNameRange [ '0.1.0',
54 silly addNameRange '0.2.1',
54 silly addNameRange '0.2.2',
54 silly addNameRange '0.2.3',
54 silly addNameRange '0.3.0',
54 silly addNameRange '0.4.0',
54 silly addNameRange '0.4.1',
54 silly addNameRange '0.5.0',
54 silly addNameRange '0.5.1',
54 silly addNameRange '0.5.2',
54 silly addNameRange '0.6.0',
54 silly addNameRange '0.7.0',
54 silly addNameRange '0.7.1',
54 silly addNameRange '0.7.2',
54 silly addNameRange '0.7.3',
54 silly addNameRange '1.0.0',
54 silly addNameRange '1.1.0',
54 silly addNameRange '1.2.0',
54 silly addNameRange '1.2.1',
54 silly addNameRange '1.2.2',
54 silly addNameRange '1.2.3',
54 silly addNameRange '1.2.4',
54 silly addNameRange '1.3.0',
54 silly addNameRange '1.3.1',
54 silly addNameRange '1.3.2',
54 silly addNameRange '1.3.3',
54 silly addNameRange '2.0.0-alpha.1',
54 silly addNameRange '2.0.0',
54 silly addNameRange '2.0.2',
54 silly addNameRange '2.0.3',
54 silly addNameRange '2.0.4',
54 silly addNameRange '2.1.0-beta',
54 silly addNameRange '2.1.0',
54 silly addNameRange '2.1.1',
54 silly addNameRange '2.2.0',
54 silly addNameRange '2.3.0-beta.1',
54 silly addNameRange '2.3.0',
54 silly addNameRange '2.3.1',
54 silly addNameRange '2.3.2',
54 silly addNameRange '3.0.0',
54 silly addNameRange '3.1.0' ] ]
55 silly addNamed [email protected]
56 verbose addNamed "0.7.3" is a plain semver version for gulp-sass
57 silly cache afterAdd [email protected]
58 verbose afterAdd /home/vagrant/.npm/gulp-sass/0.7.3/package/package.json not in flight; writing
59 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing
60 verbose afterAdd /home/vagrant/.npm/gulp-sass/0.7.3/package/package.json written
61 silly fetchNamedPackageData node-sass
62 silly mapToRegistry name node-sass
63 silly mapToRegistry using default registry
64 silly mapToRegistry registry https://registry.npmjs.org/
65 silly mapToRegistry data Result {
65 silly mapToRegistry raw: 'node-sass',
65 silly mapToRegistry scope: null,
65 silly mapToRegistry escapedName: 'node-sass',
65 silly mapToRegistry name: 'node-sass',
65 silly mapToRegistry rawSpec: '',
65 silly mapToRegistry spec: 'latest',
65 silly mapToRegistry type: 'tag' }
66 silly mapToRegistry uri https://registry.npmjs.org/node-sass
67 silly fetchNamedPackageData gulp-util
68 silly mapToRegistry name gulp-util
69 silly mapToRegistry using default registry
70 silly mapToRegistry registry https://registry.npmjs.org/
71 silly mapToRegistry data Result {
71 silly mapToRegistry raw: 'gulp-util',
71 silly mapToRegistry scope: null,
71 silly mapToRegistry escapedName: 'gulp-util',
71 silly mapToRegistry name: 'gulp-util',
71 silly mapToRegistry rawSpec: '',
71 silly mapToRegistry spec: 'latest',
71 silly mapToRegistry type: 'tag' }
72 silly mapToRegistry uri https://registry.npmjs.org/gulp-util
73 verbose request uri https://registry.npmjs.org/node-sass
74 verbose request no auth needed
75 info attempt registry request try #1 at 5:43:00 AM
76 verbose etag W/"58f286f7-3ca31"
77 verbose lastModified Sat, 15 Apr 2017 20:47:51 GMT
78 http request GET https://registry.npmjs.org/node-sass
79 verbose request uri https://registry.npmjs.org/gulp-util
80 verbose request no auth needed
81 info attempt registry request try #1 at 5:43:00 AM
82 verbose etag W/"58ef239f-fe3e"
83 verbose lastModified Thu, 13 Apr 2017 07:07:11 GMT
84 http request GET https://registry.npmjs.org/gulp-util
85 http 304 https://registry.npmjs.org/node-sass
86 verbose headers { date: 'Tue, 18 Apr 2017 05:42:59 GMT',
86 verbose headers via: '1.1 varnish',
86 verbose headers 'cache-control': 'max-age=300',
86 verbose headers etag: 'W/"58f286f7-3ca31"',
86 verbose headers age: '250',
86 verbose headers connection: 'keep-alive',
86 verbose headers 'x-served-by': 'cache-lhr6323-LHR',
86 verbose headers 'x-cache': 'HIT',
86 verbose headers 'x-cache-hits': '2',
86 verbose headers 'x-timer': 'S1492494180.784557,VS0,VE0',
86 verbose headers vary: 'Accept-Encoding' }
87 silly get cb [ 304,
87 silly get { date: 'Tue, 18 Apr 2017 05:42:59 GMT',
87 silly get via: '1.1 varnish',
87 silly get 'cache-control': 'max-age=300',
87 silly get etag: 'W/"58f286f7-3ca31"',
87 silly get age: '250',
87 silly get connection: 'keep-alive',
87 silly get 'x-served-by': 'cache-lhr6323-LHR',
87 silly get 'x-cache': 'HIT',
87 silly get 'x-cache-hits': '2',
87 silly get 'x-timer': 'S1492494180.784557,VS0,VE0',
87 silly get vary: 'Accept-Encoding' } ]
88 verbose etag https://registry.npmjs.org/node-sass from cache
89 verbose get saving node-sass to /home/vagrant/.npm/registry.npmjs.org/node-sass/.cache.json
90 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing
91 silly resolveWithNewModule [email protected] checking installable status
92 silly cache add args [ 'node-sass@^0.9', null ]
93 verbose cache add spec node-sass@^0.9
94 silly cache add parsed spec Result {
94 silly cache add raw: 'node-sass@^0.9',
94 silly cache add scope: null,
94 silly cache add escapedName: 'node-sass',
94 silly cache add name: 'node-sass',
94 silly cache add rawSpec: '^0.9',
94 silly cache add spec: '>=0.9.0 <0.10.0',
94 silly cache add type: 'range' }
95 silly addNamed node-sass@>=0.9.0 <0.10.0
96 verbose addNamed ">=0.9.0 <0.10.0" is a valid semver range for node-sass
97 silly addNameRange { name: 'node-sass', range: '>=0.9.0 <0.10.0', hasData: false }
98 silly mapToRegistry name node-sass
99 silly mapToRegistry using default registry
100 silly mapToRegistry registry https://registry.npmjs.org/
101 silly mapToRegistry data Result {
101 silly mapToRegistry raw: 'node-sass',
101 silly mapToRegistry scope: null,
101 silly mapToRegistry escapedName: 'node-sass',
101 silly mapToRegistry name: 'node-sass',
101 silly mapToRegistry rawSpec: '',
101 silly mapToRegistry spec: 'latest',
101 silly mapToRegistry type: 'tag' }
102 silly mapToRegistry uri https://registry.npmjs.org/node-sass
103 verbose addNameRange registry:https://registry.npmjs.org/node-sass not in flight; fetching
104 verbose get https://registry.npmjs.org/node-sass not expired, no request
105 silly addNameRange number 2 { name: 'node-sass', range: '>=0.9.0 <0.10.0', hasData: true }
106 silly addNameRange versions [ 'node-sass',
106 silly addNameRange [ '0.2.0',
106 silly addNameRange '0.2.1',
106 silly addNameRange '0.2.2',
106 silly addNameRange '0.2.3',
106 silly addNameRange '0.2.4',
106 silly addNameRange '0.2.5',
106 silly addNameRange '0.2.6',
106 silly addNameRange '0.3.0',
106 silly addNameRange '0.4.0',
106 silly addNameRange '0.4.1',
106 silly addNameRange '0.4.2',
106 silly addNameRange '0.4.3',
106 silly addNameRange '0.4.4',
106 silly addNameRange '0.5.0',
106 silly addNameRange '0.5.1',
106 silly addNameRange '0.5.2',
106 silly addNameRange '0.5.3',
106 silly addNameRange '0.5.4',
106 silly addNameRange '0.6.0',
106 silly addNameRange '0.6.1',
106 silly addNameRange '0.6.2',
106 silly addNameRange '0.6.3',
106 silly addNameRange '0.6.4',
106 silly addNameRange '0.6.5',
106 silly addNameRange '0.6.6',
106 silly addNameRange '0.6.7',
106 silly addNameRange '0.7.0-alpha',
106 silly addNameRange '0.7.0',
106 silly addNameRange '0.8.0',
106 silly addNameRange '0.8.1',
106 silly addNameRange '0.8.2',
106 silly addNameRange '0.8.3',
106 silly addNameRange '0.8.4',
106 silly addNameRange '0.8.5',
106 silly addNameRange '0.8.6',
106 silly addNameRange '0.9.0',
106 silly addNameRange '0.9.1',
106 silly addNameRange '0.9.2',
106 silly addNameRange '0.9.3',
106 silly addNameRange '0.9.4-rc1',
106 silly addNameRange '0.9.4',
106 silly addNameRange '0.9.5-rc1',
106 silly addNameRange '0.9.5',
106 silly addNameRange '0.9.6',
106 silly addNameRange '1.0.0',
106 silly addNameRange '1.0.1',
106 silly addNameRange '1.0.2-alpha',
106 silly addNameRange '1.0.2',
106 silly addNameRange '1.0.3',
106 silly addNameRange '1.1.0',
106 silly addNameRange '1.1.1',
106 silly addNameRange '1.1.2',
106 silly addNameRange '1.1.3',
106 silly addNameRange '1.1.4',
106 silly addNameRange '1.2.0',
106 silly addNameRange '1.2.1',
106 silly addNameRange '1.2.2',
106 silly addNameRange '1.2.3',
106 silly addNameRange '2.0.0-beta',
106 silly addNameRange '2.0.0',
106 silly addNameRange '2.0.1',
106 silly addNameRange '3.0.0-alpha.0',
106 silly addNameRange '3.0.0-beta.2',
106 silly addNameRange '3.0.0-beta.3',
106 silly addNameRange '3.0.0-beta.4',
106 silly addNameRange '2.1.0',
106 silly addNameRange '2.1.1',
106 silly addNameRange '3.0.0-beta.5',
106 silly addNameRange '3.0.0-beta.7',
106 silly addNameRange '3.0.0',
106 silly addNameRange '3.1.0',
106 silly addNameRange '3.1.1',
106 silly addNameRange '3.1.2',
106 silly addNameRange '3.2.0',
106 silly addNameRange '3.3.0',
106 silly addNameRange '3.3.1',
106 silly addNameRange '3.3.2',
106 silly addNameRange '3.3.3',
106 silly addNameRange '3.4.0-beta1',
106 silly addNameRange '3.4.0-beta.2',
106 silly addNameRange '3.4.0',
106 silly addNameRange '3.4.1',
106 silly addNameRange '3.4.2',
106 silly addNameRange '3.5.0-beta.1',
106 silly addNameRange '3.5.1',
106 silly addNameRange '3.5.2',
106 silly addNameRange '3.5.3',
106 silly addNameRange '3.6.0',
106 silly addNameRange '3.7.0',
106 silly addNameRange '3.8.0',
106 silly addNameRange '3.9.0',
106 silly addNameRange '3.9.1',
106 silly addNameRange '3.9.2',
106 silly addNameRange '3.9.3',
106 silly addNameRange '3.10.0',
106 silly addNameRange '3.10.0-1',
106 silly addNameRange '3.10.1',
106 silly addNameRange '3.11.0',
106 silly addNameRange '3.11.1',
106 silly addNameRange '3.11.2',
106 silly addNameRange ... 19 more items ] ]
107 silly addNamed [email protected]
108 verbose addNamed "0.9.6" is a plain semver version for node-sass
109 silly cache afterAdd [email protected]
110 verbose afterAdd /home/vagrant/.npm/node-sass/0.9.6/package/package.json not in flight; writing
111 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing
112 verbose afterAdd /home/vagrant/.npm/node-sass/0.9.6/package/package.json written
113 http 304 https://registry.npmjs.org/gulp-util
114 verbose headers { date: 'Tue, 18 Apr 2017 05:43:00 GMT',
114 verbose headers via: '1.1 varnish',
114 verbose headers 'cache-control': 'max-age=300',
114 verbose headers etag: 'W/"58ef239f-fe3e"',
114 verbose headers age: '22',
114 verbose headers connection: 'keep-alive',
114 verbose headers 'x-served-by': 'cache-lhr6331-LHR',
114 verbose headers 'x-cache': 'HIT',
114 verbose headers 'x-cache-hits': '1',
114 verbose headers 'x-timer': 'S1492494181.984860,VS0,VE0',
114 verbose headers vary: 'Accept-Encoding' }
115 silly get cb [ 304,
115 silly get { date: 'Tue, 18 Apr 2017 05:43:00 GMT',
115 silly get via: '1.1 varnish',
115 silly get 'cache-control': 'max-age=300',
115 silly get etag: 'W/"58ef239f-fe3e"',
115 silly get age: '22',
115 silly get connection: 'keep-alive',
115 silly get 'x-served-by': 'cache-lhr6331-LHR',
115 silly get 'x-cache': 'HIT',
115 silly get 'x-cache-hits': '1',
115 silly get 'x-timer': 'S1492494181.984860,VS0,VE0',
115 silly get vary: 'Accept-Encoding' } ]
116 verbose etag https://registry.npmjs.org/gulp-util from cache
117 verbose get saving gulp-util to /home/vagrant/.npm/registry.npmjs.org/gulp-util/.cache.json
118 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing
119 silly resolveWithNewModule [email protected] checking installable status
120 silly cache add args [ 'gulp-util@^3.0', null ]
121 verbose cache add spec gulp-util@^3.0
122 silly cache add parsed spec Result {
122 silly cache add raw: 'gulp-util@^3.0',
122 silly cache add scope: null,
122 silly cache add escapedName: 'gulp-util',
122 silly cache add name: 'gulp-util',
122 silly cache add rawSpec: '^3.0',
122 silly cache add spec: '>=3.0.0 <4.0.0',
122 silly cache add type: 'range' }
123 silly addNamed gulp-util@>=3.0.0 <4.0.0
124 verbose addNamed ">=3.0.0 <4.0.0" is a valid semver range for gulp-util
125 silly addNameRange { name: 'gulp-util', range: '>=3.0.0 <4.0.0', hasData: false }
126 silly mapToRegistry name gulp-util
127 silly mapToRegistry using default registry
128 silly mapToRegistry registry https://registry.npmjs.org/
129 silly mapToRegistry data Result {
129 silly mapToRegistry raw: 'gulp-util',
129 silly mapToRegistry scope: null,
129 silly mapToRegistry escapedName: 'gulp-util',
129 silly mapToRegistry name: 'gulp-util',
129 silly mapToRegistry rawSpec: '',
129 silly mapToRegistry spec: 'latest',
129 silly mapToRegistry type: 'tag' }
130 silly mapToRegistry uri https://registry.npmjs.org/gulp-util
131 verbose addNameRange registry:https://registry.npmjs.org/gulp-util not in flight; fetching
132 verbose get https://registry.npmjs.org/gulp-util not expired, no request
133 silly addNameRange number 2 { name: 'gulp-util', range: '>=3.0.0 <4.0.0', hasData: true }
134 silly addNameRange versions [ 'gulp-util',
134 silly addNameRange [ '0.0.1',
134 silly addNameRange '1.0.0',
134 silly addNameRange '1.1.0',
134 silly addNameRange '1.1.1',
134 silly addNameRange '1.2.0',
134 silly addNameRange '1.3.0',
134 silly addNameRange '2.0.0',
134 silly addNameRange '2.1.1',
134 silly addNameRange '2.1.2',
134 silly addNameRange '2.1.3',
134 silly addNameRange '2.1.4',
134 silly addNameRange '2.2.0',
134 silly addNameRange '2.2.1',
134 silly addNameRange '2.2.2',
134 silly addNameRange '2.2.3',
134 silly addNameRange '2.2.5',
134 silly addNameRange '2.2.6',
134 silly addNameRange '2.2.7',
134 silly addNameRange '2.2.8',
134 silly addNameRange '2.2.9',
134 silly addNameRange '2.2.10',
134 silly addNameRange '2.2.11',
134 silly addNameRange '2.2.12',
134 silly addNameRange '2.2.13',
134 silly addNameRange '2.2.14',
134 silly addNameRange '2.2.15',
134 silly addNameRange '2.2.16',
134 silly addNameRange '2.2.17',
134 silly addNameRange '2.2.18',
134 silly addNameRange '2.2.19',
134 silly addNameRange '2.2.20',
134 silly addNameRange '3.0.0',
134 silly addNameRange '3.0.1',
134 silly addNameRange '3.0.2',
134 silly addNameRange '3.0.3',
134 silly addNameRange '3.0.4',
134 silly addNameRange '3.0.5',
134 silly addNameRange '3.0.6',
134 silly addNameRange '3.0.7',
134 silly addNameRange '3.0.8' ] ]
135 silly addNamed [email protected]
136 verbose addNamed "3.0.8" is a plain semver version for gulp-util
137 silly cache afterAdd [email protected]
138 verbose afterAdd /home/vagrant/.npm/gulp-util/3.0.8/package/package.json not in flight; writing
139 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing
140 verbose afterAdd /home/vagrant/.npm/gulp-util/3.0.8/package/package.json written
141 silly fetchNamedPackageData chalk
142 silly mapToRegistry name chalk
143 silly mapToRegistry using default registry
144 silly mapToRegistry registry https://registry.npmjs.org/
145 silly mapToRegistry data Result {
145 silly mapToRegistry raw: 'chalk',
145 silly mapToRegistry scope: null,
145 silly mapToRegistry escapedName: 'chalk',
145 silly mapToRegistry name: 'chalk',
145 silly mapToRegistry rawSpec: '',
145 silly mapToRegistry spec: 'latest',
145 silly mapToRegistry type: 'tag' }
146 silly mapToRegistry uri https://registry.npmjs.org/chalk
147 silly fetchNamedPackageData dateformat
148 silly mapToRegistry name dateformat
149 silly mapToRegistry using default registry
150 silly mapToRegistry registry https://registry.npmjs.org/
151 silly mapToRegistry data Result {
151 silly mapToRegistry raw: 'dateformat',
151 silly mapToRegistry scope: null,
151 silly mapToRegistry escapedName: 'dateformat',
151 silly mapToRegistry name: 'dateformat',
151 silly mapToRegistry rawSpec: '',
151 silly mapToRegistry spec: 'latest',
151 silly mapToRegistry type: 'tag' }
152 silly mapToRegistry uri https://registry.npmjs.org/dateformat
153 silly fetchNamedPackageData lodash._reinterpolate
154 silly mapToRegistry name lodash._reinterpolate
155 silly mapToRegistry using default registry
156 silly mapToRegistry registry https://registry.npmjs.org/
157 silly mapToRegistry data Result {
157 silly mapToRegistry raw: 'lodash._reinterpolate',
157 silly mapToRegistry scope: null,
157 silly mapToRegistry escapedName: 'lodash._reinterpolate',
157 silly mapToRegistry name: 'lodash._reinterpolate',
157 silly mapToRegistry rawSpec: '',
157 silly mapToRegistry spec: 'latest',
157 silly mapToRegistry type: 'tag' }
158 silly mapToRegistry uri https://registry.npmjs.org/lodash._reinterpolate
159 silly fetchNamedPackageData lodash.template
160 silly mapToRegistry name lodash.template
161 silly mapToRegistry using default registry
162 silly mapToRegistry registry https://registry.npmjs.org/
163 silly mapToRegistry data Result {
163 silly mapToRegistry raw: 'lodash.template',
163 silly mapToRegistry scope: null,
163 silly mapToRegistry escapedName: 'lodash.template',
163 silly mapToRegistry name: 'lodash.template',
163 silly mapToRegistry rawSpec: '',
163 silly mapToRegistry spec: 'latest',
163 silly mapToRegistry type: 'tag' }
164 silly mapToRegistry uri https://registry.npmjs.org/lodash.template
165 silly fetchNamedPackageData object-assign
166 silly mapToRegistry name object-assign
167 silly mapToRegistry using default registry
168 silly mapToRegistry registry https://registry.npmjs.org/
169 silly mapToRegistry data Result {
169 silly mapToRegistry raw: 'object-assign',
169 silly mapToRegistry scope: null,
169 silly mapToRegistry escapedName: 'object-assign',
169 silly mapToRegistry name: 'object-assign',
169 silly mapToRegistry rawSpec: '',
169 silly mapToRegistry spec: 'latest',
169 silly mapToRegistry type: 'tag' }
170 silly mapToRegistry uri https://registry.npmjs.org/object-assign
171 silly fetchNamedPackageData through2
172 silly mapToRegistry name through2
173 silly mapToRegistry using default registry
174 silly mapToRegistry registry https://registry.npmjs.org/
175 silly mapToRegistry data Result {
175 silly mapToRegistry raw: 'through2',
175 silly mapToRegistry scope: null,
175 silly mapToRegistry escapedName: 'through2',
175 silly mapToRegistry name: 'through2',
175 silly mapToRegistry rawSpec: '',
175 silly mapToRegistry spec: 'latest',
175 silly mapToRegistry type: 'tag' }
176 silly mapToRegistry uri https://registry.npmjs.org/through2
177 silly fetchNamedPackageData vinyl
178 silly mapToRegistry name vinyl
179 silly mapToRegistry using default registry
180 silly mapToRegistry registry https://registry.npmjs.org/
181 silly mapToRegistry data Result {
181 silly mapToRegistry raw: 'vinyl',
181 silly mapToRegistry scope: null,
181 silly mapToRegistry escapedName: 'vinyl',
181 silly mapToRegistry name: 'vinyl',
181 silly mapToRegistry rawSpec: '',
181 silly mapToRegistry spec: 'latest',
181 silly mapToRegistry type: 'tag' }
182 silly mapToRegistry uri https://registry.npmjs.org/vinyl
183 verbose request uri https://registry.npmjs.org/chalk
184 verbose request no auth needed
185 info attempt registry request try #1 at 5:43:01 AM
186 verbose etag W/"58f41947-8883"
187 verbose lastModified Mon, 17 Apr 2017 01:24:23 GMT
188 http request GET https://registry.npmjs.org/chalk
189 verbose request uri https://registry.npmjs.org/dateformat
190 verbose request no auth needed
191 info attempt registry request try #1 at 5:43:01 AM
192 verbose etag W/"58ef4fc2-5db6"
193 verbose lastModified Thu, 13 Apr 2017 10:15:30 GMT
194 http request GET https://registry.npmjs.org/dateformat
195 verbose request uri https://registry.npmjs.org/lodash._reinterpolate
196 verbose request no auth needed
197 info attempt registry request try #1 at 5:43:01 AM
198 verbose etag W/"57f67f79-352c"
199 verbose lastModified Thu, 06 Oct 2016 16:44:41 GMT
200 http request GET https://registry.npmjs.org/lodash._reinterpolate
201 verbose request uri https://registry.npmjs.org/lodash.template
202 verbose request no auth needed
203 info attempt registry request try #1 at 5:43:01 AM
204 verbose etag W/"58da2f0f-f426"
205 verbose lastModified Tue, 28 Mar 2017 09:38:23 GMT
206 http request GET https://registry.npmjs.org/lodash.template
207 verbose request uri https://registry.npmjs.org/object-assign
208 verbose request no auth needed
209 info attempt registry request try #1 at 5:43:01 AM
210 verbose etag W/"58f225d4-5d36"
211 verbose lastModified Sat, 15 Apr 2017 13:53:24 GMT
212 http request GET https://registry.npmjs.org/object-assign
213 verbose request uri https://registry.npmjs.org/through2
214 verbose request no auth needed
215 info attempt registry request try #1 at 5:43:01 AM
216 verbose etag W/"58f3638f-a966"
217 verbose lastModified Sun, 16 Apr 2017 12:29:03 GMT
218 http request GET https://registry.npmjs.org/through2
219 verbose request uri https://registry.npmjs.org/vinyl
220 verbose request no auth needed
221 info attempt registry request try #1 at 5:43:01 AM
222 verbose etag W/"58ecbde4-c804"
223 verbose lastModified Tue, 11 Apr 2017 11:28:36 GMT
224 http request GET https://registry.npmjs.org/vinyl
225 http 304 https://registry.npmjs.org/chalk
226 verbose headers { date: 'Tue, 18 Apr 2017 05:43:01 GMT',
226 verbose headers via: '1.1 varnish',
226 verbose headers 'cache-control': 'max-age=300',
226 verbose headers etag: 'W/"58f41947-8883"',
226 verbose headers age: '246',
226 verbose headers connection: 'keep-alive',
226 verbose headers 'x-served-by': 'cache-lhr6323-LHR',
226 verbose headers 'x-cache': 'HIT',
226 verbose headers 'x-cache-hits': '9',
226 verbose headers 'x-timer': 'S1492494181.243987,VS0,VE0',
226 verbose headers vary: 'Accept-Encoding' }
227 silly get cb [ 304,
227 silly get { date: 'Tue, 18 Apr 2017 05:43:01 GMT',
227 silly get via: '1.1 varnish',
227 silly get 'cache-control': 'max-age=300',
227 silly get etag: 'W/"58f41947-8883"',
227 silly get age: '246',
227 silly get connection: 'keep-alive',
227 silly get 'x-served-by': 'cache-lhr6323-LHR',
227 silly get 'x-cache': 'HIT',
227 silly get 'x-cache-hits': '9',
227 silly get 'x-timer': 'S1492494181.243987,VS0,VE0',
227 silly get vary: 'Accept-Encoding' } ]
228 verbose etag https://registry.npmjs.org/chalk from cache
229 verbose get saving chalk to /home/vagrant/.npm/registry.npmjs.org/chalk/.cache.json
230 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing
231 silly resolveWithNewModule [email protected] checking installable status
232 silly cache add args [ 'chalk@^1.0.0', null ]
233 verbose cache add spec chalk@^1.0.0
234 silly cache add parsed spec Result {
234 silly cache add raw: 'chalk@^1.0.0',
234 silly cache add scope: null,
234 silly cache add escapedName: 'chalk',
234 silly cache add name: 'chalk',
234 silly cache add rawSpec: '^1.0.0',
234 silly cache add spec: '>=1.0.0 <2.0.0',
234 silly cache add type: 'range' }
235 silly addNamed chalk@>=1.0.0 <2.0.0
236 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for chalk
237 silly addNameRange { name: 'chalk', range: '>=1.0.0 <2.0.0', hasData: false }
238 silly mapToRegistry name chalk
239 silly mapToRegistry using default registry
240 silly mapToRegistry registry https://registry.npmjs.org/
241 silly mapToRegistry data Result {
241 silly mapToRegistry raw: 'chalk',
241 silly mapToRegistry scope: null,
241 silly mapToRegistry escapedName: 'chalk',
241 silly mapToRegistry name: 'chalk',
241 silly mapToRegistry rawSpec: '',
241 silly mapToRegistry spec: 'latest',
241 silly mapToRegistry type: 'tag' }
242 silly mapToRegistry uri https://registry.npmjs.org/chalk
243 verbose addNameRange registry:https://registry.npmjs.org/chalk not in flight; fetching
244 verbose get https://registry.npmjs.org/chalk not expired, no request
245 silly addNameRange number 2 { name: 'chalk', range: '>=1.0.0 <2.0.0', hasData: true }
246 silly addNameRange versions [ 'chalk',
246 silly addNameRange [ '0.1.0',
246 silly addNameRange '0.1.1',
246 silly addNameRange '0.2.0',
246 silly addNameRange '0.2.1',
246 silly addNameRange '0.3.0',
246 silly addNameRange '0.4.0',
246 silly addNameRange '0.5.0',
246 silly addNameRange '0.5.1',
246 silly addNameRange '1.0.0',
246 silly addNameRange '1.1.0',
246 silly addNameRange '1.1.1',
246 silly addNameRange '1.1.2',
246 silly addNameRange '1.1.3' ] ]
247 silly addNamed [email protected]
248 verbose addNamed "1.1.3" is a plain semver version for chalk
249 silly cache afterAdd [email protected]
250 verbose afterAdd /home/vagrant/.npm/chalk/1.1.3/package/package.json not in flight; writing
251 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing
252 verbose afterAdd /home/vagrant/.npm/chalk/1.1.3/package/package.json written
253 http 304 https://registry.npmjs.org/dateformat
254 verbose headers { date: 'Tue, 18 Apr 2017 05:43:01 GMT',
254 verbose headers via: '1.1 varnish',
254 verbose headers 'cache-control': 'max-age=300',
254 verbose headers etag: 'W/"58ef4fc2-5db6"',
254 verbose headers age: '140',
254 verbose headers connection: 'keep-alive',
254 verbose headers 'x-served-by': 'cache-lhr6331-LHR',
254 verbose headers 'x-cache': 'HIT',
254 verbose headers 'x-cache-hits': '2',
254 verbose headers 'x-timer': 'S1492494181.254096,VS0,VE0',
254 verbose headers vary: 'Accept-Encoding' }
255 silly get cb [ 304,
255 silly get { date: 'Tue, 18 Apr 2017 05:43:01 GMT',
255 silly get via: '1.1 varnish',
255 silly get 'cache-control': 'max-age=300',
255 silly get etag: 'W/"58ef4fc2-5db6"',
255 silly get age: '140',
255 silly get connection: 'keep-alive',
255 silly get 'x-served-by': 'cache-lhr6331-LHR',
255 silly get 'x-cache': 'HIT',
255 silly get 'x-cache-hits': '2',
255 silly get 'x-timer': 'S1492494181.254096,VS0,VE0',
255 silly get vary: 'Accept-Encoding' } ]
256 verbose etag https://registry.npmjs.org/dateformat from cache
257 verbose get saving dateformat to /home/vagrant/.npm/registry.npmjs.org/dateformat/.cache.json
258 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing
259 silly resolveWithNewModule [email protected] checking installable status
260 silly cache add args [ 'dateformat@^2.0.0', null ]
261 verbose cache add spec dateformat@^2.0.0
262 silly cache add parsed spec Result {
262 silly cache add raw: 'dateformat@^2.0.0',
262 silly cache add scope: null,
262 silly cache add escapedName: 'dateformat',
262 silly cache add name: 'dateformat',
262 silly cache add rawSpec: '^2.0.0',
262 silly cache add spec: '>=2.0.0 <3.0.0',
262 silly cache add type: 'range' }
263 silly addNamed dateformat@>=2.0.0 <3.0.0
264 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for dateformat
265 silly addNameRange { name: 'dateformat', range: '>=2.0.0 <3.0.0', hasData: false }
266 silly mapToRegistry name dateformat
267 silly mapToRegistry using default registry
268 silly mapToRegistry registry https://registry.npmjs.org/
269 silly mapToRegistry data Result {
269 silly mapToRegistry raw: 'dateformat',
269 silly mapToRegistry scope: null,
269 silly mapToRegistry escapedName: 'dateformat',
269 silly mapToRegistry name: 'dateformat',
269 silly mapToRegistry rawSpec: '',
269 silly mapToRegistry spec: 'latest',
269 silly mapToRegistry type: 'tag' }
270 silly mapToRegistry uri https://registry.npmjs.org/dateformat
271 verbose addNameRange registry:https://registry.npmjs.org/dateformat not in flight; fetching
272 verbose get https://registry.npmjs.org/dateformat not expired, no request
273 silly addNameRange number 2 { name: 'dateformat', range: '>=2.0.0 <3.0.0', hasData: true }
274 silly addNameRange versions [ 'dateformat',
274 silly addNameRange [ '0.9.0-1.2.3',
274 silly addNameRange '1.0.0-1.2.3',
274 silly addNameRange '1.0.1-1.2.3',
274 silly addNameRange '1.0.2-1.2.3',
274 silly addNameRange '1.0.3-1.2.3',
274 silly addNameRange '1.0.4-1.2.3',
274 silly addNameRange '1.0.5-1.2.3',
274 silly addNameRange '1.0.6-1.2.3',
274 silly addNameRange '1.0.7-1.2.3',
274 silly addNameRange '1.0.8-1.2.3',
274 silly addNameRange '1.0.8',
274 silly addNameRange '1.0.9',
274 silly addNameRange '1.0.10',
274 silly addNameRange '1.0.11',
274 silly addNameRange '1.0.12',
274 silly addNameRange '2.0.0' ] ]
275 silly addNamed [email protected]
276 verbose addNamed "2.0.0" is a plain semver version for dateformat
277 silly cache afterAdd [email protected]
278 verbose afterAdd /home/vagrant/.npm/dateformat/2.0.0/package/package.json not in flight; writing
279 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing
280 verbose afterAdd /home/vagrant/.npm/dateformat/2.0.0/package/package.json written
281 http 304 https://registry.npmjs.org/object-assign
282 verbose headers { date: 'Tue, 18 Apr 2017 05:43:01 GMT',
282 verbose headers via: '1.1 varnish',
282 verbose headers 'cache-control': 'max-age=300',
282 verbose headers etag: 'W/"58f225d4-5d36"',
282 verbose headers age: '42',
282 verbose headers connection: 'keep-alive',
282 verbose headers 'x-served-by': 'cache-lhr6343-LHR',
282 verbose headers 'x-cache': 'HIT',
282 verbose headers 'x-cache-hits': '2',
282 verbose headers 'x-timer': 'S1492494182.783758,VS0,VE0',
282 verbose headers vary: 'Accept-Encoding' }
283 silly get cb [ 304,
283 silly get { date: 'Tue, 18 Apr 2017 05:43:01 GMT',
283 silly get via: '1.1 varnish',
283 silly get 'cache-control': 'max-age=300',
283 silly get etag: 'W/"58f225d4-5d36"',
283 silly get age: '42',
283 silly get connection: 'keep-alive',
283 silly get 'x-served-by': 'cache-lhr6343-LHR',
283 silly get 'x-cache': 'HIT',
283 silly get 'x-cache-hits': '2',
283 silly get 'x-timer': 'S1492494182.783758,VS0,VE0',
283 silly get vary: 'Accept-Encoding' } ]
284 verbose etag https://registry.npmjs.org/object-assign from cache
285 verbose get saving object-assign to /home/vagrant/.npm/registry.npmjs.org/object-assign/.cache.json
286 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing
287 http 304 https://registry.npmjs.org/lodash._reinterpolate
288 verbose headers { date: 'Tue, 18 Apr 2017 05:43:01 GMT',
288 verbose headers via: '1.1 varnish',
288 verbose headers 'cache-control': 'max-age=300',
288 verbose headers etag: 'W/"57f67f79-352c"',
288 verbose headers age: '233',
288 verbose headers connection: 'keep-alive',
288 verbose headers 'x-served-by': 'cache-lhr6324-LHR',
288 verbose headers 'x-cache': 'HIT',
288 verbose headers 'x-cache-hits': '2',
288 verbose headers 'x-timer': 'S1492494182.814426,VS0,VE0',
288 verbose headers vary: 'Accept-Encoding' }
289 silly get cb [ 304,
289 silly get { date: 'Tue, 18 Apr 2017 05:43:01 GMT',
289 silly get via: '1.1 varnish',
289 silly get 'cache-control': 'max-age=300',
289 silly get etag: 'W/"57f67f79-352c"',
289 silly get age: '233',
289 silly get connection: 'keep-alive',
289 silly get 'x-served-by': 'cache-lhr6324-LHR',
289 silly get 'x-cache': 'HIT',
289 silly get 'x-cache-hits': '2',
289 silly get 'x-timer': 'S1492494182.814426,VS0,VE0',
289 silly get vary: 'Accept-Encoding' } ]
290 verbose etag https://registry.npmjs.org/lodash._reinterpolate from cache
291 verbose get saving lodash._reinterpolate to /home/vagrant/.npm/registry.npmjs.org/lodash._reinterpolate/.cache.json
292 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing
293 http 304 https://registry.npmjs.org/lodash.template
294 verbose headers { date: 'Tue, 18 Apr 2017 05:43:01 GMT',
294 verbose headers via: '1.1 varnish',
294 verbose headers 'cache-control': 'max-age=300',
294 verbose headers etag: 'W/"58da2f0f-f426"',
294 verbose headers age: '151',
294 verbose headers connection: 'keep-alive',
294 verbose headers 'x-served-by': 'cache-lhr6344-LHR',
294 verbose headers 'x-cache': 'HIT',
294 verbose headers 'x-cache-hits': '6',
294 verbose headers 'x-timer': 'S1492494182.814012,VS0,VE0',
294 verbose headers vary: 'Accept-Encoding' }
295 silly get cb [ 304,
295 silly get { date: 'Tue, 18 Apr 2017 05:43:01 GMT',
295 silly get via: '1.1 varnish',
295 silly get 'cache-control': 'max-age=300',
295 silly get etag: 'W/"58da2f0f-f426"',
295 silly get age: '151',
295 silly get connection: 'keep-alive',
295 silly get 'x-served-by': 'cache-lhr6344-LHR',
295 silly get 'x-cache': 'HIT',
295 silly get 'x-cache-hits': '6',
295 silly get 'x-timer': 'S1492494182.814012,VS0,VE0',
295 silly get vary: 'Accept-Encoding' } ]
296 verbose etag https://registry.npmjs.org/lodash.template from cache
297 verbose get saving lodash.template to /home/vagrant/.npm/registry.npmjs.org/lodash.template/.cache.json
298 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing
299 http 304 https://registry.npmjs.org/through2
300 verbose headers { date: 'Tue, 18 Apr 2017 05:43:01 GMT',
300 verbose headers via: '1.1 varnish',
300 verbose headers 'cache-control': 'max-age=300',
300 verbose headers etag: 'W/"58f3638f-a966"',
300 verbose headers age: '198',
300 verbose headers connection: 'keep-alive',
300 verbose headers 'x-served-by': 'cache-lhr6351-LHR',
300 verbose headers 'x-cache': 'HIT',
300 verbose headers 'x-cache-hits': '96',
300 verbose headers 'x-timer': 'S1492494182.824888,VS0,VE0',
300 verbose headers vary: 'Accept-Encoding' }
301 silly get cb [ 304,
301 silly get { date: 'Tue, 18 Apr 2017 05:43:01 GMT',
301 silly get via: '1.1 varnish',
301 silly get 'cache-control': 'max-age=300',
301 silly get etag: 'W/"58f3638f-a966"',
301 silly get age: '198',
301 silly get connection: 'keep-alive',
301 silly get 'x-served-by': 'cache-lhr6351-LHR',
301 silly get 'x-cache': 'HIT',
301 silly get 'x-cache-hits': '96',
301 silly get 'x-timer': 'S1492494182.824888,VS0,VE0',
301 silly get vary: 'Accept-Encoding' } ]
302 verbose etag https://registry.npmjs.org/through2 from cache
303 verbose get saving through2 to /home/vagrant/.npm/registry.npmjs.org/through2/.cache.json
304 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing
305 http 304 https://registry.npmjs.org/vinyl
306 verbose headers { date: 'Tue, 18 Apr 2017 05:43:01 GMT',
306 verbose headers via: '1.1 varnish',
306 verbose headers 'cache-control': 'max-age=300',
306 verbose headers etag: 'W/"58ecbde4-c804"',
306 verbose headers age: '19',
306 verbose headers connection: 'keep-alive',
306 verbose headers 'x-served-by': 'cache-lhr6336-LHR',
306 verbose headers 'x-cache': 'HIT',
306 verbose headers 'x-cache-hits': '1',
306 verbose headers 'x-timer': 'S1492494182.824772,VS0,VE0',
306 verbose headers vary: 'Accept-Encoding' }
307 silly get cb [ 304,
307 silly get { date: 'Tue, 18 Apr 2017 05:43:01 GMT',
307 silly get via: '1.1 varnish',
307 silly get 'cache-control': 'max-age=300',
307 silly get etag: 'W/"58ecbde4-c804"',
307 silly get age: '19',
307 silly get connection: 'keep-alive',
307 silly get 'x-served-by': 'cache-lhr6336-LHR',
307 silly get 'x-cache': 'HIT',
307 silly get 'x-cache-hits': '1',
307 silly get 'x-timer': 'S1492494182.824772,VS0,VE0',
307 silly get vary: 'Accept-Encoding' } ]
308 verbose etag https://registry.npmjs.org/vinyl from cache
309 verbose get saving vinyl to /home/vagrant/.npm/registry.npmjs.org/vinyl/.cache.json
310 verbose correctMkdir /home/vagrant/.npm correctMkdir not in flight; initializing
311 silly resolveWithNewModule [email protected] checking installable status
312 silly cache add args [ 'object-assign@^3.0.0', null ]
313 verbose cache add spec object-assign@^3.0.0
314 silly cache add parsed spec Result {
314 silly cache add raw: 'object-assign@^3.0.0',
314 silly cache add scope: null,
314 silly cache add escapedName: 'object-assign',
314 silly cache add name: 'object-assign',
314 silly cache add rawSpec: '^3.0.0',
314 silly cache add spec: '>=3.0.0 <4.0.0',
314 silly cache add type: 'range' }
315 silly addNamed object-assign@>=3.0.0 <4.0.0
316 verbose addNamed ">=3.0.0 <4.0.0" is a valid semver range for object-assign
317 silly addNameRange { name: 'object-assign',
317 silly addNameRange range: '>=3.0.0 <4.0.0',
317 silly addNameRange hasData: false }
318 silly mapToRegistry name object-assign
319 silly mapToRegistry using default registry
320 silly mapToRegistry registry https://registry.npmjs.org/
321 silly mapToRegistry data Result {
321 silly mapToRegistry raw: 'object-assign',
321 silly mapToRegistry scope: null,
321 silly mapToRegistry escapedName: 'object-assign',
321 silly mapToRegistry name: 'object-assign',
321 silly mapToRegistry rawSpec: '',
321 silly mapToRegistry spec: 'latest',
321 silly mapToRegistry type: 'tag' }
322 silly mapToRegistry uri https://registry.npmjs.org/object-assign
323 verbose addNameRange registry:https://registry.npmjs.org/object-assign not in flight; fetching
324 silly resolveWithNewModule [email protected] checking installable status
325 silly cache add args [ 'lodash._reinterpolate@^3.0.0', null ]
326 verbose cache add spec lodash._reinterpolate@^3.0.0
327 silly cache add parsed spec Result {
327 silly cache add raw: 'lodash._reinterpolate@^3.0.0',
327 silly cache add scope: null,
327 silly cache add escapedName: 'lodash._reinterpolate',
327 silly cache add name: 'lodash._reinterpolate',
327 silly cache add rawSpec: '^3.0.0',
327 silly cache add spec: '>=3.0.0 <4.0.0',
327 silly cache add type: 'range' }
328 silly addNamed lodash._reinterpolate@>=3.0.0 <4.0.0
329 verbose addNamed ">=3.0.0 <4.0.0" is a valid semver range for lodash._reinterpolate
330 silly addNameRange { name: 'lodash._reinterpolate',
330 silly addNameRange range: '>=3.0.0 <4.0.0',
330 silly addNameRange hasData: false }
331 silly mapToRegistry name lodash._reinterpolate
332 silly mapToRegistry using default registry
333 silly mapToRegistry registry https://registry.npmjs.org/
334 silly mapToRegistry data Result {
334 silly mapToRegistry raw: 'lodash._reinterpolate',
334 silly mapToRegistry scope: null,
334 silly mapToRegistry escapedName: 'lodash._reinterpolate',
334 silly mapToRegistry name: 'lodash._reinterpolate',
334 silly mapToRegistry rawSpec: '',
334 silly mapToRegistry spec: 'latest',
334 silly mapToRegistry type: 'tag' }
335 silly mapToRegistry uri https://registry.npmjs.org/lodash._reinterpolate
336 verbose addNameRange registry:https://registry.npmjs.org/lodash._reinterpolate not in flight; fetching
337 silly resolveWithNewModule [email protected] checking installable status
338 silly cache add args [ 'lodash.template@^3.0.0', null ]
339 verbose cache add spec lodash.template@^3.0.0
340 silly cache add parsed spec Result {
340 silly cache add raw: 'lodash.template@^3.0.0',
340 silly cache add scope: null,
340 silly cache add escapedName: 'lodash.template',
340 silly cache add name: 'lodash.template',
340 silly cache add rawSpec: '^3.0.0',
340 silly cache add spec: '>=3.0.0 <4.0.0',
340 silly cache add type: 'range' }
341 silly addNamed lodash.template@>=3.0.0 <4.0.0
342 verbose addNamed ">=3.0.0 <4.0.0" is a valid semver range for lodash.template
343 silly addNameRange { name: 'lodash.template',
343 silly addNameRange range: '>=3.0.0 <4.0.0',
343 silly addNameRange hasData: false }
344 silly mapToRegistry name lodash.template
345 silly mapToRegistry using default registry
346 silly mapToRegistry registry https://registry.npmjs.org/
347 silly mapToRegistry data Result {
347 silly mapToRegistry raw: 'lodash.template',
347 silly mapToRegistry scope: null,
347 silly mapToRegistry escapedName: 'lodash.template',
347 silly mapToRegistry name: 'lodash.template',
347 silly mapToRegistry rawSpec: '',
347 silly mapToRegistry spec: 'latest',
347 silly mapToRegistry type: 'tag' }
348 silly mapToRegistry uri https://registry.npmjs.org/lodash.template
349 verbose addNameRange registry:https://registry.npmjs.org/lodash.template not in flight; fetching
350 silly resolveWithNewModule [email protected] checking installable status
351 silly cache add args [ 'through2@^2.0.0', null ]
352 verbose cache add spec through2@^2.0.0
353 silly cache add parsed spec Result {
353 silly cache add raw: 'through2@^2.0.0',
353 silly cache add scope: null,
353 silly cache add escapedName: 'through2',
353 silly cache add name: 'through2',
353 silly cache add rawSpec: '^2.0.0',
353 silly cache add spec: '>=2.0.0 <3.0.0',
353 silly cache add type: 'range' }
354 silly addNamed through2@>=2.0.0 <3.0.0
355 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for through2
356 silly addNameRange { name: 'through2', range: '>=2.0.0 <3.0.0', hasData: false }
357 silly mapToRegistry name through2
358 silly mapToRegistry using default registry
359 silly mapToRegistry registry https://registry.npmjs.org/
360 silly mapToRegistry data Result {
360 silly mapToRegistry raw: 'through2',
360 silly mapToRegistry scope: null,
360 silly mapToRegistry escapedName: 'through2',
360 silly mapToRegistry name: 'through2',
360 silly mapToRegistry rawSpec: '',
360 silly mapToRegistry spec: 'latest',
360 silly mapToRegistry type: 'tag' }
361 silly mapToRegistry uri https://registry.npmjs.org/through2
362 verbose addNameRange registry:https://registry.npmjs.org/through2 not in flight; fetching
363 silly resolveWithNewModule [email protected] checking installable status
364 silly cache add args [ 'vinyl@^0.5.0', null ]
365 verbose cache add spec vinyl@^0.5.0
366 silly cache add parsed spec Result {
366 silly cache add raw: 'vinyl@^0.5.0',
366 silly cache add scope: null,
366 silly cache add escapedName: 'vinyl',
366 silly cache add name: 'vinyl',
366 silly cache add rawSpec: '^0.5.0',
366 silly cache add spec: '>=0.5.0 <0.6.0',
366 silly cache add type: 'range' }
367 silly addNamed vinyl@>=0.5.0 <0.6.0
368 verbose addNamed ">=0.5.0 <0.6.0" is a valid semver range for vinyl
369 silly addNameRange { name: 'vinyl', range: '>=0.5.0 <0.6.0', hasData: false }