-
Notifications
You must be signed in to change notification settings - Fork 0
/
npm-debug.log
12179 lines (12179 loc) · 639 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/local/bin/node',
1 verbose cli '/usr/local/bin/npm',
1 verbose cli 'install',
1 verbose cli 'gulp',
1 verbose cli '-g' ]
2 info using [email protected]
3 info using [email protected]
4 silly loadCurrentTree Starting
5 silly install loadCurrentTree
6 silly install readGlobalPackageData
7 silly fetchPackageMetaData gulp
8 silly fetchNamedPackageData gulp
9 silly mapToRegistry name gulp
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry uri https://registry.npmjs.org/gulp
13 verbose request uri https://registry.npmjs.org/gulp
14 verbose request no auth needed
15 info attempt registry request try #1 at 3:07:07 PM
16 verbose request id bd575740ef002bc3
17 verbose etag "C743U9HP8LXDLUAG240H3J5ES"
18 http request GET https://registry.npmjs.org/gulp
19 http 200 https://registry.npmjs.org/gulp
20 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
20 verbose headers etag: '"3P9C317ABYQMASJZYCVGMRT0Y"',
20 verbose headers 'content-type': 'application/json',
20 verbose headers 'cache-control': 'max-age=300',
20 verbose headers 'content-length': '108791',
20 verbose headers 'accept-ranges': 'bytes',
20 verbose headers date: 'Wed, 23 Dec 2015 23:07:08 GMT',
20 verbose headers via: '1.1 varnish',
20 verbose headers age: '183',
20 verbose headers connection: 'keep-alive',
20 verbose headers 'x-served-by': 'cache-lcy1132-LCY',
20 verbose headers 'x-cache': 'HIT',
20 verbose headers 'x-cache-hits': '1',
20 verbose headers 'x-timer': 'S1450912028.529214,VS0,VE0',
20 verbose headers vary: 'Accept' }
21 silly get cb [ 200,
21 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
21 silly get etag: '"3P9C317ABYQMASJZYCVGMRT0Y"',
21 silly get 'content-type': 'application/json',
21 silly get 'cache-control': 'max-age=300',
21 silly get 'content-length': '108791',
21 silly get 'accept-ranges': 'bytes',
21 silly get date: 'Wed, 23 Dec 2015 23:07:08 GMT',
21 silly get via: '1.1 varnish',
21 silly get age: '183',
21 silly get connection: 'keep-alive',
21 silly get 'x-served-by': 'cache-lcy1132-LCY',
21 silly get 'x-cache': 'HIT',
21 silly get 'x-cache-hits': '1',
21 silly get 'x-timer': 'S1450912028.529214,VS0,VE0',
21 silly get vary: 'Accept' } ]
22 verbose get saving gulp to /Users/izzelupin/.npm/registry.npmjs.org/gulp/.cache.json
23 silly install normalizeTree
24 silly loadCurrentTree Finishing
25 silly loadIdealTree Starting
26 silly install loadIdealTree
27 silly cloneCurrentTree Starting
28 silly install cloneCurrentTreeToIdealTree
29 silly cloneCurrentTree Finishing
30 silly loadShrinkwrap Starting
31 silly install loadShrinkwrap
32 silly loadShrinkwrap Finishing
33 silly loadAllDepsIntoIdealTree Starting
34 silly install loadAllDepsIntoIdealTree
35 silly resolveWithNewModule [email protected] checking installable status
36 silly cache add args [ 'gulp', null ]
37 verbose cache add spec gulp
38 silly cache add parsed spec Result {
38 silly cache add raw: 'gulp',
38 silly cache add scope: null,
38 silly cache add name: 'gulp',
38 silly cache add rawSpec: '',
38 silly cache add spec: '*',
38 silly cache add type: 'range' }
39 silly addNamed gulp@*
40 verbose addNamed "*" is a valid semver range for gulp
41 silly addNameRange { name: 'gulp', range: '*', hasData: false }
42 silly mapToRegistry name gulp
43 silly mapToRegistry using default registry
44 silly mapToRegistry registry https://registry.npmjs.org/
45 silly mapToRegistry uri https://registry.npmjs.org/gulp
46 verbose addNameRange registry:https://registry.npmjs.org/gulp not in flight; fetching
47 verbose get https://registry.npmjs.org/gulp not expired, no request
48 silly addNameRange number 2 { name: 'gulp', range: '*', hasData: true }
49 silly addNameRange versions [ 'gulp',
49 silly addNameRange [ '0.0.1',
49 silly addNameRange '0.0.2',
49 silly addNameRange '0.0.3',
49 silly addNameRange '0.0.4',
49 silly addNameRange '0.0.5',
49 silly addNameRange '0.0.7',
49 silly addNameRange '0.0.8',
49 silly addNameRange '0.0.9',
49 silly addNameRange '0.1.0',
49 silly addNameRange '0.2.0',
49 silly addNameRange '1.0.0',
49 silly addNameRange '1.1.0',
49 silly addNameRange '1.2.0',
49 silly addNameRange '1.2.1',
49 silly addNameRange '2.0.0',
49 silly addNameRange '2.0.1',
49 silly addNameRange '2.1.0',
49 silly addNameRange '2.2.0',
49 silly addNameRange '2.3.0',
49 silly addNameRange '2.4.0',
49 silly addNameRange '2.4.1',
49 silly addNameRange '2.6.0',
49 silly addNameRange '2.6.1',
49 silly addNameRange '2.7.0',
49 silly addNameRange '3.0.0',
49 silly addNameRange '3.1.1',
49 silly addNameRange '3.1.2',
49 silly addNameRange '3.1.3',
49 silly addNameRange '3.1.4',
49 silly addNameRange '3.2.0',
49 silly addNameRange '3.2.1',
49 silly addNameRange '3.2.2',
49 silly addNameRange '3.2.3',
49 silly addNameRange '3.2.4',
49 silly addNameRange '3.2.5',
49 silly addNameRange '3.3.0',
49 silly addNameRange '3.3.1',
49 silly addNameRange '3.3.2',
49 silly addNameRange '3.3.4',
49 silly addNameRange '3.4.0',
49 silly addNameRange '3.5.0',
49 silly addNameRange '3.5.1',
49 silly addNameRange '3.5.2',
49 silly addNameRange '3.5.5',
49 silly addNameRange '3.5.6',
49 silly addNameRange '3.6.0',
49 silly addNameRange '3.6.1',
49 silly addNameRange '3.6.2',
49 silly addNameRange '3.7.0',
49 silly addNameRange '3.8.0',
49 silly addNameRange '3.8.1',
49 silly addNameRange '3.8.2',
49 silly addNameRange '3.8.3',
49 silly addNameRange '3.8.4',
49 silly addNameRange '3.8.5',
49 silly addNameRange '3.8.6',
49 silly addNameRange '3.8.7',
49 silly addNameRange '3.8.8',
49 silly addNameRange '3.8.9',
49 silly addNameRange '3.8.10',
49 silly addNameRange '3.8.11',
49 silly addNameRange '3.9.0' ] ]
50 silly addNamed [email protected]
51 verbose addNamed "3.9.0" is a plain semver version for gulp
52 silly cache afterAdd [email protected]
53 verbose afterAdd /Users/izzelupin/.npm/gulp/3.9.0/package/package.json not in flight; writing
54 verbose afterAdd /Users/izzelupin/.npm/gulp/3.9.0/package/package.json written
55 silly fetchNamedPackageData archy
56 silly mapToRegistry name archy
57 silly mapToRegistry using default registry
58 silly mapToRegistry registry https://registry.npmjs.org/
59 silly mapToRegistry uri https://registry.npmjs.org/archy
60 silly fetchNamedPackageData chalk
61 silly mapToRegistry name chalk
62 silly mapToRegistry using default registry
63 silly mapToRegistry registry https://registry.npmjs.org/
64 silly mapToRegistry uri https://registry.npmjs.org/chalk
65 silly fetchNamedPackageData deprecated
66 silly mapToRegistry name deprecated
67 silly mapToRegistry using default registry
68 silly mapToRegistry registry https://registry.npmjs.org/
69 silly mapToRegistry uri https://registry.npmjs.org/deprecated
70 silly fetchNamedPackageData gulp-util
71 silly mapToRegistry name gulp-util
72 silly mapToRegistry using default registry
73 silly mapToRegistry registry https://registry.npmjs.org/
74 silly mapToRegistry uri https://registry.npmjs.org/gulp-util
75 silly fetchNamedPackageData interpret
76 silly mapToRegistry name interpret
77 silly mapToRegistry using default registry
78 silly mapToRegistry registry https://registry.npmjs.org/
79 silly mapToRegistry uri https://registry.npmjs.org/interpret
80 silly fetchNamedPackageData liftoff
81 silly mapToRegistry name liftoff
82 silly mapToRegistry using default registry
83 silly mapToRegistry registry https://registry.npmjs.org/
84 silly mapToRegistry uri https://registry.npmjs.org/liftoff
85 silly fetchNamedPackageData minimist
86 silly mapToRegistry name minimist
87 silly mapToRegistry using default registry
88 silly mapToRegistry registry https://registry.npmjs.org/
89 silly mapToRegistry uri https://registry.npmjs.org/minimist
90 silly fetchNamedPackageData orchestrator
91 silly mapToRegistry name orchestrator
92 silly mapToRegistry using default registry
93 silly mapToRegistry registry https://registry.npmjs.org/
94 silly mapToRegistry uri https://registry.npmjs.org/orchestrator
95 silly fetchNamedPackageData pretty-hrtime
96 silly mapToRegistry name pretty-hrtime
97 silly mapToRegistry using default registry
98 silly mapToRegistry registry https://registry.npmjs.org/
99 silly mapToRegistry uri https://registry.npmjs.org/pretty-hrtime
100 silly fetchNamedPackageData semver
101 silly mapToRegistry name semver
102 silly mapToRegistry using default registry
103 silly mapToRegistry registry https://registry.npmjs.org/
104 silly mapToRegistry uri https://registry.npmjs.org/semver
105 silly fetchNamedPackageData tildify
106 silly mapToRegistry name tildify
107 silly mapToRegistry using default registry
108 silly mapToRegistry registry https://registry.npmjs.org/
109 silly mapToRegistry uri https://registry.npmjs.org/tildify
110 silly fetchNamedPackageData v8flags
111 silly mapToRegistry name v8flags
112 silly mapToRegistry using default registry
113 silly mapToRegistry registry https://registry.npmjs.org/
114 silly mapToRegistry uri https://registry.npmjs.org/v8flags
115 silly fetchNamedPackageData vinyl-fs
116 silly mapToRegistry name vinyl-fs
117 silly mapToRegistry using default registry
118 silly mapToRegistry registry https://registry.npmjs.org/
119 silly mapToRegistry uri https://registry.npmjs.org/vinyl-fs
120 verbose request uri https://registry.npmjs.org/deprecated
121 verbose request no auth needed
122 info attempt registry request try #1 at 3:07:11 PM
123 verbose etag "4ST2K9G9PP2UO3MRNVO9JKG1A"
124 http request GET https://registry.npmjs.org/deprecated
125 verbose request uri https://registry.npmjs.org/archy
126 verbose request no auth needed
127 info attempt registry request try #1 at 3:07:11 PM
128 verbose etag "6EZY7G1TMK6WGDEBYX95ZZVW2"
129 http request GET https://registry.npmjs.org/archy
130 verbose request uri https://registry.npmjs.org/interpret
131 verbose request no auth needed
132 info attempt registry request try #1 at 3:07:11 PM
133 verbose etag "1IOOVZA4GPIIULRC1OUZRF1BL"
134 http request GET https://registry.npmjs.org/interpret
135 verbose request uri https://registry.npmjs.org/chalk
136 verbose request no auth needed
137 info attempt registry request try #1 at 3:07:11 PM
138 verbose etag "B932B46KFCXOHDJ8GMS3F11UA"
139 http request GET https://registry.npmjs.org/chalk
140 verbose request uri https://registry.npmjs.org/gulp-util
141 verbose request no auth needed
142 info attempt registry request try #1 at 3:07:11 PM
143 verbose etag "1IFMWFJV1HQNG8YIPR9IKZEC0"
144 http request GET https://registry.npmjs.org/gulp-util
145 verbose request uri https://registry.npmjs.org/orchestrator
146 verbose request no auth needed
147 info attempt registry request try #1 at 3:07:11 PM
148 verbose etag "E8Q6FDYF25XWVEVSG7TVNUUF2"
149 http request GET https://registry.npmjs.org/orchestrator
150 verbose request uri https://registry.npmjs.org/tildify
151 verbose request no auth needed
152 info attempt registry request try #1 at 3:07:11 PM
153 verbose etag "2CC2F7FW8M2IW3LNQX9B1US1H"
154 http request GET https://registry.npmjs.org/tildify
155 verbose request uri https://registry.npmjs.org/minimist
156 verbose request no auth needed
157 info attempt registry request try #1 at 3:07:11 PM
158 verbose etag "ANI3LOSOPQ1DYINW9XPNM3NF5"
159 http request GET https://registry.npmjs.org/minimist
160 verbose request uri https://registry.npmjs.org/liftoff
161 verbose request no auth needed
162 info attempt registry request try #1 at 3:07:11 PM
163 verbose etag "79QBHE3LG7MUT3X9MVB6CBA0P"
164 http request GET https://registry.npmjs.org/liftoff
165 verbose request uri https://registry.npmjs.org/semver
166 verbose request no auth needed
167 info attempt registry request try #1 at 3:07:11 PM
168 verbose etag "7JOYOOBN12ENCTVXABTC8ATNA"
169 http request GET https://registry.npmjs.org/semver
170 verbose request uri https://registry.npmjs.org/v8flags
171 verbose request no auth needed
172 info attempt registry request try #1 at 3:07:11 PM
173 verbose etag "967NB6R8Y9YA5JBADTEK9CNIP"
174 http request GET https://registry.npmjs.org/v8flags
175 verbose request uri https://registry.npmjs.org/vinyl-fs
176 verbose request no auth needed
177 info attempt registry request try #1 at 3:07:11 PM
178 verbose etag "3I3JYLEUOTKBDIROPZKCO6BZ8"
179 http request GET https://registry.npmjs.org/vinyl-fs
180 verbose request uri https://registry.npmjs.org/pretty-hrtime
181 verbose request no auth needed
182 info attempt registry request try #1 at 3:07:11 PM
183 verbose etag "7JSTUAIXH2A5M15368G2Y1P35"
184 http request GET https://registry.npmjs.org/pretty-hrtime
185 http 304 https://registry.npmjs.org/pretty-hrtime
186 verbose headers { date: 'Wed, 23 Dec 2015 23:07:11 GMT',
186 verbose headers via: '1.1 varnish',
186 verbose headers 'cache-control': 'max-age=60',
186 verbose headers etag: '"7JSTUAIXH2A5M15368G2Y1P35"',
186 verbose headers age: '0',
186 verbose headers connection: 'keep-alive',
186 verbose headers 'x-served-by': 'cache-lcy1126-LCY',
186 verbose headers 'x-cache': 'HIT',
186 verbose headers 'x-cache-hits': '1',
186 verbose headers 'x-timer': 'S1450912031.909728,VS0,VE93',
186 verbose headers vary: 'Accept' }
187 silly get cb [ 304,
187 silly get { date: 'Wed, 23 Dec 2015 23:07:11 GMT',
187 silly get via: '1.1 varnish',
187 silly get 'cache-control': 'max-age=60',
187 silly get etag: '"7JSTUAIXH2A5M15368G2Y1P35"',
187 silly get age: '0',
187 silly get connection: 'keep-alive',
187 silly get 'x-served-by': 'cache-lcy1126-LCY',
187 silly get 'x-cache': 'HIT',
187 silly get 'x-cache-hits': '1',
187 silly get 'x-timer': 'S1450912031.909728,VS0,VE93',
187 silly get vary: 'Accept' } ]
188 verbose etag https://registry.npmjs.org/pretty-hrtime from cache
189 verbose get saving pretty-hrtime to /Users/izzelupin/.npm/registry.npmjs.org/pretty-hrtime/.cache.json
190 silly resolveWithNewModule [email protected] checking installable status
191 silly cache add args [ 'pretty-hrtime@^1.0.0', null ]
192 verbose cache add spec pretty-hrtime@^1.0.0
193 silly cache add parsed spec Result {
193 silly cache add raw: 'pretty-hrtime@^1.0.0',
193 silly cache add scope: null,
193 silly cache add name: 'pretty-hrtime',
193 silly cache add rawSpec: '^1.0.0',
193 silly cache add spec: '>=1.0.0 <2.0.0',
193 silly cache add type: 'range' }
194 silly addNamed pretty-hrtime@>=1.0.0 <2.0.0
195 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for pretty-hrtime
196 silly addNameRange { name: 'pretty-hrtime',
196 silly addNameRange range: '>=1.0.0 <2.0.0',
196 silly addNameRange hasData: false }
197 silly mapToRegistry name pretty-hrtime
198 silly mapToRegistry using default registry
199 silly mapToRegistry registry https://registry.npmjs.org/
200 silly mapToRegistry uri https://registry.npmjs.org/pretty-hrtime
201 verbose addNameRange registry:https://registry.npmjs.org/pretty-hrtime not in flight; fetching
202 http 200 https://registry.npmjs.org/minimist
203 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
203 verbose headers etag: '"EQHHJ88OJ3U8YH3II1EENI1FZ"',
203 verbose headers 'content-type': 'application/json',
203 verbose headers 'cache-control': 'max-age=300',
203 verbose headers 'content-length': '27449',
203 verbose headers 'accept-ranges': 'bytes',
203 verbose headers date: 'Wed, 23 Dec 2015 23:07:11 GMT',
203 verbose headers via: '1.1 varnish',
203 verbose headers age: '174',
203 verbose headers connection: 'keep-alive',
203 verbose headers 'x-served-by': 'cache-lcy1120-LCY',
203 verbose headers 'x-cache': 'HIT',
203 verbose headers 'x-cache-hits': '4',
203 verbose headers 'x-timer': 'S1450912031.883021,VS0,VE0',
203 verbose headers vary: 'Accept' }
204 silly get cb [ 200,
204 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
204 silly get etag: '"EQHHJ88OJ3U8YH3II1EENI1FZ"',
204 silly get 'content-type': 'application/json',
204 silly get 'cache-control': 'max-age=300',
204 silly get 'content-length': '27449',
204 silly get 'accept-ranges': 'bytes',
204 silly get date: 'Wed, 23 Dec 2015 23:07:11 GMT',
204 silly get via: '1.1 varnish',
204 silly get age: '174',
204 silly get connection: 'keep-alive',
204 silly get 'x-served-by': 'cache-lcy1120-LCY',
204 silly get 'x-cache': 'HIT',
204 silly get 'x-cache-hits': '4',
204 silly get 'x-timer': 'S1450912031.883021,VS0,VE0',
204 silly get vary: 'Accept' } ]
205 verbose get saving minimist to /Users/izzelupin/.npm/registry.npmjs.org/minimist/.cache.json
206 http 200 https://registry.npmjs.org/orchestrator
207 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
207 verbose headers etag: '"9CO0W9J2MR2U5M2Y0QXDUBUBM"',
207 verbose headers 'content-type': 'application/json',
207 verbose headers 'cache-control': 'max-age=300',
207 verbose headers 'content-length': '30089',
207 verbose headers 'accept-ranges': 'bytes',
207 verbose headers date: 'Wed, 23 Dec 2015 23:07:11 GMT',
207 verbose headers via: '1.1 varnish',
207 verbose headers age: '291',
207 verbose headers connection: 'keep-alive',
207 verbose headers 'x-served-by': 'cache-lcy1127-LCY',
207 verbose headers 'x-cache': 'HIT',
207 verbose headers 'x-cache-hits': '2',
207 verbose headers 'x-timer': 'S1450912031.887553,VS0,VE0',
207 verbose headers vary: 'Accept' }
208 silly get cb [ 200,
208 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
208 silly get etag: '"9CO0W9J2MR2U5M2Y0QXDUBUBM"',
208 silly get 'content-type': 'application/json',
208 silly get 'cache-control': 'max-age=300',
208 silly get 'content-length': '30089',
208 silly get 'accept-ranges': 'bytes',
208 silly get date: 'Wed, 23 Dec 2015 23:07:11 GMT',
208 silly get via: '1.1 varnish',
208 silly get age: '291',
208 silly get connection: 'keep-alive',
208 silly get 'x-served-by': 'cache-lcy1127-LCY',
208 silly get 'x-cache': 'HIT',
208 silly get 'x-cache-hits': '2',
208 silly get 'x-timer': 'S1450912031.887553,VS0,VE0',
208 silly get vary: 'Accept' } ]
209 verbose get saving orchestrator to /Users/izzelupin/.npm/registry.npmjs.org/orchestrator/.cache.json
210 verbose get https://registry.npmjs.org/pretty-hrtime not expired, no request
211 silly addNameRange number 2 { name: 'pretty-hrtime', range: '>=1.0.0 <2.0.0', hasData: true }
212 silly addNameRange versions [ 'pretty-hrtime',
212 silly addNameRange [ '0.2.0', '0.2.1', '0.2.2', '1.0.0', '1.0.1' ] ]
213 silly addNamed [email protected]
214 verbose addNamed "1.0.1" is a plain semver version for pretty-hrtime
215 http 200 https://registry.npmjs.org/archy
216 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
216 verbose headers etag: '"85DMUW5Y4D44RL2LB4Z5BH2OJ"',
216 verbose headers 'content-type': 'application/json',
216 verbose headers 'cache-control': 'max-age=60',
216 verbose headers 'content-length': '6921',
216 verbose headers 'accept-ranges': 'bytes',
216 verbose headers date: 'Wed, 23 Dec 2015 23:07:12 GMT',
216 verbose headers via: '1.1 varnish',
216 verbose headers age: '0',
216 verbose headers connection: 'keep-alive',
216 verbose headers 'x-served-by': 'cache-lcy1120-LCY',
216 verbose headers 'x-cache': 'HIT',
216 verbose headers 'x-cache-hits': '1',
216 verbose headers 'x-timer': 'S1450912031.878972,VS0,VE161',
216 verbose headers vary: 'Accept' }
217 silly get cb [ 200,
217 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
217 silly get etag: '"85DMUW5Y4D44RL2LB4Z5BH2OJ"',
217 silly get 'content-type': 'application/json',
217 silly get 'cache-control': 'max-age=60',
217 silly get 'content-length': '6921',
217 silly get 'accept-ranges': 'bytes',
217 silly get date: 'Wed, 23 Dec 2015 23:07:12 GMT',
217 silly get via: '1.1 varnish',
217 silly get age: '0',
217 silly get connection: 'keep-alive',
217 silly get 'x-served-by': 'cache-lcy1120-LCY',
217 silly get 'x-cache': 'HIT',
217 silly get 'x-cache-hits': '1',
217 silly get 'x-timer': 'S1450912031.878972,VS0,VE161',
217 silly get vary: 'Accept' } ]
218 verbose get saving archy to /Users/izzelupin/.npm/registry.npmjs.org/archy/.cache.json
219 http 200 https://registry.npmjs.org/interpret
220 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
220 verbose headers etag: '"6OMB7EGGRO1EVB5KZMER48B7L"',
220 verbose headers 'content-type': 'application/json',
220 verbose headers 'cache-control': 'max-age=300',
220 verbose headers 'content-length': '37998',
220 verbose headers 'accept-ranges': 'bytes',
220 verbose headers date: 'Wed, 23 Dec 2015 23:07:11 GMT',
220 verbose headers via: '1.1 varnish',
220 verbose headers age: '162',
220 verbose headers connection: 'keep-alive',
220 verbose headers 'x-served-by': 'cache-lcy1131-LCY',
220 verbose headers 'x-cache': 'HIT',
220 verbose headers 'x-cache-hits': '398',
220 verbose headers 'x-timer': 'S1450912031.898347,VS0,VE0',
220 verbose headers vary: 'Accept' }
221 silly get cb [ 200,
221 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
221 silly get etag: '"6OMB7EGGRO1EVB5KZMER48B7L"',
221 silly get 'content-type': 'application/json',
221 silly get 'cache-control': 'max-age=300',
221 silly get 'content-length': '37998',
221 silly get 'accept-ranges': 'bytes',
221 silly get date: 'Wed, 23 Dec 2015 23:07:11 GMT',
221 silly get via: '1.1 varnish',
221 silly get age: '162',
221 silly get connection: 'keep-alive',
221 silly get 'x-served-by': 'cache-lcy1131-LCY',
221 silly get 'x-cache': 'HIT',
221 silly get 'x-cache-hits': '398',
221 silly get 'x-timer': 'S1450912031.898347,VS0,VE0',
221 silly get vary: 'Accept' } ]
222 verbose get saving interpret to /Users/izzelupin/.npm/registry.npmjs.org/interpret/.cache.json
223 http 200 https://registry.npmjs.org/chalk
224 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
224 verbose headers etag: '"4S6K97224E4ZMUGC0XI44HHLC"',
224 verbose headers 'content-type': 'application/json',
224 verbose headers 'cache-control': 'max-age=300',
224 verbose headers 'content-length': '26578',
224 verbose headers 'accept-ranges': 'bytes',
224 verbose headers date: 'Wed, 23 Dec 2015 23:07:11 GMT',
224 verbose headers via: '1.1 varnish',
224 verbose headers age: '163',
224 verbose headers connection: 'keep-alive',
224 verbose headers 'x-served-by': 'cache-lcy1130-LCY',
224 verbose headers 'x-cache': 'HIT',
224 verbose headers 'x-cache-hits': '1',
224 verbose headers 'x-timer': 'S1450912031.894712,VS0,VE0',
224 verbose headers vary: 'Accept' }
225 silly get cb [ 200,
225 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
225 silly get etag: '"4S6K97224E4ZMUGC0XI44HHLC"',
225 silly get 'content-type': 'application/json',
225 silly get 'cache-control': 'max-age=300',
225 silly get 'content-length': '26578',
225 silly get 'accept-ranges': 'bytes',
225 silly get date: 'Wed, 23 Dec 2015 23:07:11 GMT',
225 silly get via: '1.1 varnish',
225 silly get age: '163',
225 silly get connection: 'keep-alive',
225 silly get 'x-served-by': 'cache-lcy1130-LCY',
225 silly get 'x-cache': 'HIT',
225 silly get 'x-cache-hits': '1',
225 silly get 'x-timer': 'S1450912031.894712,VS0,VE0',
225 silly get vary: 'Accept' } ]
226 verbose get saving chalk to /Users/izzelupin/.npm/registry.npmjs.org/chalk/.cache.json
227 http 200 https://registry.npmjs.org/v8flags
228 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
228 verbose headers etag: '"91F3IR7KMPQ3PHAK5CI86KDXJ"',
228 verbose headers 'content-type': 'application/json',
228 verbose headers 'cache-control': 'max-age=300',
228 verbose headers 'content-length': '29202',
228 verbose headers 'accept-ranges': 'bytes',
228 verbose headers date: 'Wed, 23 Dec 2015 23:07:11 GMT',
228 verbose headers via: '1.1 varnish',
228 verbose headers age: '231',
228 verbose headers connection: 'keep-alive',
228 verbose headers 'x-served-by': 'cache-lcy1121-LCY',
228 verbose headers 'x-cache': 'HIT',
228 verbose headers 'x-cache-hits': '1',
228 verbose headers 'x-timer': 'S1450912031.896606,VS0,VE0',
228 verbose headers vary: 'Accept' }
229 silly get cb [ 200,
229 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
229 silly get etag: '"91F3IR7KMPQ3PHAK5CI86KDXJ"',
229 silly get 'content-type': 'application/json',
229 silly get 'cache-control': 'max-age=300',
229 silly get 'content-length': '29202',
229 silly get 'accept-ranges': 'bytes',
229 silly get date: 'Wed, 23 Dec 2015 23:07:11 GMT',
229 silly get via: '1.1 varnish',
229 silly get age: '231',
229 silly get connection: 'keep-alive',
229 silly get 'x-served-by': 'cache-lcy1121-LCY',
229 silly get 'x-cache': 'HIT',
229 silly get 'x-cache-hits': '1',
229 silly get 'x-timer': 'S1450912031.896606,VS0,VE0',
229 silly get vary: 'Accept' } ]
230 verbose get saving v8flags to /Users/izzelupin/.npm/registry.npmjs.org/v8flags/.cache.json
231 http 200 https://registry.npmjs.org/semver
232 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
232 verbose headers etag: '"9AKHVLXH1EZXB2URR2AGEIANA"',
232 verbose headers 'content-type': 'application/json',
232 verbose headers 'cache-control': 'max-age=300',
232 verbose headers 'content-length': '67438',
232 verbose headers 'accept-ranges': 'bytes',
232 verbose headers date: 'Wed, 23 Dec 2015 23:07:11 GMT',
232 verbose headers via: '1.1 varnish',
232 verbose headers age: '234',
232 verbose headers connection: 'keep-alive',
232 verbose headers 'x-served-by': 'cache-lcy1125-LCY',
232 verbose headers 'x-cache': 'HIT',
232 verbose headers 'x-cache-hits': '7',
232 verbose headers 'x-timer': 'S1450912031.866429,VS0,VE0',
232 verbose headers vary: 'Accept' }
233 silly get cb [ 200,
233 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
233 silly get etag: '"9AKHVLXH1EZXB2URR2AGEIANA"',
233 silly get 'content-type': 'application/json',
233 silly get 'cache-control': 'max-age=300',
233 silly get 'content-length': '67438',
233 silly get 'accept-ranges': 'bytes',
233 silly get date: 'Wed, 23 Dec 2015 23:07:11 GMT',
233 silly get via: '1.1 varnish',
233 silly get age: '234',
233 silly get connection: 'keep-alive',
233 silly get 'x-served-by': 'cache-lcy1125-LCY',
233 silly get 'x-cache': 'HIT',
233 silly get 'x-cache-hits': '7',
233 silly get 'x-timer': 'S1450912031.866429,VS0,VE0',
233 silly get vary: 'Accept' } ]
234 verbose get saving semver to /Users/izzelupin/.npm/registry.npmjs.org/semver/.cache.json
235 http 200 https://registry.npmjs.org/liftoff
236 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
236 verbose headers etag: '"1K1DGJUDW4OL4H4OUGF86KN4A"',
236 verbose headers 'content-type': 'application/json',
236 verbose headers 'cache-control': 'max-age=300',
236 verbose headers 'content-length': '66561',
236 verbose headers 'accept-ranges': 'bytes',
236 verbose headers date: 'Wed, 23 Dec 2015 23:07:11 GMT',
236 verbose headers via: '1.1 varnish',
236 verbose headers age: '79',
236 verbose headers connection: 'keep-alive',
236 verbose headers 'x-served-by': 'cache-lcy1120-LCY',
236 verbose headers 'x-cache': 'HIT',
236 verbose headers 'x-cache-hits': '1',
236 verbose headers 'x-timer': 'S1450912031.869512,VS0,VE0',
236 verbose headers vary: 'Accept' }
237 silly get cb [ 200,
237 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
237 silly get etag: '"1K1DGJUDW4OL4H4OUGF86KN4A"',
237 silly get 'content-type': 'application/json',
237 silly get 'cache-control': 'max-age=300',
237 silly get 'content-length': '66561',
237 silly get 'accept-ranges': 'bytes',
237 silly get date: 'Wed, 23 Dec 2015 23:07:11 GMT',
237 silly get via: '1.1 varnish',
237 silly get age: '79',
237 silly get connection: 'keep-alive',
237 silly get 'x-served-by': 'cache-lcy1120-LCY',
237 silly get 'x-cache': 'HIT',
237 silly get 'x-cache-hits': '1',
237 silly get 'x-timer': 'S1450912031.869512,VS0,VE0',
237 silly get vary: 'Accept' } ]
238 verbose get saving liftoff to /Users/izzelupin/.npm/registry.npmjs.org/liftoff/.cache.json
239 http 200 https://registry.npmjs.org/gulp-util
240 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
240 verbose headers etag: '"94GGWQEBHGON1URS8EOFRJJ6K"',
240 verbose headers 'content-type': 'application/json',
240 verbose headers 'cache-control': 'max-age=300',
240 verbose headers 'content-length': '61609',
240 verbose headers 'accept-ranges': 'bytes',
240 verbose headers date: 'Wed, 23 Dec 2015 23:07:11 GMT',
240 verbose headers via: '1.1 varnish',
240 verbose headers age: '294',
240 verbose headers connection: 'keep-alive',
240 verbose headers 'x-served-by': 'cache-lcy1135-LCY',
240 verbose headers 'x-cache': 'HIT',
240 verbose headers 'x-cache-hits': '3',
240 verbose headers 'x-timer': 'S1450912031.883442,VS0,VE0',
240 verbose headers vary: 'Accept' }
241 silly get cb [ 200,
241 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
241 silly get etag: '"94GGWQEBHGON1URS8EOFRJJ6K"',
241 silly get 'content-type': 'application/json',
241 silly get 'cache-control': 'max-age=300',
241 silly get 'content-length': '61609',
241 silly get 'accept-ranges': 'bytes',
241 silly get date: 'Wed, 23 Dec 2015 23:07:11 GMT',
241 silly get via: '1.1 varnish',
241 silly get age: '294',
241 silly get connection: 'keep-alive',
241 silly get 'x-served-by': 'cache-lcy1135-LCY',
241 silly get 'x-cache': 'HIT',
241 silly get 'x-cache-hits': '3',
241 silly get 'x-timer': 'S1450912031.883442,VS0,VE0',
241 silly get vary: 'Accept' } ]
242 verbose get saving gulp-util to /Users/izzelupin/.npm/registry.npmjs.org/gulp-util/.cache.json
243 http 200 https://registry.npmjs.org/vinyl-fs
244 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
244 verbose headers etag: '"8JPCD53DEOT13B701Y469OSH3"',
244 verbose headers 'content-type': 'application/json',
244 verbose headers 'cache-control': 'max-age=300',
244 verbose headers 'content-length': '55259',
244 verbose headers 'accept-ranges': 'bytes',
244 verbose headers date: 'Wed, 23 Dec 2015 23:07:11 GMT',
244 verbose headers via: '1.1 varnish',
244 verbose headers age: '202',
244 verbose headers connection: 'keep-alive',
244 verbose headers 'x-served-by': 'cache-lcy1132-LCY',
244 verbose headers 'x-cache': 'HIT',
244 verbose headers 'x-cache-hits': '2',
244 verbose headers 'x-timer': 'S1450912031.915562,VS0,VE0',
244 verbose headers vary: 'Accept' }
245 silly get cb [ 200,
245 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
245 silly get etag: '"8JPCD53DEOT13B701Y469OSH3"',
245 silly get 'content-type': 'application/json',
245 silly get 'cache-control': 'max-age=300',
245 silly get 'content-length': '55259',
245 silly get 'accept-ranges': 'bytes',
245 silly get date: 'Wed, 23 Dec 2015 23:07:11 GMT',
245 silly get via: '1.1 varnish',
245 silly get age: '202',
245 silly get connection: 'keep-alive',
245 silly get 'x-served-by': 'cache-lcy1132-LCY',
245 silly get 'x-cache': 'HIT',
245 silly get 'x-cache-hits': '2',
245 silly get 'x-timer': 'S1450912031.915562,VS0,VE0',
245 silly get vary: 'Accept' } ]
246 verbose get saving vinyl-fs to /Users/izzelupin/.npm/registry.npmjs.org/vinyl-fs/.cache.json
247 silly resolveWithNewModule [email protected] checking installable status
248 silly cache add args [ 'minimist@^1.1.0', null ]
249 verbose cache add spec minimist@^1.1.0
250 silly cache add parsed spec Result {
250 silly cache add raw: 'minimist@^1.1.0',
250 silly cache add scope: null,
250 silly cache add name: 'minimist',
250 silly cache add rawSpec: '^1.1.0',
250 silly cache add spec: '>=1.1.0 <2.0.0',
250 silly cache add type: 'range' }
251 silly addNamed minimist@>=1.1.0 <2.0.0
252 verbose addNamed ">=1.1.0 <2.0.0" is a valid semver range for minimist
253 silly addNameRange { name: 'minimist', range: '>=1.1.0 <2.0.0', hasData: false }
254 silly mapToRegistry name minimist
255 silly mapToRegistry using default registry
256 silly mapToRegistry registry https://registry.npmjs.org/
257 silly mapToRegistry uri https://registry.npmjs.org/minimist
258 verbose addNameRange registry:https://registry.npmjs.org/minimist not in flight; fetching
259 silly resolveWithNewModule [email protected] checking installable status
260 silly cache add args [ 'archy@^1.0.0', null ]
261 verbose cache add spec archy@^1.0.0
262 silly cache add parsed spec Result {
262 silly cache add raw: 'archy@^1.0.0',
262 silly cache add scope: null,
262 silly cache add name: 'archy',
262 silly cache add rawSpec: '^1.0.0',
262 silly cache add spec: '>=1.0.0 <2.0.0',
262 silly cache add type: 'range' }
263 silly addNamed archy@>=1.0.0 <2.0.0
264 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for archy
265 silly addNameRange { name: 'archy', range: '>=1.0.0 <2.0.0', hasData: false }
266 silly mapToRegistry name archy
267 silly mapToRegistry using default registry
268 silly mapToRegistry registry https://registry.npmjs.org/
269 silly mapToRegistry uri https://registry.npmjs.org/archy
270 verbose addNameRange registry:https://registry.npmjs.org/archy not in flight; fetching
271 silly resolveWithNewModule [email protected] checking installable status
272 silly cache add args [ 'orchestrator@^0.3.0', null ]
273 verbose cache add spec orchestrator@^0.3.0
274 silly cache add parsed spec Result {
274 silly cache add raw: 'orchestrator@^0.3.0',
274 silly cache add scope: null,
274 silly cache add name: 'orchestrator',
274 silly cache add rawSpec: '^0.3.0',
274 silly cache add spec: '>=0.3.0 <0.4.0',
274 silly cache add type: 'range' }
275 silly addNamed orchestrator@>=0.3.0 <0.4.0
276 verbose addNamed ">=0.3.0 <0.4.0" is a valid semver range for orchestrator
277 silly addNameRange { name: 'orchestrator', range: '>=0.3.0 <0.4.0', hasData: false }
278 silly mapToRegistry name orchestrator
279 silly mapToRegistry using default registry
280 silly mapToRegistry registry https://registry.npmjs.org/
281 silly mapToRegistry uri https://registry.npmjs.org/orchestrator
282 verbose addNameRange registry:https://registry.npmjs.org/orchestrator not in flight; fetching
283 silly cache afterAdd [email protected]
284 verbose afterAdd /Users/izzelupin/.npm/pretty-hrtime/1.0.1/package/package.json not in flight; writing
285 silly resolveWithNewModule [email protected] checking installable status
286 silly cache add args [ 'interpret@^0.6.2', null ]
287 verbose cache add spec interpret@^0.6.2
288 silly cache add parsed spec Result {
288 silly cache add raw: 'interpret@^0.6.2',
288 silly cache add scope: null,
288 silly cache add name: 'interpret',
288 silly cache add rawSpec: '^0.6.2',
288 silly cache add spec: '>=0.6.2 <0.7.0',
288 silly cache add type: 'range' }
289 silly addNamed interpret@>=0.6.2 <0.7.0
290 verbose addNamed ">=0.6.2 <0.7.0" is a valid semver range for interpret
291 silly addNameRange { name: 'interpret', range: '>=0.6.2 <0.7.0', hasData: false }
292 silly mapToRegistry name interpret
293 silly mapToRegistry using default registry
294 silly mapToRegistry registry https://registry.npmjs.org/
295 silly mapToRegistry uri https://registry.npmjs.org/interpret
296 verbose addNameRange registry:https://registry.npmjs.org/interpret not in flight; fetching
297 silly resolveWithNewModule [email protected] checking installable status
298 silly cache add args [ 'chalk@^1.0.0', null ]
299 verbose cache add spec chalk@^1.0.0
300 silly cache add parsed spec Result {
300 silly cache add raw: 'chalk@^1.0.0',
300 silly cache add scope: null,
300 silly cache add name: 'chalk',
300 silly cache add rawSpec: '^1.0.0',
300 silly cache add spec: '>=1.0.0 <2.0.0',
300 silly cache add type: 'range' }
301 silly addNamed chalk@>=1.0.0 <2.0.0
302 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for chalk
303 silly addNameRange { name: 'chalk', range: '>=1.0.0 <2.0.0', hasData: false }
304 silly mapToRegistry name chalk
305 silly mapToRegistry using default registry
306 silly mapToRegistry registry https://registry.npmjs.org/
307 silly mapToRegistry uri https://registry.npmjs.org/chalk
308 verbose addNameRange registry:https://registry.npmjs.org/chalk not in flight; fetching
309 silly resolveWithNewModule [email protected] checking installable status
310 silly cache add args [ 'v8flags@^2.0.2', null ]
311 verbose cache add spec v8flags@^2.0.2
312 silly cache add parsed spec Result {
312 silly cache add raw: 'v8flags@^2.0.2',
312 silly cache add scope: null,
312 silly cache add name: 'v8flags',
312 silly cache add rawSpec: '^2.0.2',
312 silly cache add spec: '>=2.0.2 <3.0.0',
312 silly cache add type: 'range' }
313 silly addNamed v8flags@>=2.0.2 <3.0.0
314 verbose addNamed ">=2.0.2 <3.0.0" is a valid semver range for v8flags
315 silly addNameRange { name: 'v8flags', range: '>=2.0.2 <3.0.0', hasData: false }
316 silly mapToRegistry name v8flags
317 silly mapToRegistry using default registry
318 silly mapToRegistry registry https://registry.npmjs.org/
319 silly mapToRegistry uri https://registry.npmjs.org/v8flags
320 verbose addNameRange registry:https://registry.npmjs.org/v8flags not in flight; fetching
321 verbose get https://registry.npmjs.org/minimist not expired, no request
322 silly addNameRange number 2 { name: 'minimist', range: '>=1.1.0 <2.0.0', hasData: true }
323 silly addNameRange versions [ 'minimist',
323 silly addNameRange [ '0.0.0',
323 silly addNameRange '0.0.1',
323 silly addNameRange '0.0.2',
323 silly addNameRange '0.0.3',
323 silly addNameRange '0.0.4',
323 silly addNameRange '0.0.5',
323 silly addNameRange '0.0.6',
323 silly addNameRange '0.0.7',
323 silly addNameRange '0.0.8',
323 silly addNameRange '0.0.9',
323 silly addNameRange '0.0.10',
323 silly addNameRange '0.1.0',
323 silly addNameRange '0.2.0',
323 silly addNameRange '1.0.0',
323 silly addNameRange '1.1.0',
323 silly addNameRange '1.1.1',
323 silly addNameRange '1.1.2',
323 silly addNameRange '1.1.3',
323 silly addNameRange '1.2.0' ] ]
324 silly addNamed [email protected]
325 verbose addNamed "1.2.0" is a plain semver version for minimist
326 verbose get https://registry.npmjs.org/archy not expired, no request
327 silly addNameRange number 2 { name: 'archy', range: '>=1.0.0 <2.0.0', hasData: true }
328 silly addNameRange versions [ 'archy', [ '0.0.0', '0.0.1', '0.0.2', '1.0.0' ] ]
329 silly addNamed [email protected]
330 verbose addNamed "1.0.0" is a plain semver version for archy
331 silly resolveWithNewModule [email protected] checking installable status
332 silly cache add args [ 'semver@^4.1.0', null ]
333 verbose cache add spec semver@^4.1.0
334 silly cache add parsed spec Result {
334 silly cache add raw: 'semver@^4.1.0',
334 silly cache add scope: null,
334 silly cache add name: 'semver',
334 silly cache add rawSpec: '^4.1.0',
334 silly cache add spec: '>=4.1.0 <5.0.0',
334 silly cache add type: 'range' }
335 silly addNamed semver@>=4.1.0 <5.0.0
336 verbose addNamed ">=4.1.0 <5.0.0" is a valid semver range for semver
337 silly addNameRange { name: 'semver', range: '>=4.1.0 <5.0.0', hasData: false }
338 silly mapToRegistry name semver
339 silly mapToRegistry using default registry
340 silly mapToRegistry registry https://registry.npmjs.org/
341 silly mapToRegistry uri https://registry.npmjs.org/semver
342 verbose addNameRange registry:https://registry.npmjs.org/semver not in flight; fetching
343 verbose get https://registry.npmjs.org/orchestrator not expired, no request
344 silly addNameRange number 2 { name: 'orchestrator', range: '>=0.3.0 <0.4.0', hasData: true }
345 silly addNameRange versions [ 'orchestrator',
345 silly addNameRange [ '0.0.2',
345 silly addNameRange '0.0.3',
345 silly addNameRange '0.0.4',
345 silly addNameRange '0.0.5',
345 silly addNameRange '0.0.6',
345 silly addNameRange '0.0.7',
345 silly addNameRange '0.0.8',
345 silly addNameRange '0.1.0',
345 silly addNameRange '0.2.0',
345 silly addNameRange '0.2.1',
345 silly addNameRange '0.3.0',
345 silly addNameRange '0.3.1',
345 silly addNameRange '0.3.3',
345 silly addNameRange '0.3.4',
345 silly addNameRange '0.3.5',
345 silly addNameRange '0.3.6',
345 silly addNameRange '0.3.7' ] ]
346 silly addNamed [email protected]
347 verbose addNamed "0.3.7" is a plain semver version for orchestrator
348 verbose get https://registry.npmjs.org/interpret not expired, no request
349 silly addNameRange number 2 { name: 'interpret', range: '>=0.6.2 <0.7.0', hasData: true }
350 silly addNameRange versions [ 'interpret',
350 silly addNameRange [ '0.1.0',
350 silly addNameRange '0.2.0',
350 silly addNameRange '0.3.0',
350 silly addNameRange '0.3.1',
350 silly addNameRange '0.3.2',
350 silly addNameRange '0.3.3',
350 silly addNameRange '0.3.4',
350 silly addNameRange '0.3.5',
350 silly addNameRange '0.3.6',
350 silly addNameRange '0.3.7',
350 silly addNameRange '0.3.8',
350 silly addNameRange '0.3.9',
350 silly addNameRange '0.3.10',
350 silly addNameRange '0.4.0',
350 silly addNameRange '0.4.1',
350 silly addNameRange '0.4.2',
350 silly addNameRange '0.4.3',
350 silly addNameRange '0.5.0',
350 silly addNameRange '0.5.1',
350 silly addNameRange '0.5.2',
350 silly addNameRange '0.6.0',
350 silly addNameRange '0.6.1',
350 silly addNameRange '0.6.2',
350 silly addNameRange '0.6.3',
350 silly addNameRange '0.6.4',
350 silly addNameRange '0.6.5',
350 silly addNameRange '0.6.6',
350 silly addNameRange '1.0.0' ] ]
351 silly addNamed [email protected]
352 verbose addNamed "0.6.6" is a plain semver version for interpret
353 verbose get https://registry.npmjs.org/chalk not expired, no request
354 silly addNameRange number 2 { name: 'chalk', range: '>=1.0.0 <2.0.0', hasData: true }
355 silly addNameRange versions [ 'chalk',
355 silly addNameRange [ '0.1.0',
355 silly addNameRange '0.1.1',
355 silly addNameRange '0.2.0',
355 silly addNameRange '0.2.1',
355 silly addNameRange '0.3.0',
355 silly addNameRange '0.4.0',
355 silly addNameRange '0.5.0',
355 silly addNameRange '0.5.1',
355 silly addNameRange '1.0.0',
355 silly addNameRange '1.1.0',
355 silly addNameRange '1.1.1' ] ]
356 silly addNamed [email protected]
357 verbose addNamed "1.1.1" is a plain semver version for chalk
358 silly resolveWithNewModule [email protected] checking installable status
359 silly cache add args [ 'liftoff@^2.1.0', null ]
360 verbose cache add spec liftoff@^2.1.0
361 silly cache add parsed spec Result {
361 silly cache add raw: 'liftoff@^2.1.0',
361 silly cache add scope: null,
361 silly cache add name: 'liftoff',
361 silly cache add rawSpec: '^2.1.0',
361 silly cache add spec: '>=2.1.0 <3.0.0',
361 silly cache add type: 'range' }
362 silly addNamed liftoff@>=2.1.0 <3.0.0
363 verbose addNamed ">=2.1.0 <3.0.0" is a valid semver range for liftoff
364 silly addNameRange { name: 'liftoff', range: '>=2.1.0 <3.0.0', hasData: false }
365 silly mapToRegistry name liftoff
366 silly mapToRegistry using default registry
367 silly mapToRegistry registry https://registry.npmjs.org/
368 silly mapToRegistry uri https://registry.npmjs.org/liftoff
369 verbose addNameRange registry:https://registry.npmjs.org/liftoff not in flight; fetching
370 silly resolveWithNewModule [email protected] checking installable status
371 silly cache add args [ 'gulp-util@^3.0.0', null ]
372 verbose cache add spec gulp-util@^3.0.0
373 silly cache add parsed spec Result {
373 silly cache add raw: 'gulp-util@^3.0.0',
373 silly cache add scope: null,
373 silly cache add name: 'gulp-util',
373 silly cache add rawSpec: '^3.0.0',
373 silly cache add spec: '>=3.0.0 <4.0.0',
373 silly cache add type: 'range' }
374 silly addNamed gulp-util@>=3.0.0 <4.0.0
375 verbose addNamed ">=3.0.0 <4.0.0" is a valid semver range for gulp-util
376 silly addNameRange { name: 'gulp-util', range: '>=3.0.0 <4.0.0', hasData: false }
377 silly mapToRegistry name gulp-util
378 silly mapToRegistry using default registry
379 silly mapToRegistry registry https://registry.npmjs.org/
380 silly mapToRegistry uri https://registry.npmjs.org/gulp-util
381 verbose addNameRange registry:https://registry.npmjs.org/gulp-util not in flight; fetching
382 verbose get https://registry.npmjs.org/v8flags not expired, no request
383 silly addNameRange number 2 { name: 'v8flags', range: '>=2.0.2 <3.0.0', hasData: true }
384 silly addNameRange versions [ 'v8flags',
384 silly addNameRange [ '0.1.0',
384 silly addNameRange '0.2.0',
384 silly addNameRange '0.3.0',
384 silly addNameRange '1.0.0',
384 silly addNameRange '1.0.1',
384 silly addNameRange '1.0.2',
384 silly addNameRange '1.0.3',
384 silly addNameRange '1.0.4',
384 silly addNameRange '1.0.5',
384 silly addNameRange '1.0.6',
384 silly addNameRange '1.0.7',
384 silly addNameRange '1.0.8',
384 silly addNameRange '2.0.0',
384 silly addNameRange '2.0.2',
384 silly addNameRange '2.0.3',
384 silly addNameRange '2.0.4',
384 silly addNameRange '2.0.5',
384 silly addNameRange '2.0.6',
384 silly addNameRange '2.0.7',
384 silly addNameRange '2.0.8',
384 silly addNameRange '2.0.9',
384 silly addNameRange '2.0.10',
384 silly addNameRange '2.0.11' ] ]
385 silly addNamed [email protected]
386 verbose addNamed "2.0.11" is a plain semver version for v8flags
387 silly resolveWithNewModule [email protected] checking installable status
388 silly cache add args [ 'vinyl-fs@^0.3.0', null ]
389 verbose cache add spec vinyl-fs@^0.3.0
390 silly cache add parsed spec Result {
390 silly cache add raw: 'vinyl-fs@^0.3.0',
390 silly cache add scope: null,
390 silly cache add name: 'vinyl-fs',
390 silly cache add rawSpec: '^0.3.0',
390 silly cache add spec: '>=0.3.0 <0.4.0',
390 silly cache add type: 'range' }
391 silly addNamed vinyl-fs@>=0.3.0 <0.4.0
392 verbose addNamed ">=0.3.0 <0.4.0" is a valid semver range for vinyl-fs
393 silly addNameRange { name: 'vinyl-fs', range: '>=0.3.0 <0.4.0', hasData: false }
394 silly mapToRegistry name vinyl-fs
395 silly mapToRegistry using default registry
396 silly mapToRegistry registry https://registry.npmjs.org/
397 silly mapToRegistry uri https://registry.npmjs.org/vinyl-fs
398 verbose addNameRange registry:https://registry.npmjs.org/vinyl-fs not in flight; fetching
399 verbose afterAdd /Users/izzelupin/.npm/pretty-hrtime/1.0.1/package/package.json written
400 silly mapToRegistry name v8flags
401 silly mapToRegistry using default registry
402 silly mapToRegistry registry https://registry.npmjs.org/
403 silly mapToRegistry uri https://registry.npmjs.org/v8flags
404 verbose addRemoteTarball https://registry.npmjs.org/v8flags/-/v8flags-2.0.11.tgz not in flight; adding
405 verbose addRemoteTarball [ 'https://registry.npmjs.org/v8flags/-/v8flags-2.0.11.tgz',
405 verbose addRemoteTarball 'bca8f30f0d6d60612cc2c00641e6962d42ae6881' ]
406 verbose get https://registry.npmjs.org/semver not expired, no request
407 silly addNameRange number 2 { name: 'semver', range: '>=4.1.0 <5.0.0', hasData: true }
408 silly addNameRange versions [ 'semver',
408 silly addNameRange [ '1.0.0',
408 silly addNameRange '1.0.1',
408 silly addNameRange '1.0.2',
408 silly addNameRange '1.0.3',
408 silly addNameRange '1.0.4',
408 silly addNameRange '1.0.5',
408 silly addNameRange '1.0.6',
408 silly addNameRange '1.0.7',
408 silly addNameRange '1.0.8',
408 silly addNameRange '1.0.9',
408 silly addNameRange '1.0.10',