-
Notifications
You must be signed in to change notification settings - Fork 0
/
npm-debug.log
10799 lines (10799 loc) · 529 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 '--global',
1 verbose cli 'md-to-pdf' ]
2 info using npm@3.9.5
3 info using node@v6.2.2
4 silly loadCurrentTree Starting
5 silly install loadCurrentTree
6 silly install readGlobalPackageData
7 silly fetchPackageMetaData md-to-pdf
8 silly fetchNamedPackageData md-to-pdf
9 silly mapToRegistry name md-to-pdf
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry data Result {
12 silly mapToRegistry raw: 'md-to-pdf',
12 silly mapToRegistry scope: null,
12 silly mapToRegistry name: 'md-to-pdf',
12 silly mapToRegistry rawSpec: '',
12 silly mapToRegistry spec: 'latest',
12 silly mapToRegistry type: 'tag' }
13 silly mapToRegistry uri https://registry.npmjs.org/md-to-pdf
14 verbose request uri https://registry.npmjs.org/md-to-pdf
15 verbose request no auth needed
16 info attempt registry request try #1 at 7:57:08 PM
17 verbose request id ee70adfbe91f8794
18 http request GET https://registry.npmjs.org/md-to-pdf
19 http 200 https://registry.npmjs.org/md-to-pdf
20 verbose headers { server: 'nginx/1.10.1',
20 verbose headers 'content-type': 'application/json',
20 verbose headers 'last-modified': 'Fri, 28 Oct 2016 15:50:59 GMT',
20 verbose headers etag: 'W/"581373e3-16a8"',
20 verbose headers 'content-encoding': 'gzip',
20 verbose headers 'cache-control': 'max-age=300',
20 verbose headers 'content-length': '1270',
20 verbose headers 'accept-ranges': 'bytes',
20 verbose headers date: 'Tue, 19 Sep 2017 22:57:08 GMT',
20 verbose headers via: '1.1 varnish',
20 verbose headers age: '0',
20 verbose headers connection: 'keep-alive',
20 verbose headers 'x-served-by': 'cache-gru17125-GRU',
20 verbose headers 'x-cache': 'MISS',
20 verbose headers 'x-cache-hits': '0',
20 verbose headers 'x-timer': 'S1505861828.238133,VS0,VE616',
20 verbose headers vary: 'Accept-Encoding, Accept' }
21 silly get cb [ 200,
21 silly get { server: 'nginx/1.10.1',
21 silly get 'content-type': 'application/json',
21 silly get 'last-modified': 'Fri, 28 Oct 2016 15:50:59 GMT',
21 silly get etag: 'W/"581373e3-16a8"',
21 silly get 'content-encoding': 'gzip',
21 silly get 'cache-control': 'max-age=300',
21 silly get 'content-length': '1270',
21 silly get 'accept-ranges': 'bytes',
21 silly get date: 'Tue, 19 Sep 2017 22:57:08 GMT',
21 silly get via: '1.1 varnish',
21 silly get age: '0',
21 silly get connection: 'keep-alive',
21 silly get 'x-served-by': 'cache-gru17125-GRU',
21 silly get 'x-cache': 'MISS',
21 silly get 'x-cache-hits': '0',
21 silly get 'x-timer': 'S1505861828.238133,VS0,VE616',
21 silly get vary: 'Accept-Encoding, Accept' } ]
22 verbose get saving md-to-pdf to /Users/juanpablo/.npm/registry.npmjs.org/md-to-pdf/.cache.json
23 verbose correctMkdir /Users/juanpablo/.npm correctMkdir not in flight; initializing
24 silly install normalizeTree
25 silly loadCurrentTree Finishing
26 silly loadIdealTree Starting
27 silly install loadIdealTree
28 silly cloneCurrentTree Starting
29 silly install cloneCurrentTreeToIdealTree
30 silly cloneCurrentTree Finishing
31 silly loadShrinkwrap Starting
32 silly install loadShrinkwrap
33 silly loadShrinkwrap Finishing
34 silly loadAllDepsIntoIdealTree Starting
35 silly install loadAllDepsIntoIdealTree
36 silly resolveWithNewModule md-to-pdf@1.1.0 checking installable status
37 silly cache add args [ 'md-to-pdf', null ]
38 verbose cache add spec md-to-pdf
39 silly cache add parsed spec Result {
39 silly cache add raw: 'md-to-pdf',
39 silly cache add scope: null,
39 silly cache add name: 'md-to-pdf',
39 silly cache add rawSpec: '',
39 silly cache add spec: 'latest',
39 silly cache add type: 'tag' }
40 silly addNamed md-to-pdf@latest
41 verbose addNamed "latest" is being treated as a dist-tag for md-to-pdf
42 info addNameTag [ 'md-to-pdf', 'latest' ]
43 silly mapToRegistry name md-to-pdf
44 silly mapToRegistry using default registry
45 silly mapToRegistry registry https://registry.npmjs.org/
46 silly mapToRegistry data Result {
46 silly mapToRegistry raw: 'md-to-pdf',
46 silly mapToRegistry scope: null,
46 silly mapToRegistry name: 'md-to-pdf',
46 silly mapToRegistry rawSpec: '',
46 silly mapToRegistry spec: 'latest',
46 silly mapToRegistry type: 'tag' }
47 silly mapToRegistry uri https://registry.npmjs.org/md-to-pdf
48 verbose addNameTag registry:https://registry.npmjs.org/md-to-pdf not in flight; fetching
49 verbose get https://registry.npmjs.org/md-to-pdf not expired, no request
50 silly addNameTag next cb for md-to-pdf with tag latest
51 silly addNamed md-to-pdf@1.1.0
52 verbose addNamed "1.1.0" is a plain semver version for md-to-pdf
53 silly mapToRegistry name md-to-pdf
54 silly mapToRegistry using default registry
55 silly mapToRegistry registry https://registry.npmjs.org/
56 silly mapToRegistry data Result {
56 silly mapToRegistry raw: 'md-to-pdf',
56 silly mapToRegistry scope: null,
56 silly mapToRegistry name: 'md-to-pdf',
56 silly mapToRegistry rawSpec: '',
56 silly mapToRegistry spec: 'latest',
56 silly mapToRegistry type: 'tag' }
57 silly mapToRegistry uri https://registry.npmjs.org/md-to-pdf
58 verbose addRemoteTarball https://registry.npmjs.org/md-to-pdf/-/md-to-pdf-1.1.0.tgz not in flight; adding
59 verbose addRemoteTarball [ 'https://registry.npmjs.org/md-to-pdf/-/md-to-pdf-1.1.0.tgz',
59 verbose addRemoteTarball 'c74277fd569f85354c858eeb9c3e7988caaee4e4' ]
60 info retry fetch attempt 1 at 7:57:09 PM
61 info attempt registry request try #1 at 7:57:09 PM
62 http fetch GET https://registry.npmjs.org/md-to-pdf/-/md-to-pdf-1.1.0.tgz
63 http fetch 200 https://registry.npmjs.org/md-to-pdf/-/md-to-pdf-1.1.0.tgz
64 silly fetchAndShaCheck shasum c74277fd569f85354c858eeb9c3e7988caaee4e4
65 verbose addTmpTarball /var/folders/82/gm4jbfv12pd7b9shyd3x9zv40000gn/T/npm-1769-a323be53/registry.npmjs.org/md-to-pdf/-/md-to-pdf-1.1.0.tgz not in flight; adding
66 verbose addTmpTarball already have metadata; skipping unpack for md-to-pdf@1.1.0
67 verbose correctMkdir /Users/juanpablo/.npm correctMkdir not in flight; initializing
68 silly cache afterAdd md-to-pdf@1.1.0
69 verbose afterAdd /Users/juanpablo/.npm/md-to-pdf/1.1.0/package/package.json not in flight; writing
70 verbose correctMkdir /Users/juanpablo/.npm correctMkdir not in flight; initializing
71 verbose afterAdd /Users/juanpablo/.npm/md-to-pdf/1.1.0/package/package.json written
72 silly fetchNamedPackageData markdown-pdf
73 silly mapToRegistry name markdown-pdf
74 silly mapToRegistry using default registry
75 silly mapToRegistry registry https://registry.npmjs.org/
76 silly mapToRegistry data Result {
76 silly mapToRegistry raw: 'markdown-pdf',
76 silly mapToRegistry scope: null,
76 silly mapToRegistry name: 'markdown-pdf',
76 silly mapToRegistry rawSpec: '',
76 silly mapToRegistry spec: 'latest',
76 silly mapToRegistry type: 'tag' }
77 silly mapToRegistry uri https://registry.npmjs.org/markdown-pdf
78 verbose request uri https://registry.npmjs.org/markdown-pdf
79 verbose request no auth needed
80 info attempt registry request try #1 at 7:57:09 PM
81 http request GET https://registry.npmjs.org/markdown-pdf
82 http 200 https://registry.npmjs.org/markdown-pdf
83 verbose headers { server: 'nginx/1.10.1',
83 verbose headers 'content-type': 'application/json',
83 verbose headers 'last-modified': 'Tue, 04 Jul 2017 14:46:06 GMT',
83 verbose headers etag: 'W/"595baa2e-db4f"',
83 verbose headers 'content-encoding': 'gzip',
83 verbose headers 'cache-control': 'max-age=300',
83 verbose headers 'content-length': '7392',
83 verbose headers 'accept-ranges': 'bytes',
83 verbose headers date: 'Tue, 19 Sep 2017 22:57:09 GMT',
83 verbose headers via: '1.1 varnish',
83 verbose headers age: '0',
83 verbose headers connection: 'keep-alive',
83 verbose headers 'x-served-by': 'cache-gru17125-GRU',
83 verbose headers 'x-cache': 'MISS',
83 verbose headers 'x-cache-hits': '0',
83 verbose headers 'x-timer': 'S1505861829.272953,VS0,VE201',
83 verbose headers vary: 'Accept-Encoding, Accept' }
84 silly get cb [ 200,
84 silly get { server: 'nginx/1.10.1',
84 silly get 'content-type': 'application/json',
84 silly get 'last-modified': 'Tue, 04 Jul 2017 14:46:06 GMT',
84 silly get etag: 'W/"595baa2e-db4f"',
84 silly get 'content-encoding': 'gzip',
84 silly get 'cache-control': 'max-age=300',
84 silly get 'content-length': '7392',
84 silly get 'accept-ranges': 'bytes',
84 silly get date: 'Tue, 19 Sep 2017 22:57:09 GMT',
84 silly get via: '1.1 varnish',
84 silly get age: '0',
84 silly get connection: 'keep-alive',
84 silly get 'x-served-by': 'cache-gru17125-GRU',
84 silly get 'x-cache': 'MISS',
84 silly get 'x-cache-hits': '0',
84 silly get 'x-timer': 'S1505861829.272953,VS0,VE201',
84 silly get vary: 'Accept-Encoding, Accept' } ]
85 verbose get saving markdown-pdf to /Users/juanpablo/.npm/registry.npmjs.org/markdown-pdf/.cache.json
86 verbose correctMkdir /Users/juanpablo/.npm correctMkdir not in flight; initializing
87 silly resolveWithNewModule markdown-pdf@7.0.0 checking installable status
88 silly cache add args [ 'markdown-pdf@^7.0.0', null ]
89 verbose cache add spec markdown-pdf@^7.0.0
90 silly cache add parsed spec Result {
90 silly cache add raw: 'markdown-pdf@^7.0.0',
90 silly cache add scope: null,
90 silly cache add name: 'markdown-pdf',
90 silly cache add rawSpec: '^7.0.0',
90 silly cache add spec: '>=7.0.0 <8.0.0',
90 silly cache add type: 'range' }
91 silly addNamed markdown-pdf@>=7.0.0 <8.0.0
92 verbose addNamed ">=7.0.0 <8.0.0" is a valid semver range for markdown-pdf
93 silly addNameRange { name: 'markdown-pdf', range: '>=7.0.0 <8.0.0', hasData: false }
94 silly mapToRegistry name markdown-pdf
95 silly mapToRegistry using default registry
96 silly mapToRegistry registry https://registry.npmjs.org/
97 silly mapToRegistry data Result {
97 silly mapToRegistry raw: 'markdown-pdf',
97 silly mapToRegistry scope: null,
97 silly mapToRegistry name: 'markdown-pdf',
97 silly mapToRegistry rawSpec: '',
97 silly mapToRegistry spec: 'latest',
97 silly mapToRegistry type: 'tag' }
98 silly mapToRegistry uri https://registry.npmjs.org/markdown-pdf
99 verbose addNameRange registry:https://registry.npmjs.org/markdown-pdf not in flight; fetching
100 verbose get https://registry.npmjs.org/markdown-pdf not expired, no request
101 silly addNameRange number 2 { name: 'markdown-pdf', range: '>=7.0.0 <8.0.0', hasData: true }
102 silly addNameRange versions [ 'markdown-pdf',
102 silly addNameRange [ '0.0.0',
102 silly addNameRange '0.1.0',
102 silly addNameRange '0.1.1',
102 silly addNameRange '0.2.0',
102 silly addNameRange '0.2.1',
102 silly addNameRange '0.3.0',
102 silly addNameRange '0.4.0',
102 silly addNameRange '0.4.1',
102 silly addNameRange '1.0.0',
102 silly addNameRange '1.0.1',
102 silly addNameRange '1.1.0',
102 silly addNameRange '1.1.1',
102 silly addNameRange '1.2.0',
102 silly addNameRange '2.0.0-pre.0',
102 silly addNameRange '2.0.0-pre.1',
102 silly addNameRange '2.0.0-pre.2',
102 silly addNameRange '2.0.0',
102 silly addNameRange '2.1.0',
102 silly addNameRange '2.2.0',
102 silly addNameRange '3.0.0',
102 silly addNameRange '3.0.1',
102 silly addNameRange '3.0.2',
102 silly addNameRange '3.1.0',
102 silly addNameRange '4.0.0',
102 silly addNameRange '4.0.1',
102 silly addNameRange '5.0.0',
102 silly addNameRange '5.1.0',
102 silly addNameRange '5.1.1',
102 silly addNameRange '5.2.0',
102 silly addNameRange '5.3.0',
102 silly addNameRange '6.0.0',
102 silly addNameRange '7.0.0',
102 silly addNameRange '8.0.0' ] ]
103 silly addNamed markdown-pdf@7.0.0
104 verbose addNamed "7.0.0" is a plain semver version for markdown-pdf
105 silly mapToRegistry name markdown-pdf
106 silly mapToRegistry using default registry
107 silly mapToRegistry registry https://registry.npmjs.org/
108 silly mapToRegistry data Result {
108 silly mapToRegistry raw: 'markdown-pdf',
108 silly mapToRegistry scope: null,
108 silly mapToRegistry name: 'markdown-pdf',
108 silly mapToRegistry rawSpec: '',
108 silly mapToRegistry spec: 'latest',
108 silly mapToRegistry type: 'tag' }
109 silly mapToRegistry uri https://registry.npmjs.org/markdown-pdf
110 verbose addRemoteTarball https://registry.npmjs.org/markdown-pdf/-/markdown-pdf-7.0.0.tgz not in flight; adding
111 verbose addRemoteTarball [ 'https://registry.npmjs.org/markdown-pdf/-/markdown-pdf-7.0.0.tgz',
111 verbose addRemoteTarball '3c70e09a6ef3dae2c5059b3a2294bd6581d269ce' ]
112 info retry fetch attempt 1 at 7:57:09 PM
113 info attempt registry request try #1 at 7:57:09 PM
114 http fetch GET https://registry.npmjs.org/markdown-pdf/-/markdown-pdf-7.0.0.tgz
115 http fetch 200 https://registry.npmjs.org/markdown-pdf/-/markdown-pdf-7.0.0.tgz
116 silly fetchAndShaCheck shasum 3c70e09a6ef3dae2c5059b3a2294bd6581d269ce
117 verbose addTmpTarball /var/folders/82/gm4jbfv12pd7b9shyd3x9zv40000gn/T/npm-1769-a323be53/registry.npmjs.org/markdown-pdf/-/markdown-pdf-7.0.0.tgz not in flight; adding
118 verbose addTmpTarball already have metadata; skipping unpack for markdown-pdf@7.0.0
119 verbose correctMkdir /Users/juanpablo/.npm correctMkdir not in flight; initializing
120 silly cache afterAdd markdown-pdf@7.0.0
121 verbose afterAdd /Users/juanpablo/.npm/markdown-pdf/7.0.0/package/package.json not in flight; writing
122 verbose correctMkdir /Users/juanpablo/.npm correctMkdir not in flight; initializing
123 verbose afterAdd /Users/juanpablo/.npm/markdown-pdf/7.0.0/package/package.json written
124 silly fetchNamedPackageData commander
125 silly mapToRegistry name commander
126 silly mapToRegistry using default registry
127 silly mapToRegistry registry https://registry.npmjs.org/
128 silly mapToRegistry data Result {
128 silly mapToRegistry raw: 'commander',
128 silly mapToRegistry scope: null,
128 silly mapToRegistry name: 'commander',
128 silly mapToRegistry rawSpec: '',
128 silly mapToRegistry spec: 'latest',
128 silly mapToRegistry type: 'tag' }
129 silly mapToRegistry uri https://registry.npmjs.org/commander
130 silly fetchNamedPackageData duplexer
131 silly mapToRegistry name duplexer
132 silly mapToRegistry using default registry
133 silly mapToRegistry registry https://registry.npmjs.org/
134 silly mapToRegistry data Result {
134 silly mapToRegistry raw: 'duplexer',
134 silly mapToRegistry scope: null,
134 silly mapToRegistry name: 'duplexer',
134 silly mapToRegistry rawSpec: '',
134 silly mapToRegistry spec: 'latest',
134 silly mapToRegistry type: 'tag' }
135 silly mapToRegistry uri https://registry.npmjs.org/duplexer
136 silly fetchNamedPackageData extend
137 silly mapToRegistry name extend
138 silly mapToRegistry using default registry
139 silly mapToRegistry registry https://registry.npmjs.org/
140 silly mapToRegistry data Result {
140 silly mapToRegistry raw: 'extend',
140 silly mapToRegistry scope: null,
140 silly mapToRegistry name: 'extend',
140 silly mapToRegistry rawSpec: '',
140 silly mapToRegistry spec: 'latest',
140 silly mapToRegistry type: 'tag' }
141 silly mapToRegistry uri https://registry.npmjs.org/extend
142 silly fetchNamedPackageData highlight.js
143 silly mapToRegistry name highlight.js
144 silly mapToRegistry using default registry
145 silly mapToRegistry registry https://registry.npmjs.org/
146 silly mapToRegistry data Result {
146 silly mapToRegistry raw: 'highlight.js',
146 silly mapToRegistry scope: null,
146 silly mapToRegistry name: 'highlight.js',
146 silly mapToRegistry rawSpec: '',
146 silly mapToRegistry spec: 'latest',
146 silly mapToRegistry type: 'tag' }
147 silly mapToRegistry uri https://registry.npmjs.org/highlight.js
148 silly fetchNamedPackageData phantomjs-prebuilt
149 silly mapToRegistry name phantomjs-prebuilt
150 silly mapToRegistry using default registry
151 silly mapToRegistry registry https://registry.npmjs.org/
152 silly mapToRegistry data Result {
152 silly mapToRegistry raw: 'phantomjs-prebuilt',
152 silly mapToRegistry scope: null,
152 silly mapToRegistry name: 'phantomjs-prebuilt',
152 silly mapToRegistry rawSpec: '',
152 silly mapToRegistry spec: 'latest',
152 silly mapToRegistry type: 'tag' }
153 silly mapToRegistry uri https://registry.npmjs.org/phantomjs-prebuilt
154 silly fetchNamedPackageData remarkable
155 silly mapToRegistry name remarkable
156 silly mapToRegistry using default registry
157 silly mapToRegistry registry https://registry.npmjs.org/
158 silly mapToRegistry data Result {
158 silly mapToRegistry raw: 'remarkable',
158 silly mapToRegistry scope: null,
158 silly mapToRegistry name: 'remarkable',
158 silly mapToRegistry rawSpec: '',
158 silly mapToRegistry spec: 'latest',
158 silly mapToRegistry type: 'tag' }
159 silly mapToRegistry uri https://registry.npmjs.org/remarkable
160 silly fetchNamedPackageData stream-from-to
161 silly mapToRegistry name stream-from-to
162 silly mapToRegistry using default registry
163 silly mapToRegistry registry https://registry.npmjs.org/
164 silly mapToRegistry data Result {
164 silly mapToRegistry raw: 'stream-from-to',
164 silly mapToRegistry scope: null,
164 silly mapToRegistry name: 'stream-from-to',
164 silly mapToRegistry rawSpec: '',
164 silly mapToRegistry spec: 'latest',
164 silly mapToRegistry type: 'tag' }
165 silly mapToRegistry uri https://registry.npmjs.org/stream-from-to
166 silly fetchNamedPackageData through2
167 silly mapToRegistry name through2
168 silly mapToRegistry using default registry
169 silly mapToRegistry registry https://registry.npmjs.org/
170 silly mapToRegistry data Result {
170 silly mapToRegistry raw: 'through2',
170 silly mapToRegistry scope: null,
170 silly mapToRegistry name: 'through2',
170 silly mapToRegistry rawSpec: '',
170 silly mapToRegistry spec: 'latest',
170 silly mapToRegistry type: 'tag' }
171 silly mapToRegistry uri https://registry.npmjs.org/through2
172 silly fetchNamedPackageData tmp
173 silly mapToRegistry name tmp
174 silly mapToRegistry using default registry
175 silly mapToRegistry registry https://registry.npmjs.org/
176 silly mapToRegistry data Result {
176 silly mapToRegistry raw: 'tmp',
176 silly mapToRegistry scope: null,
176 silly mapToRegistry name: 'tmp',
176 silly mapToRegistry rawSpec: '',
176 silly mapToRegistry spec: 'latest',
176 silly mapToRegistry type: 'tag' }
177 silly mapToRegistry uri https://registry.npmjs.org/tmp
178 verbose request uri https://registry.npmjs.org/highlight.js
179 verbose request no auth needed
180 info attempt registry request try #1 at 7:57:09 PM
181 http request GET https://registry.npmjs.org/highlight.js
182 verbose request uri https://registry.npmjs.org/remarkable
183 verbose request no auth needed
184 info attempt registry request try #1 at 7:57:09 PM
185 http request GET https://registry.npmjs.org/remarkable
186 verbose request uri https://registry.npmjs.org/stream-from-to
187 verbose request no auth needed
188 info attempt registry request try #1 at 7:57:09 PM
189 http request GET https://registry.npmjs.org/stream-from-to
190 verbose request uri https://registry.npmjs.org/extend
191 verbose request no auth needed
192 info attempt registry request try #1 at 7:57:09 PM
193 verbose etag W/"59a978f4-4205"
194 verbose lastModified Fri, 01 Sep 2017 15:12:52 GMT
195 http request GET https://registry.npmjs.org/extend
196 verbose request uri https://registry.npmjs.org/phantomjs-prebuilt
197 verbose request no auth needed
198 info attempt registry request try #1 at 7:57:09 PM
199 verbose etag "51F3794MQ2RA7YO6AGP89VKLH"
200 http request GET https://registry.npmjs.org/phantomjs-prebuilt
201 verbose request uri https://registry.npmjs.org/duplexer
202 verbose request no auth needed
203 info attempt registry request try #1 at 7:57:09 PM
204 verbose etag W/"58d35493-3037"
205 verbose lastModified Thu, 23 Mar 2017 04:52:35 GMT
206 http request GET https://registry.npmjs.org/duplexer
207 verbose request uri https://registry.npmjs.org/commander
208 verbose request no auth needed
209 info attempt registry request try #1 at 7:57:09 PM
210 verbose etag W/"59af0947-115e9"
211 verbose lastModified Tue, 05 Sep 2017 20:29:59 GMT
212 http request GET https://registry.npmjs.org/commander
213 verbose request uri https://registry.npmjs.org/through2
214 verbose request no auth needed
215 info attempt registry request try #1 at 7:57:09 PM
216 verbose etag W/"59ad363f-aa3f"
217 verbose lastModified Mon, 04 Sep 2017 11:17:19 GMT
218 http request GET https://registry.npmjs.org/through2
219 verbose request uri https://registry.npmjs.org/tmp
220 verbose request no auth needed
221 info attempt registry request try #1 at 7:57:09 PM
222 verbose etag W/"598ecaab-af58"
223 verbose lastModified Sat, 12 Aug 2017 09:30:19 GMT
224 http request GET https://registry.npmjs.org/tmp
225 http 200 https://registry.npmjs.org/highlight.js
226 verbose headers { server: 'nginx/1.10.1',
226 verbose headers 'content-type': 'application/json',
226 verbose headers 'last-modified': 'Fri, 14 Jul 2017 08:32:45 GMT',
226 verbose headers etag: 'W/"596881ad-5339f"',
226 verbose headers 'content-encoding': 'gzip',
226 verbose headers 'cache-control': 'max-age=300',
226 verbose headers 'content-length': '14998',
226 verbose headers 'accept-ranges': 'bytes',
226 verbose headers date: 'Tue, 19 Sep 2017 22:57:09 GMT',
226 verbose headers via: '1.1 varnish',
226 verbose headers age: '170',
226 verbose headers connection: 'keep-alive',
226 verbose headers 'x-served-by': 'cache-gru17125-GRU',
226 verbose headers 'x-cache': 'HIT',
226 verbose headers 'x-cache-hits': '1',
226 verbose headers 'x-timer': 'S1505861830.703111,VS0,VE0',
226 verbose headers vary: 'Accept-Encoding, Accept' }
227 silly get cb [ 200,
227 silly get { server: 'nginx/1.10.1',
227 silly get 'content-type': 'application/json',
227 silly get 'last-modified': 'Fri, 14 Jul 2017 08:32:45 GMT',
227 silly get etag: 'W/"596881ad-5339f"',
227 silly get 'content-encoding': 'gzip',
227 silly get 'cache-control': 'max-age=300',
227 silly get 'content-length': '14998',
227 silly get 'accept-ranges': 'bytes',
227 silly get date: 'Tue, 19 Sep 2017 22:57:09 GMT',
227 silly get via: '1.1 varnish',
227 silly get age: '170',
227 silly get connection: 'keep-alive',
227 silly get 'x-served-by': 'cache-gru17125-GRU',
227 silly get 'x-cache': 'HIT',
227 silly get 'x-cache-hits': '1',
227 silly get 'x-timer': 'S1505861830.703111,VS0,VE0',
227 silly get vary: 'Accept-Encoding, Accept' } ]
228 verbose get saving highlight.js to /Users/juanpablo/.npm/registry.npmjs.org/highlight.js/.cache.json
229 verbose correctMkdir /Users/juanpablo/.npm correctMkdir not in flight; initializing
230 silly resolveWithNewModule highlight.js@9.12.0 checking installable status
231 silly cache add args [ 'highlight.js@^9.1.0', null ]
232 verbose cache add spec highlight.js@^9.1.0
233 silly cache add parsed spec Result {
233 silly cache add raw: 'highlight.js@^9.1.0',
233 silly cache add scope: null,
233 silly cache add name: 'highlight.js',
233 silly cache add rawSpec: '^9.1.0',
233 silly cache add spec: '>=9.1.0 <10.0.0',
233 silly cache add type: 'range' }
234 silly addNamed highlight.js@>=9.1.0 <10.0.0
235 verbose addNamed ">=9.1.0 <10.0.0" is a valid semver range for highlight.js
236 silly addNameRange { name: 'highlight.js',
236 silly addNameRange range: '>=9.1.0 <10.0.0',
236 silly addNameRange hasData: false }
237 silly mapToRegistry name highlight.js
238 silly mapToRegistry using default registry
239 silly mapToRegistry registry https://registry.npmjs.org/
240 silly mapToRegistry data Result {
240 silly mapToRegistry raw: 'highlight.js',
240 silly mapToRegistry scope: null,
240 silly mapToRegistry name: 'highlight.js',
240 silly mapToRegistry rawSpec: '',
240 silly mapToRegistry spec: 'latest',
240 silly mapToRegistry type: 'tag' }
241 silly mapToRegistry uri https://registry.npmjs.org/highlight.js
242 verbose addNameRange registry:https://registry.npmjs.org/highlight.js not in flight; fetching
243 verbose get https://registry.npmjs.org/highlight.js not expired, no request
244 silly addNameRange number 2 { name: 'highlight.js', range: '>=9.1.0 <10.0.0', hasData: true }
245 silly addNameRange versions [ 'highlight.js',
245 silly addNameRange [ '1.0.0',
245 silly addNameRange '1.0.1',
245 silly addNameRange '1.0.2',
245 silly addNameRange '1.0.3',
245 silly addNameRange '1.0.4',
245 silly addNameRange '1.1.0',
245 silly addNameRange '1.1.1',
245 silly addNameRange '1.2.0',
245 silly addNameRange '7.0.1',
245 silly addNameRange '7.1.0',
245 silly addNameRange '7.2.0',
245 silly addNameRange '7.3.0',
245 silly addNameRange '7.4.0',
245 silly addNameRange '7.5.0',
245 silly addNameRange '8.0.0',
245 silly addNameRange '8.1.0',
245 silly addNameRange '8.2.0',
245 silly addNameRange '8.3.0',
245 silly addNameRange '8.4.0',
245 silly addNameRange '8.5.0',
245 silly addNameRange '8.6.0',
245 silly addNameRange '8.7.0',
245 silly addNameRange '8.8.0',
245 silly addNameRange '8.9.0',
245 silly addNameRange '8.9.1',
245 silly addNameRange '9.0.0',
245 silly addNameRange '9.1.0',
245 silly addNameRange '9.2.0',
245 silly addNameRange '9.3.0',
245 silly addNameRange '9.4.0',
245 silly addNameRange '9.5.0',
245 silly addNameRange '9.6.0',
245 silly addNameRange '9.7.0',
245 silly addNameRange '9.8.0',
245 silly addNameRange '9.9.0',
245 silly addNameRange '9.10.0',
245 silly addNameRange '9.11.0',
245 silly addNameRange '9.12.0' ] ]
246 silly addNamed highlight.js@9.12.0
247 verbose addNamed "9.12.0" is a plain semver version for highlight.js
248 silly mapToRegistry name highlight.js
249 silly mapToRegistry using default registry
250 silly mapToRegistry registry https://registry.npmjs.org/
251 silly mapToRegistry data Result {
251 silly mapToRegistry raw: 'highlight.js',
251 silly mapToRegistry scope: null,
251 silly mapToRegistry name: 'highlight.js',
251 silly mapToRegistry rawSpec: '',
251 silly mapToRegistry spec: 'latest',
251 silly mapToRegistry type: 'tag' }
252 silly mapToRegistry uri https://registry.npmjs.org/highlight.js
253 verbose addRemoteTarball https://registry.npmjs.org/highlight.js/-/highlight.js-9.12.0.tgz not in flight; adding
254 verbose addRemoteTarball [ 'https://registry.npmjs.org/highlight.js/-/highlight.js-9.12.0.tgz',
254 verbose addRemoteTarball 'e6d9dbe57cbefe60751f02af336195870c90c01e' ]
255 info retry fetch attempt 1 at 7:57:09 PM
256 info attempt registry request try #1 at 7:57:09 PM
257 http fetch GET https://registry.npmjs.org/highlight.js/-/highlight.js-9.12.0.tgz
258 http 304 https://registry.npmjs.org/extend
259 verbose headers { date: 'Tue, 19 Sep 2017 22:57:09 GMT',
259 verbose headers via: '1.1 varnish',
259 verbose headers 'cache-control': 'max-age=300',
259 verbose headers etag: 'W/"59a978f4-4205"',
259 verbose headers age: '143',
259 verbose headers connection: 'keep-alive',
259 verbose headers 'x-served-by': 'cache-gru17135-GRU',
259 verbose headers 'x-cache': 'HIT',
259 verbose headers 'x-cache-hits': '2',
259 verbose headers 'x-timer': 'S1505861830.789300,VS0,VE0',
259 verbose headers vary: 'Accept-Encoding, Accept' }
260 silly get cb [ 304,
260 silly get { date: 'Tue, 19 Sep 2017 22:57:09 GMT',
260 silly get via: '1.1 varnish',
260 silly get 'cache-control': 'max-age=300',
260 silly get etag: 'W/"59a978f4-4205"',
260 silly get age: '143',
260 silly get connection: 'keep-alive',
260 silly get 'x-served-by': 'cache-gru17135-GRU',
260 silly get 'x-cache': 'HIT',
260 silly get 'x-cache-hits': '2',
260 silly get 'x-timer': 'S1505861830.789300,VS0,VE0',
260 silly get vary: 'Accept-Encoding, Accept' } ]
261 verbose etag https://registry.npmjs.org/extend from cache
262 verbose get saving extend to /Users/juanpablo/.npm/registry.npmjs.org/extend/.cache.json
263 verbose correctMkdir /Users/juanpablo/.npm correctMkdir not in flight; initializing
264 silly resolveWithNewModule extend@3.0.1 checking installable status
265 silly cache add args [ 'extend@^3.0.0', null ]
266 verbose cache add spec extend@^3.0.0
267 silly cache add parsed spec Result {
267 silly cache add raw: 'extend@^3.0.0',
267 silly cache add scope: null,
267 silly cache add name: 'extend',
267 silly cache add rawSpec: '^3.0.0',
267 silly cache add spec: '>=3.0.0 <4.0.0',
267 silly cache add type: 'range' }
268 silly addNamed extend@>=3.0.0 <4.0.0
269 verbose addNamed ">=3.0.0 <4.0.0" is a valid semver range for extend
270 silly addNameRange { name: 'extend', range: '>=3.0.0 <4.0.0', hasData: false }
271 silly mapToRegistry name extend
272 silly mapToRegistry using default registry
273 silly mapToRegistry registry https://registry.npmjs.org/
274 silly mapToRegistry data Result {
274 silly mapToRegistry raw: 'extend',
274 silly mapToRegistry scope: null,
274 silly mapToRegistry name: 'extend',
274 silly mapToRegistry rawSpec: '',
274 silly mapToRegistry spec: 'latest',
274 silly mapToRegistry type: 'tag' }
275 silly mapToRegistry uri https://registry.npmjs.org/extend
276 verbose addNameRange registry:https://registry.npmjs.org/extend not in flight; fetching
277 verbose get https://registry.npmjs.org/extend not expired, no request
278 silly addNameRange number 2 { name: 'extend', range: '>=3.0.0 <4.0.0', hasData: true }
279 silly addNameRange versions [ 'extend',
279 silly addNameRange [ '1.0.0',
279 silly addNameRange '1.1.0',
279 silly addNameRange '1.1.1',
279 silly addNameRange '1.1.3',
279 silly addNameRange '1.2.0',
279 silly addNameRange '1.2.1',
279 silly addNameRange '1.3.0',
279 silly addNameRange '2.0.0',
279 silly addNameRange '2.0.1',
279 silly addNameRange '3.0.0',
279 silly addNameRange '3.0.1' ] ]
280 silly addNamed extend@3.0.1
281 verbose addNamed "3.0.1" is a plain semver version for extend
282 silly cache afterAdd extend@3.0.1
283 verbose afterAdd /Users/juanpablo/.npm/extend/3.0.1/package/package.json not in flight; writing
284 verbose correctMkdir /Users/juanpablo/.npm correctMkdir not in flight; initializing
285 verbose afterAdd /Users/juanpablo/.npm/extend/3.0.1/package/package.json written
286 http 304 https://registry.npmjs.org/tmp
287 verbose headers { date: 'Tue, 19 Sep 2017 22:57:09 GMT',
287 verbose headers via: '1.1 varnish',
287 verbose headers 'cache-control': 'max-age=300',
287 verbose headers etag: 'W/"598ecaab-af58"',
287 verbose headers age: '275',
287 verbose headers connection: 'keep-alive',
287 verbose headers 'x-served-by': 'cache-gru17128-GRU',
287 verbose headers 'x-cache': 'HIT',
287 verbose headers 'x-cache-hits': '2',
287 verbose headers 'x-timer': 'S1505861830.798377,VS0,VE0',
287 verbose headers vary: 'Accept-Encoding, Accept' }
288 silly get cb [ 304,
288 silly get { date: 'Tue, 19 Sep 2017 22:57:09 GMT',
288 silly get via: '1.1 varnish',
288 silly get 'cache-control': 'max-age=300',
288 silly get etag: 'W/"598ecaab-af58"',
288 silly get age: '275',
288 silly get connection: 'keep-alive',
288 silly get 'x-served-by': 'cache-gru17128-GRU',
288 silly get 'x-cache': 'HIT',
288 silly get 'x-cache-hits': '2',
288 silly get 'x-timer': 'S1505861830.798377,VS0,VE0',
288 silly get vary: 'Accept-Encoding, Accept' } ]
289 verbose etag https://registry.npmjs.org/tmp from cache
290 verbose get saving tmp to /Users/juanpablo/.npm/registry.npmjs.org/tmp/.cache.json
291 verbose correctMkdir /Users/juanpablo/.npm correctMkdir not in flight; initializing
292 http 200 https://registry.npmjs.org/phantomjs-prebuilt
293 verbose headers { server: 'nginx/1.10.1',
293 verbose headers 'content-type': 'application/json',
293 verbose headers 'last-modified': 'Fri, 08 Sep 2017 06:43:45 GMT',
293 verbose headers etag: 'W/"59b23c21-a1bf"',
293 verbose headers 'content-encoding': 'gzip',
293 verbose headers 'cache-control': 'max-age=300',
293 verbose headers 'content-length': '8298',
293 verbose headers 'accept-ranges': 'bytes',
293 verbose headers date: 'Tue, 19 Sep 2017 22:57:09 GMT',
293 verbose headers via: '1.1 varnish',
293 verbose headers age: '172',
293 verbose headers connection: 'keep-alive',
293 verbose headers 'x-served-by': 'cache-gru17132-GRU',
293 verbose headers 'x-cache': 'HIT',
293 verbose headers 'x-cache-hits': '1',
293 verbose headers 'x-timer': 'S1505861830.802194,VS0,VE0',
293 verbose headers vary: 'Accept-Encoding, Accept' }
294 silly get cb [ 200,
294 silly get { server: 'nginx/1.10.1',
294 silly get 'content-type': 'application/json',
294 silly get 'last-modified': 'Fri, 08 Sep 2017 06:43:45 GMT',
294 silly get etag: 'W/"59b23c21-a1bf"',
294 silly get 'content-encoding': 'gzip',
294 silly get 'cache-control': 'max-age=300',
294 silly get 'content-length': '8298',
294 silly get 'accept-ranges': 'bytes',
294 silly get date: 'Tue, 19 Sep 2017 22:57:09 GMT',
294 silly get via: '1.1 varnish',
294 silly get age: '172',
294 silly get connection: 'keep-alive',
294 silly get 'x-served-by': 'cache-gru17132-GRU',
294 silly get 'x-cache': 'HIT',
294 silly get 'x-cache-hits': '1',
294 silly get 'x-timer': 'S1505861830.802194,VS0,VE0',
294 silly get vary: 'Accept-Encoding, Accept' } ]
295 verbose get saving phantomjs-prebuilt to /Users/juanpablo/.npm/registry.npmjs.org/phantomjs-prebuilt/.cache.json
296 verbose correctMkdir /Users/juanpablo/.npm correctMkdir not in flight; initializing
297 silly resolveWithNewModule tmp@0.0.28 checking installable status
298 silly cache add args [ 'tmp@0.0.28', null ]
299 verbose cache add spec tmp@0.0.28
300 silly cache add parsed spec Result {
300 silly cache add raw: 'tmp@0.0.28',
300 silly cache add scope: null,
300 silly cache add name: 'tmp',
300 silly cache add rawSpec: '0.0.28',
300 silly cache add spec: '0.0.28',
300 silly cache add type: 'version' }
301 silly addNamed tmp@0.0.28
302 verbose addNamed "0.0.28" is a plain semver version for tmp
303 silly mapToRegistry name tmp
304 silly mapToRegistry using default registry
305 silly mapToRegistry registry https://registry.npmjs.org/
306 silly mapToRegistry data Result {
306 silly mapToRegistry raw: 'tmp',
306 silly mapToRegistry scope: null,
306 silly mapToRegistry name: 'tmp',
306 silly mapToRegistry rawSpec: '',
306 silly mapToRegistry spec: 'latest',
306 silly mapToRegistry type: 'tag' }
307 silly mapToRegistry uri https://registry.npmjs.org/tmp
308 verbose addNameVersion registry:https://registry.npmjs.org/tmp not in flight; fetching
309 verbose get https://registry.npmjs.org/tmp not expired, no request
310 silly resolveWithNewModule phantomjs-prebuilt@2.1.15 checking installable status
311 silly cache add args [ 'phantomjs-prebuilt@^2.1.3', null ]
312 verbose cache add spec phantomjs-prebuilt@^2.1.3
313 silly cache add parsed spec Result {
313 silly cache add raw: 'phantomjs-prebuilt@^2.1.3',
313 silly cache add scope: null,
313 silly cache add name: 'phantomjs-prebuilt',
313 silly cache add rawSpec: '^2.1.3',
313 silly cache add spec: '>=2.1.3 <3.0.0',
313 silly cache add type: 'range' }
314 silly addNamed phantomjs-prebuilt@>=2.1.3 <3.0.0
315 verbose addNamed ">=2.1.3 <3.0.0" is a valid semver range for phantomjs-prebuilt
316 silly addNameRange { name: 'phantomjs-prebuilt',
316 silly addNameRange range: '>=2.1.3 <3.0.0',
316 silly addNameRange hasData: false }
317 silly mapToRegistry name phantomjs-prebuilt
318 silly mapToRegistry using default registry
319 silly mapToRegistry registry https://registry.npmjs.org/
320 silly mapToRegistry data Result {
320 silly mapToRegistry raw: 'phantomjs-prebuilt',
320 silly mapToRegistry scope: null,
320 silly mapToRegistry name: 'phantomjs-prebuilt',
320 silly mapToRegistry rawSpec: '',
320 silly mapToRegistry spec: 'latest',
320 silly mapToRegistry type: 'tag' }
321 silly mapToRegistry uri https://registry.npmjs.org/phantomjs-prebuilt
322 verbose addNameRange registry:https://registry.npmjs.org/phantomjs-prebuilt not in flight; fetching
323 verbose get https://registry.npmjs.org/phantomjs-prebuilt not expired, no request
324 silly addNameRange number 2 { name: 'phantomjs-prebuilt',
324 silly addNameRange range: '>=2.1.3 <3.0.0',
324 silly addNameRange hasData: true }
325 silly addNameRange versions [ 'phantomjs-prebuilt',
325 silly addNameRange [ '2.1.2',
325 silly addNameRange '2.1.3',
325 silly addNameRange '2.1.4',
325 silly addNameRange '2.1.5',
325 silly addNameRange '2.1.6',
325 silly addNameRange '2.1.7',
325 silly addNameRange '2.1.8',
325 silly addNameRange '2.1.9',
325 silly addNameRange '2.1.10',
325 silly addNameRange '2.1.11-alpha',
325 silly addNameRange '2.1.11-alpha.1',
325 silly addNameRange '2.1.11',
325 silly addNameRange '2.1.12-alpha',
325 silly addNameRange '2.1.12',
325 silly addNameRange '2.1.13',
325 silly addNameRange '2.1.14',
325 silly addNameRange '2.1.15' ] ]
326 silly addNamed phantomjs-prebuilt@2.1.15
327 verbose addNamed "2.1.15" is a plain semver version for phantomjs-prebuilt
328 silly mapToRegistry name phantomjs-prebuilt
329 silly mapToRegistry using default registry
330 silly mapToRegistry registry https://registry.npmjs.org/
331 silly mapToRegistry data Result {
331 silly mapToRegistry raw: 'phantomjs-prebuilt',
331 silly mapToRegistry scope: null,
331 silly mapToRegistry name: 'phantomjs-prebuilt',
331 silly mapToRegistry rawSpec: '',
331 silly mapToRegistry spec: 'latest',
331 silly mapToRegistry type: 'tag' }
332 silly mapToRegistry uri https://registry.npmjs.org/phantomjs-prebuilt
333 verbose addRemoteTarball https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.15.tgz not in flight; adding
334 verbose addRemoteTarball [ 'https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.15.tgz',
334 verbose addRemoteTarball '20f86e82d3349c505917527745b7a411e08b3903' ]
335 silly cache afterAdd tmp@0.0.28
336 verbose afterAdd /Users/juanpablo/.npm/tmp/0.0.28/package/package.json not in flight; writing
337 verbose correctMkdir /Users/juanpablo/.npm correctMkdir not in flight; initializing
338 http 304 https://registry.npmjs.org/duplexer
339 verbose headers { date: 'Tue, 19 Sep 2017 22:57:09 GMT',
339 verbose headers via: '1.1 varnish',
339 verbose headers 'cache-control': 'max-age=300',
339 verbose headers etag: 'W/"58d35493-3037"',
339 verbose headers age: '0',
339 verbose headers connection: 'keep-alive',
339 verbose headers 'x-served-by': 'cache-gru17124-GRU',
339 verbose headers 'x-cache': 'HIT',
339 verbose headers 'x-cache-hits': '1',
339 verbose headers 'x-timer': 'S1505861830.798405,VS0,VE0',
339 verbose headers vary: 'Accept-Encoding, Accept' }
340 silly get cb [ 304,
340 silly get { date: 'Tue, 19 Sep 2017 22:57:09 GMT',
340 silly get via: '1.1 varnish',
340 silly get 'cache-control': 'max-age=300',
340 silly get etag: 'W/"58d35493-3037"',
340 silly get age: '0',
340 silly get connection: 'keep-alive',
340 silly get 'x-served-by': 'cache-gru17124-GRU',
340 silly get 'x-cache': 'HIT',
340 silly get 'x-cache-hits': '1',
340 silly get 'x-timer': 'S1505861830.798405,VS0,VE0',
340 silly get vary: 'Accept-Encoding, Accept' } ]
341 verbose etag https://registry.npmjs.org/duplexer from cache
342 verbose get saving duplexer to /Users/juanpablo/.npm/registry.npmjs.org/duplexer/.cache.json
343 verbose correctMkdir /Users/juanpablo/.npm correctMkdir not in flight; initializing
344 info retry fetch attempt 1 at 7:57:09 PM
345 info attempt registry request try #1 at 7:57:09 PM
346 http fetch GET https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.15.tgz
347 http 304 https://registry.npmjs.org/through2
348 verbose headers { date: 'Tue, 19 Sep 2017 22:57:09 GMT',
348 verbose headers via: '1.1 varnish',
348 verbose headers 'cache-control': 'max-age=300',
348 verbose headers etag: 'W/"59ad363f-aa3f"',
348 verbose headers age: '13',
348 verbose headers connection: 'keep-alive',
348 verbose headers 'x-served-by': 'cache-gru17126-GRU',
348 verbose headers 'x-cache': 'HIT',
348 verbose headers 'x-cache-hits': '1',
348 verbose headers 'x-timer': 'S1505861830.805185,VS0,VE0',
348 verbose headers vary: 'Accept-Encoding, Accept' }
349 silly get cb [ 304,
349 silly get { date: 'Tue, 19 Sep 2017 22:57:09 GMT',
349 silly get via: '1.1 varnish',
349 silly get 'cache-control': 'max-age=300',
349 silly get etag: 'W/"59ad363f-aa3f"',
349 silly get age: '13',
349 silly get connection: 'keep-alive',
349 silly get 'x-served-by': 'cache-gru17126-GRU',
349 silly get 'x-cache': 'HIT',
349 silly get 'x-cache-hits': '1',
349 silly get 'x-timer': 'S1505861830.805185,VS0,VE0',
349 silly get vary: 'Accept-Encoding, Accept' } ]
350 verbose etag https://registry.npmjs.org/through2 from cache
351 verbose get saving through2 to /Users/juanpablo/.npm/registry.npmjs.org/through2/.cache.json
352 verbose correctMkdir /Users/juanpablo/.npm correctMkdir not in flight; initializing
353 http fetch 200 https://registry.npmjs.org/highlight.js/-/highlight.js-9.12.0.tgz
354 verbose afterAdd /Users/juanpablo/.npm/tmp/0.0.28/package/package.json written
355 silly resolveWithNewModule duplexer@0.1.1 checking installable status
356 silly cache add args [ 'duplexer@^0.1.1', null ]
357 verbose cache add spec duplexer@^0.1.1
358 silly cache add parsed spec Result {
358 silly cache add raw: 'duplexer@^0.1.1',
358 silly cache add scope: null,
358 silly cache add name: 'duplexer',
358 silly cache add rawSpec: '^0.1.1',
358 silly cache add spec: '>=0.1.1 <0.2.0',
358 silly cache add type: 'range' }
359 silly addNamed duplexer@>=0.1.1 <0.2.0
360 verbose addNamed ">=0.1.1 <0.2.0" is a valid semver range for duplexer
361 silly addNameRange { name: 'duplexer', range: '>=0.1.1 <0.2.0', hasData: false }
362 silly mapToRegistry name duplexer
363 silly mapToRegistry using default registry
364 silly mapToRegistry registry https://registry.npmjs.org/
365 silly mapToRegistry data Result {
365 silly mapToRegistry raw: 'duplexer',
365 silly mapToRegistry scope: null,
365 silly mapToRegistry name: 'duplexer',
365 silly mapToRegistry rawSpec: '',
365 silly mapToRegistry spec: 'latest',
365 silly mapToRegistry type: 'tag' }
366 silly mapToRegistry uri https://registry.npmjs.org/duplexer
367 verbose addNameRange registry:https://registry.npmjs.org/duplexer not in flight; fetching
368 silly resolveWithNewModule through2@2.0.3 checking installable status
369 silly cache add args [ 'through2@^2.0.0', null ]
370 verbose cache add spec through2@^2.0.0
371 silly cache add parsed spec Result {
371 silly cache add raw: 'through2@^2.0.0',
371 silly cache add scope: null,
371 silly cache add name: 'through2',
371 silly cache add rawSpec: '^2.0.0',
371 silly cache add spec: '>=2.0.0 <3.0.0',
371 silly cache add type: 'range' }
372 silly addNamed through2@>=2.0.0 <3.0.0
373 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for through2
374 silly addNameRange { name: 'through2', range: '>=2.0.0 <3.0.0', hasData: false }
375 silly mapToRegistry name through2
376 silly mapToRegistry using default registry
377 silly mapToRegistry registry https://registry.npmjs.org/
378 silly mapToRegistry data Result {
378 silly mapToRegistry raw: 'through2',
378 silly mapToRegistry scope: null,
378 silly mapToRegistry name: 'through2',
378 silly mapToRegistry rawSpec: '',
378 silly mapToRegistry spec: 'latest',
378 silly mapToRegistry type: 'tag' }
379 silly mapToRegistry uri https://registry.npmjs.org/through2
380 verbose addNameRange registry:https://registry.npmjs.org/through2 not in flight; fetching
381 verbose get https://registry.npmjs.org/duplexer not expired, no request
382 silly addNameRange number 2 { name: 'duplexer', range: '>=0.1.1 <0.2.0', hasData: true }
383 silly addNameRange versions [ 'duplexer',
383 silly addNameRange [ '0.0.1', '0.0.2', '0.0.3', '0.0.4', '0.1.0', '0.1.1' ] ]
384 silly addNamed duplexer@0.1.1
385 verbose addNamed "0.1.1" is a plain semver version for duplexer
386 verbose get https://registry.npmjs.org/through2 not expired, no request
387 silly addNameRange number 2 { name: 'through2', range: '>=2.0.0 <3.0.0', hasData: true }
388 silly addNameRange versions [ 'through2',
388 silly addNameRange [ '0.0.0',
388 silly addNameRange '0.0.1',
388 silly addNameRange '0.0.2',
388 silly addNameRange '0.0.3',
388 silly addNameRange '0.0.4',
388 silly addNameRange '0.0.5',
388 silly addNameRange '0.1.0',
388 silly addNameRange '0.2.0',
388 silly addNameRange '0.2.1',
388 silly addNameRange '0.2.2',
388 silly addNameRange '0.2.3',
388 silly addNameRange '0.3.0',
388 silly addNameRange '0.4.0',
388 silly addNameRange '0.4.1',
388 silly addNameRange '1.0.0',
388 silly addNameRange '0.4.2',
388 silly addNameRange '0.5.0',
388 silly addNameRange '0.5.1',
388 silly addNameRange '0.6.0',
388 silly addNameRange '1.1.0',
388 silly addNameRange '0.6.1',
388 silly addNameRange '1.1.1',
388 silly addNameRange '0.6.2',
388 silly addNameRange '0.6.3',
388 silly addNameRange '0.6.4',
388 silly addNameRange '0.6.5',
388 silly addNameRange '2.0.0',
388 silly addNameRange '2.0.1',
388 silly addNameRange '2.0.2',
388 silly addNameRange '2.0.3' ] ]
389 silly addNamed through2@2.0.3
390 verbose addNamed "2.0.3" is a plain semver version for through2
391 silly cache afterAdd duplexer@0.1.1
392 verbose afterAdd /Users/juanpablo/.npm/duplexer/0.1.1/package/package.json not in flight; writing
393 verbose correctMkdir /Users/juanpablo/.npm correctMkdir not in flight; initializing
394 silly cache afterAdd through2@2.0.3
395 verbose afterAdd /Users/juanpablo/.npm/through2/2.0.3/package/package.json not in flight; writing
396 verbose correctMkdir /Users/juanpablo/.npm correctMkdir not in flight; initializing
397 verbose afterAdd /Users/juanpablo/.npm/duplexer/0.1.1/package/package.json written
398 verbose afterAdd /Users/juanpablo/.npm/through2/2.0.3/package/package.json written
399 http 200 https://registry.npmjs.org/commander
400 verbose headers { server: 'nginx/1.10.1',
400 verbose headers 'content-type': 'application/json',
400 verbose headers 'last-modified': 'Mon, 18 Sep 2017 14:15:53 GMT',
400 verbose headers etag: 'W/"59bfd519-1169b"',
400 verbose headers 'content-encoding': 'gzip',
400 verbose headers 'cache-control': 'max-age=300',
400 verbose headers 'content-length': '14374',
400 verbose headers 'accept-ranges': 'bytes',
400 verbose headers date: 'Tue, 19 Sep 2017 22:57:09 GMT',
400 verbose headers via: '1.1 varnish',
400 verbose headers age: '82',
400 verbose headers connection: 'keep-alive',
400 verbose headers 'x-served-by': 'cache-gru17122-GRU',
400 verbose headers 'x-cache': 'HIT',
400 verbose headers 'x-cache-hits': '4',
400 verbose headers 'x-timer': 'S1505861830.812642,VS0,VE0',
400 verbose headers vary: 'Accept-Encoding, Accept' }
401 silly get cb [ 200,
401 silly get { server: 'nginx/1.10.1',
401 silly get 'content-type': 'application/json',
401 silly get 'last-modified': 'Mon, 18 Sep 2017 14:15:53 GMT',
401 silly get etag: 'W/"59bfd519-1169b"',
401 silly get 'content-encoding': 'gzip',
401 silly get 'cache-control': 'max-age=300',
401 silly get 'content-length': '14374',
401 silly get 'accept-ranges': 'bytes',
401 silly get date: 'Tue, 19 Sep 2017 22:57:09 GMT',
401 silly get via: '1.1 varnish',
401 silly get age: '82',
401 silly get connection: 'keep-alive',
401 silly get 'x-served-by': 'cache-gru17122-GRU',
401 silly get 'x-cache': 'HIT',
401 silly get 'x-cache-hits': '4',
401 silly get 'x-timer': 'S1505861830.812642,VS0,VE0',
401 silly get vary: 'Accept-Encoding, Accept' } ]
402 verbose get saving commander to /Users/juanpablo/.npm/registry.npmjs.org/commander/.cache.json
403 verbose correctMkdir /Users/juanpablo/.npm correctMkdir not in flight; initializing
404 silly resolveWithNewModule commander@2.11.0 checking installable status
405 silly cache add args [ 'commander@^2.2.0', null ]
406 verbose cache add spec commander@^2.2.0
407 silly cache add parsed spec Result {
407 silly cache add raw: 'commander@^2.2.0',
407 silly cache add scope: null,
407 silly cache add name: 'commander',
407 silly cache add rawSpec: '^2.2.0',
407 silly cache add spec: '>=2.2.0 <3.0.0',
407 silly cache add type: 'range' }
408 silly addNamed commander@>=2.2.0 <3.0.0
409 verbose addNamed ">=2.2.0 <3.0.0" is a valid semver range for commander
410 silly addNameRange { name: 'commander', range: '>=2.2.0 <3.0.0', hasData: false }
411 silly mapToRegistry name commander
412 silly mapToRegistry using default registry
413 silly mapToRegistry registry https://registry.npmjs.org/
414 silly mapToRegistry data Result {