-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnpm-debug.log
8918 lines (8918 loc) · 468 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 '-g',
1 verbose cli 'localtunnel' ]
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 localtunnel
8 silly fetchNamedPackageData localtunnel
9 silly mapToRegistry name localtunnel
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry data Result {
12 silly mapToRegistry raw: 'localtunnel',
12 silly mapToRegistry scope: null,
12 silly mapToRegistry name: 'localtunnel',
12 silly mapToRegistry rawSpec: '',
12 silly mapToRegistry spec: 'latest',
12 silly mapToRegistry type: 'tag' }
13 silly mapToRegistry uri https://registry.npmjs.org/localtunnel
14 verbose request uri https://registry.npmjs.org/localtunnel
15 verbose request no auth needed
16 info attempt registry request try #1 at 11:13:31 PM
17 verbose request id 9b191d659ad4f1bc
18 http request GET https://registry.npmjs.org/localtunnel
19 http 200 https://registry.npmjs.org/localtunnel
20 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
20 verbose headers etag: '"BJFELZYDZJFSZRJULNEUDYKMM"',
20 verbose headers 'content-type': 'application/json',
20 verbose headers 'content-encoding': 'gzip',
20 verbose headers 'cache-control': 'max-age=300',
20 verbose headers 'content-length': '4959',
20 verbose headers 'accept-ranges': 'bytes',
20 verbose headers date: 'Wed, 01 Jun 2016 03:13:32 GMT',
20 verbose headers via: '1.1 varnish',
20 verbose headers age: '217',
20 verbose headers connection: 'keep-alive',
20 verbose headers 'x-served-by': 'cache-jfk1021-JFK',
20 verbose headers 'x-cache': 'HIT',
20 verbose headers 'x-cache-hits': '2',
20 verbose headers 'x-timer': 'S1464750812.073829,VS0,VE0',
20 verbose headers vary: 'Accept-Encoding' }
21 silly get cb [ 200,
21 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
21 silly get etag: '"BJFELZYDZJFSZRJULNEUDYKMM"',
21 silly get 'content-type': 'application/json',
21 silly get 'content-encoding': 'gzip',
21 silly get 'cache-control': 'max-age=300',
21 silly get 'content-length': '4959',
21 silly get 'accept-ranges': 'bytes',
21 silly get date: 'Wed, 01 Jun 2016 03:13:32 GMT',
21 silly get via: '1.1 varnish',
21 silly get age: '217',
21 silly get connection: 'keep-alive',
21 silly get 'x-served-by': 'cache-jfk1021-JFK',
21 silly get 'x-cache': 'HIT',
21 silly get 'x-cache-hits': '2',
21 silly get 'x-timer': 'S1464750812.073829,VS0,VE0',
21 silly get vary: 'Accept-Encoding' } ]
22 verbose get saving localtunnel to /Users/Deven/.npm/registry.npmjs.org/localtunnel/.cache.json
23 verbose correctMkdir /Users/Deven/.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 [email protected] checking installable status
37 silly cache add args [ 'localtunnel', null ]
38 verbose cache add spec localtunnel
39 silly cache add parsed spec Result {
39 silly cache add raw: 'localtunnel',
39 silly cache add scope: null,
39 silly cache add name: 'localtunnel',
39 silly cache add rawSpec: '',
39 silly cache add spec: 'latest',
39 silly cache add type: 'tag' }
40 silly addNamed localtunnel@latest
41 verbose addNamed "latest" is being treated as a dist-tag for localtunnel
42 info addNameTag [ 'localtunnel', 'latest' ]
43 silly mapToRegistry name localtunnel
44 silly mapToRegistry using default registry
45 silly mapToRegistry registry https://registry.npmjs.org/
46 silly mapToRegistry data Result {
46 silly mapToRegistry raw: 'localtunnel',
46 silly mapToRegistry scope: null,
46 silly mapToRegistry name: 'localtunnel',
46 silly mapToRegistry rawSpec: '',
46 silly mapToRegistry spec: 'latest',
46 silly mapToRegistry type: 'tag' }
47 silly mapToRegistry uri https://registry.npmjs.org/localtunnel
48 verbose addNameTag registry:https://registry.npmjs.org/localtunnel not in flight; fetching
49 verbose get https://registry.npmjs.org/localtunnel not expired, no request
50 silly addNameTag next cb for localtunnel with tag latest
51 silly addNamed [email protected]
52 verbose addNamed "1.8.1" is a plain semver version for localtunnel
53 silly mapToRegistry name localtunnel
54 silly mapToRegistry using default registry
55 silly mapToRegistry registry https://registry.npmjs.org/
56 silly mapToRegistry data Result {
56 silly mapToRegistry raw: 'localtunnel',
56 silly mapToRegistry scope: null,
56 silly mapToRegistry name: 'localtunnel',
56 silly mapToRegistry rawSpec: '',
56 silly mapToRegistry spec: 'latest',
56 silly mapToRegistry type: 'tag' }
57 silly mapToRegistry uri https://registry.npmjs.org/localtunnel
58 verbose addRemoteTarball https://registry.npmjs.org/localtunnel/-/localtunnel-1.8.1.tgz not in flight; adding
59 verbose addRemoteTarball [ 'https://registry.npmjs.org/localtunnel/-/localtunnel-1.8.1.tgz',
59 verbose addRemoteTarball 'd51b2bb7a7066afb05b57fc9db844015098f2e17' ]
60 info retry fetch attempt 1 at 11:13:32 PM
61 info attempt registry request try #1 at 11:13:32 PM
62 http fetch GET https://registry.npmjs.org/localtunnel/-/localtunnel-1.8.1.tgz
63 http fetch 200 https://registry.npmjs.org/localtunnel/-/localtunnel-1.8.1.tgz
64 silly fetchAndShaCheck shasum d51b2bb7a7066afb05b57fc9db844015098f2e17
65 verbose addTmpTarball /var/folders/zk/s0_c18451j3bt7vqvkvt45pr0000gn/T/npm-12821-c28fc922/registry.npmjs.org/localtunnel/-/localtunnel-1.8.1.tgz not in flight; adding
66 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
67 verbose correctMkdir /Users/Deven/.npm correctMkdir not in flight; initializing
68 silly cache afterAdd [email protected]
69 verbose afterAdd /Users/Deven/.npm/localtunnel/1.8.1/package/package.json not in flight; writing
70 verbose correctMkdir /Users/Deven/.npm correctMkdir not in flight; initializing
71 verbose afterAdd /Users/Deven/.npm/localtunnel/1.8.1/package/package.json written
72 silly fetchNamedPackageData request
73 silly mapToRegistry name request
74 silly mapToRegistry using default registry
75 silly mapToRegistry registry https://registry.npmjs.org/
76 silly mapToRegistry data Result {
76 silly mapToRegistry raw: 'request',
76 silly mapToRegistry scope: null,
76 silly mapToRegistry name: 'request',
76 silly mapToRegistry rawSpec: '',
76 silly mapToRegistry spec: 'latest',
76 silly mapToRegistry type: 'tag' }
77 silly mapToRegistry uri https://registry.npmjs.org/request
78 silly fetchNamedPackageData yargs
79 silly mapToRegistry name yargs
80 silly mapToRegistry using default registry
81 silly mapToRegistry registry https://registry.npmjs.org/
82 silly mapToRegistry data Result {
82 silly mapToRegistry raw: 'yargs',
82 silly mapToRegistry scope: null,
82 silly mapToRegistry name: 'yargs',
82 silly mapToRegistry rawSpec: '',
82 silly mapToRegistry spec: 'latest',
82 silly mapToRegistry type: 'tag' }
83 silly mapToRegistry uri https://registry.npmjs.org/yargs
84 silly fetchNamedPackageData debug
85 silly mapToRegistry name debug
86 silly mapToRegistry using default registry
87 silly mapToRegistry registry https://registry.npmjs.org/
88 silly mapToRegistry data Result {
88 silly mapToRegistry raw: 'debug',
88 silly mapToRegistry scope: null,
88 silly mapToRegistry name: 'debug',
88 silly mapToRegistry rawSpec: '',
88 silly mapToRegistry spec: 'latest',
88 silly mapToRegistry type: 'tag' }
89 silly mapToRegistry uri https://registry.npmjs.org/debug
90 silly fetchNamedPackageData openurl
91 silly mapToRegistry name openurl
92 silly mapToRegistry using default registry
93 silly mapToRegistry registry https://registry.npmjs.org/
94 silly mapToRegistry data Result {
94 silly mapToRegistry raw: 'openurl',
94 silly mapToRegistry scope: null,
94 silly mapToRegistry name: 'openurl',
94 silly mapToRegistry rawSpec: '',
94 silly mapToRegistry spec: 'latest',
94 silly mapToRegistry type: 'tag' }
95 silly mapToRegistry uri https://registry.npmjs.org/openurl
96 verbose request uri https://registry.npmjs.org/request
97 verbose request no auth needed
98 info attempt registry request try #1 at 11:13:32 PM
99 http request GET https://registry.npmjs.org/request
100 verbose request uri https://registry.npmjs.org/yargs
101 verbose request no auth needed
102 info attempt registry request try #1 at 11:13:32 PM
103 http request GET https://registry.npmjs.org/yargs
104 verbose request uri https://registry.npmjs.org/debug
105 verbose request no auth needed
106 info attempt registry request try #1 at 11:13:32 PM
107 http request GET https://registry.npmjs.org/debug
108 verbose request uri https://registry.npmjs.org/openurl
109 verbose request no auth needed
110 info attempt registry request try #1 at 11:13:32 PM
111 http request GET https://registry.npmjs.org/openurl
112 http 200 https://registry.npmjs.org/openurl
113 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
113 verbose headers etag: '"21UQRTPEXCITV0I32O6186H2M"',
113 verbose headers 'content-type': 'application/json',
113 verbose headers 'content-encoding': 'gzip',
113 verbose headers 'cache-control': 'max-age=300',
113 verbose headers 'content-length': '1644',
113 verbose headers 'accept-ranges': 'bytes',
113 verbose headers date: 'Wed, 01 Jun 2016 03:13:32 GMT',
113 verbose headers via: '1.1 varnish',
113 verbose headers age: '216',
113 verbose headers connection: 'keep-alive',
113 verbose headers 'x-served-by': 'cache-jfk1033-JFK',
113 verbose headers 'x-cache': 'HIT',
113 verbose headers 'x-cache-hits': '2',
113 verbose headers 'x-timer': 'S1464750812.821542,VS0,VE0',
113 verbose headers vary: 'Accept-Encoding' }
114 silly get cb [ 200,
114 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
114 silly get etag: '"21UQRTPEXCITV0I32O6186H2M"',
114 silly get 'content-type': 'application/json',
114 silly get 'content-encoding': 'gzip',
114 silly get 'cache-control': 'max-age=300',
114 silly get 'content-length': '1644',
114 silly get 'accept-ranges': 'bytes',
114 silly get date: 'Wed, 01 Jun 2016 03:13:32 GMT',
114 silly get via: '1.1 varnish',
114 silly get age: '216',
114 silly get connection: 'keep-alive',
114 silly get 'x-served-by': 'cache-jfk1033-JFK',
114 silly get 'x-cache': 'HIT',
114 silly get 'x-cache-hits': '2',
114 silly get 'x-timer': 'S1464750812.821542,VS0,VE0',
114 silly get vary: 'Accept-Encoding' } ]
115 verbose get saving openurl to /Users/Deven/.npm/registry.npmjs.org/openurl/.cache.json
116 verbose correctMkdir /Users/Deven/.npm correctMkdir not in flight; initializing
117 http 200 https://registry.npmjs.org/debug
118 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
118 verbose headers etag: '"6RW57U2XP3LC24KTM1REQV4ZV"',
118 verbose headers 'content-type': 'application/json',
118 verbose headers 'content-encoding': 'gzip',
118 verbose headers 'cache-control': 'max-age=300',
118 verbose headers 'content-length': '9056',
118 verbose headers 'accept-ranges': 'bytes',
118 verbose headers date: 'Wed, 01 Jun 2016 03:13:32 GMT',
118 verbose headers via: '1.1 varnish',
118 verbose headers age: '174',
118 verbose headers connection: 'keep-alive',
118 verbose headers 'x-served-by': 'cache-jfk1048-JFK',
118 verbose headers 'x-cache': 'HIT',
118 verbose headers 'x-cache-hits': '5',
118 verbose headers 'x-timer': 'S1464750812.821635,VS0,VE0',
118 verbose headers vary: 'Accept-Encoding' }
119 silly get cb [ 200,
119 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
119 silly get etag: '"6RW57U2XP3LC24KTM1REQV4ZV"',
119 silly get 'content-type': 'application/json',
119 silly get 'content-encoding': 'gzip',
119 silly get 'cache-control': 'max-age=300',
119 silly get 'content-length': '9056',
119 silly get 'accept-ranges': 'bytes',
119 silly get date: 'Wed, 01 Jun 2016 03:13:32 GMT',
119 silly get via: '1.1 varnish',
119 silly get age: '174',
119 silly get connection: 'keep-alive',
119 silly get 'x-served-by': 'cache-jfk1048-JFK',
119 silly get 'x-cache': 'HIT',
119 silly get 'x-cache-hits': '5',
119 silly get 'x-timer': 'S1464750812.821635,VS0,VE0',
119 silly get vary: 'Accept-Encoding' } ]
120 verbose get saving debug to /Users/Deven/.npm/registry.npmjs.org/debug/.cache.json
121 verbose correctMkdir /Users/Deven/.npm correctMkdir not in flight; initializing
122 silly resolveWithNewModule [email protected] checking installable status
123 silly cache add args [ '[email protected]', null ]
124 verbose cache add spec [email protected]
125 silly cache add parsed spec Result {
125 silly cache add raw: '[email protected]',
125 silly cache add scope: null,
125 silly cache add name: 'openurl',
125 silly cache add rawSpec: '1.1.0',
125 silly cache add spec: '1.1.0',
125 silly cache add type: 'version' }
126 silly addNamed [email protected]
127 verbose addNamed "1.1.0" is a plain semver version for openurl
128 silly mapToRegistry name openurl
129 silly mapToRegistry using default registry
130 silly mapToRegistry registry https://registry.npmjs.org/
131 silly mapToRegistry data Result {
131 silly mapToRegistry raw: 'openurl',
131 silly mapToRegistry scope: null,
131 silly mapToRegistry name: 'openurl',
131 silly mapToRegistry rawSpec: '',
131 silly mapToRegistry spec: 'latest',
131 silly mapToRegistry type: 'tag' }
132 silly mapToRegistry uri https://registry.npmjs.org/openurl
133 verbose addNameVersion registry:https://registry.npmjs.org/openurl not in flight; fetching
134 silly resolveWithNewModule [email protected] checking installable status
135 silly cache add args [ '[email protected]', null ]
136 verbose cache add spec [email protected]
137 silly cache add parsed spec Result {
137 silly cache add raw: '[email protected]',
137 silly cache add scope: null,
137 silly cache add name: 'debug',
137 silly cache add rawSpec: '2.2.0',
137 silly cache add spec: '2.2.0',
137 silly cache add type: 'version' }
138 silly addNamed [email protected]
139 verbose addNamed "2.2.0" is a plain semver version for debug
140 silly mapToRegistry name debug
141 silly mapToRegistry using default registry
142 silly mapToRegistry registry https://registry.npmjs.org/
143 silly mapToRegistry data Result {
143 silly mapToRegistry raw: 'debug',
143 silly mapToRegistry scope: null,
143 silly mapToRegistry name: 'debug',
143 silly mapToRegistry rawSpec: '',
143 silly mapToRegistry spec: 'latest',
143 silly mapToRegistry type: 'tag' }
144 silly mapToRegistry uri https://registry.npmjs.org/debug
145 verbose addNameVersion registry:https://registry.npmjs.org/debug not in flight; fetching
146 verbose get https://registry.npmjs.org/openurl not expired, no request
147 silly mapToRegistry name openurl
148 silly mapToRegistry using default registry
149 silly mapToRegistry registry https://registry.npmjs.org/
150 silly mapToRegistry data Result {
150 silly mapToRegistry raw: 'openurl',
150 silly mapToRegistry scope: null,
150 silly mapToRegistry name: 'openurl',
150 silly mapToRegistry rawSpec: '',
150 silly mapToRegistry spec: 'latest',
150 silly mapToRegistry type: 'tag' }
151 silly mapToRegistry uri https://registry.npmjs.org/openurl
152 verbose addRemoteTarball https://registry.npmjs.org/openurl/-/openurl-1.1.0.tgz not in flight; adding
153 verbose addRemoteTarball [ 'https://registry.npmjs.org/openurl/-/openurl-1.1.0.tgz',
153 verbose addRemoteTarball 'e2f2189d999c04823201f083f0f1a7cd8903187a' ]
154 verbose get https://registry.npmjs.org/debug not expired, no request
155 silly mapToRegistry name debug
156 silly mapToRegistry using default registry
157 silly mapToRegistry registry https://registry.npmjs.org/
158 silly mapToRegistry data Result {
158 silly mapToRegistry raw: 'debug',
158 silly mapToRegistry scope: null,
158 silly mapToRegistry name: 'debug',
158 silly mapToRegistry rawSpec: '',
158 silly mapToRegistry spec: 'latest',
158 silly mapToRegistry type: 'tag' }
159 silly mapToRegistry uri https://registry.npmjs.org/debug
160 verbose addRemoteTarball https://registry.npmjs.org/debug/-/debug-2.2.0.tgz not in flight; adding
161 verbose addRemoteTarball [ 'https://registry.npmjs.org/debug/-/debug-2.2.0.tgz',
161 verbose addRemoteTarball 'f87057e995b1a1f6ae6a4960664137bc56f039da' ]
162 info retry fetch attempt 1 at 11:13:33 PM
163 info attempt registry request try #1 at 11:13:33 PM
164 http fetch GET https://registry.npmjs.org/openurl/-/openurl-1.1.0.tgz
165 info retry fetch attempt 1 at 11:13:33 PM
166 info attempt registry request try #1 at 11:13:33 PM
167 http fetch GET https://registry.npmjs.org/debug/-/debug-2.2.0.tgz
168 http 200 https://registry.npmjs.org/yargs
169 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
169 verbose headers etag: '"11MR9LYIPFPOIXVB7BV6642F5"',
169 verbose headers 'content-type': 'application/json',
169 verbose headers 'content-encoding': 'gzip',
169 verbose headers 'cache-control': 'max-age=300',
169 verbose headers 'content-length': '33782',
169 verbose headers 'accept-ranges': 'bytes',
169 verbose headers date: 'Wed, 01 Jun 2016 03:13:32 GMT',
169 verbose headers via: '1.1 varnish',
169 verbose headers age: '134',
169 verbose headers connection: 'keep-alive',
169 verbose headers 'x-served-by': 'cache-jfk1033-JFK',
169 verbose headers 'x-cache': 'HIT',
169 verbose headers 'x-cache-hits': '4',
169 verbose headers 'x-timer': 'S1464750812.823081,VS0,VE0',
169 verbose headers vary: 'Accept-Encoding' }
170 silly get cb [ 200,
170 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
170 silly get etag: '"11MR9LYIPFPOIXVB7BV6642F5"',
170 silly get 'content-type': 'application/json',
170 silly get 'content-encoding': 'gzip',
170 silly get 'cache-control': 'max-age=300',
170 silly get 'content-length': '33782',
170 silly get 'accept-ranges': 'bytes',
170 silly get date: 'Wed, 01 Jun 2016 03:13:32 GMT',
170 silly get via: '1.1 varnish',
170 silly get age: '134',
170 silly get connection: 'keep-alive',
170 silly get 'x-served-by': 'cache-jfk1033-JFK',
170 silly get 'x-cache': 'HIT',
170 silly get 'x-cache-hits': '4',
170 silly get 'x-timer': 'S1464750812.823081,VS0,VE0',
170 silly get vary: 'Accept-Encoding' } ]
171 verbose get saving yargs to /Users/Deven/.npm/registry.npmjs.org/yargs/.cache.json
172 verbose correctMkdir /Users/Deven/.npm correctMkdir not in flight; initializing
173 silly resolveWithNewModule [email protected] checking installable status
174 silly cache add args [ '[email protected]', null ]
175 verbose cache add spec [email protected]
176 silly cache add parsed spec Result {
176 silly cache add raw: '[email protected]',
176 silly cache add scope: null,
176 silly cache add name: 'yargs',
176 silly cache add rawSpec: '3.29.0',
176 silly cache add spec: '3.29.0',
176 silly cache add type: 'version' }
177 silly addNamed [email protected]
178 verbose addNamed "3.29.0" is a plain semver version for yargs
179 silly mapToRegistry name yargs
180 silly mapToRegistry using default registry
181 silly mapToRegistry registry https://registry.npmjs.org/
182 silly mapToRegistry data Result {
182 silly mapToRegistry raw: 'yargs',
182 silly mapToRegistry scope: null,
182 silly mapToRegistry name: 'yargs',
182 silly mapToRegistry rawSpec: '',
182 silly mapToRegistry spec: 'latest',
182 silly mapToRegistry type: 'tag' }
183 silly mapToRegistry uri https://registry.npmjs.org/yargs
184 verbose addNameVersion registry:https://registry.npmjs.org/yargs not in flight; fetching
185 verbose get https://registry.npmjs.org/yargs not expired, no request
186 silly mapToRegistry name yargs
187 silly mapToRegistry using default registry
188 silly mapToRegistry registry https://registry.npmjs.org/
189 silly mapToRegistry data Result {
189 silly mapToRegistry raw: 'yargs',
189 silly mapToRegistry scope: null,
189 silly mapToRegistry name: 'yargs',
189 silly mapToRegistry rawSpec: '',
189 silly mapToRegistry spec: 'latest',
189 silly mapToRegistry type: 'tag' }
190 silly mapToRegistry uri https://registry.npmjs.org/yargs
191 verbose addRemoteTarball https://registry.npmjs.org/yargs/-/yargs-3.29.0.tgz not in flight; adding
192 verbose addRemoteTarball [ 'https://registry.npmjs.org/yargs/-/yargs-3.29.0.tgz',
192 verbose addRemoteTarball '1aab9660eae79d8b8f675bcaeeab6ee34c2cf69c' ]
193 info retry fetch attempt 1 at 11:13:33 PM
194 info attempt registry request try #1 at 11:13:33 PM
195 http fetch GET https://registry.npmjs.org/yargs/-/yargs-3.29.0.tgz
196 http fetch 200 https://registry.npmjs.org/openurl/-/openurl-1.1.0.tgz
197 silly fetchAndShaCheck shasum e2f2189d999c04823201f083f0f1a7cd8903187a
198 verbose addTmpTarball /var/folders/zk/s0_c18451j3bt7vqvkvt45pr0000gn/T/npm-12821-c28fc922/registry.npmjs.org/openurl/-/openurl-1.1.0.tgz not in flight; adding
199 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
200 verbose correctMkdir /Users/Deven/.npm correctMkdir not in flight; initializing
201 http fetch 200 https://registry.npmjs.org/debug/-/debug-2.2.0.tgz
202 silly cache afterAdd [email protected]
203 verbose afterAdd /Users/Deven/.npm/openurl/1.1.0/package/package.json not in flight; writing
204 verbose correctMkdir /Users/Deven/.npm correctMkdir not in flight; initializing
205 silly fetchAndShaCheck shasum f87057e995b1a1f6ae6a4960664137bc56f039da
206 verbose afterAdd /Users/Deven/.npm/openurl/1.1.0/package/package.json written
207 verbose addTmpTarball /var/folders/zk/s0_c18451j3bt7vqvkvt45pr0000gn/T/npm-12821-c28fc922/registry.npmjs.org/debug/-/debug-2.2.0.tgz not in flight; adding
208 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
209 verbose correctMkdir /Users/Deven/.npm correctMkdir not in flight; initializing
210 http 200 https://registry.npmjs.org/request
211 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
211 verbose headers etag: '"3ZLRDQ7WO8VYA3KDEVAILC7XN"',
211 verbose headers 'content-type': 'application/json',
211 verbose headers 'content-encoding': 'gzip',
211 verbose headers 'cache-control': 'max-age=300',
211 verbose headers 'content-length': '35978',
211 verbose headers 'accept-ranges': 'bytes',
211 verbose headers date: 'Wed, 01 Jun 2016 03:13:32 GMT',
211 verbose headers via: '1.1 varnish',
211 verbose headers age: '30',
211 verbose headers connection: 'keep-alive',
211 verbose headers 'x-served-by': 'cache-jfk1021-JFK',
211 verbose headers 'x-cache': 'HIT',
211 verbose headers 'x-cache-hits': '1',
211 verbose headers 'x-timer': 'S1464750812.367309,VS0,VE0',
211 verbose headers vary: 'Accept-Encoding' }
212 silly get cb [ 200,
212 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
212 silly get etag: '"3ZLRDQ7WO8VYA3KDEVAILC7XN"',
212 silly get 'content-type': 'application/json',
212 silly get 'content-encoding': 'gzip',
212 silly get 'cache-control': 'max-age=300',
212 silly get 'content-length': '35978',
212 silly get 'accept-ranges': 'bytes',
212 silly get date: 'Wed, 01 Jun 2016 03:13:32 GMT',
212 silly get via: '1.1 varnish',
212 silly get age: '30',
212 silly get connection: 'keep-alive',
212 silly get 'x-served-by': 'cache-jfk1021-JFK',
212 silly get 'x-cache': 'HIT',
212 silly get 'x-cache-hits': '1',
212 silly get 'x-timer': 'S1464750812.367309,VS0,VE0',
212 silly get vary: 'Accept-Encoding' } ]
213 verbose get saving request to /Users/Deven/.npm/registry.npmjs.org/request/.cache.json
214 verbose correctMkdir /Users/Deven/.npm correctMkdir not in flight; initializing
215 silly cache afterAdd [email protected]
216 verbose afterAdd /Users/Deven/.npm/debug/2.2.0/package/package.json not in flight; writing
217 verbose correctMkdir /Users/Deven/.npm correctMkdir not in flight; initializing
218 silly resolveWithNewModule [email protected] checking installable status
219 silly cache add args [ '[email protected]', null ]
220 verbose cache add spec [email protected]
221 silly cache add parsed spec Result {
221 silly cache add raw: '[email protected]',
221 silly cache add scope: null,
221 silly cache add name: 'request',
221 silly cache add rawSpec: '2.65.0',
221 silly cache add spec: '2.65.0',
221 silly cache add type: 'version' }
222 silly addNamed [email protected]
223 verbose addNamed "2.65.0" is a plain semver version for request
224 silly mapToRegistry name request
225 silly mapToRegistry using default registry
226 silly mapToRegistry registry https://registry.npmjs.org/
227 silly mapToRegistry data Result {
227 silly mapToRegistry raw: 'request',
227 silly mapToRegistry scope: null,
227 silly mapToRegistry name: 'request',
227 silly mapToRegistry rawSpec: '',
227 silly mapToRegistry spec: 'latest',
227 silly mapToRegistry type: 'tag' }
228 silly mapToRegistry uri https://registry.npmjs.org/request
229 verbose addNameVersion registry:https://registry.npmjs.org/request not in flight; fetching
230 http fetch 200 https://registry.npmjs.org/yargs/-/yargs-3.29.0.tgz
231 verbose get https://registry.npmjs.org/request not expired, no request
232 verbose afterAdd /Users/Deven/.npm/debug/2.2.0/package/package.json written
233 silly mapToRegistry name request
234 silly mapToRegistry using default registry
235 silly mapToRegistry registry https://registry.npmjs.org/
236 silly mapToRegistry data Result {
236 silly mapToRegistry raw: 'request',
236 silly mapToRegistry scope: null,
236 silly mapToRegistry name: 'request',
236 silly mapToRegistry rawSpec: '',
236 silly mapToRegistry spec: 'latest',
236 silly mapToRegistry type: 'tag' }
237 silly mapToRegistry uri https://registry.npmjs.org/request
238 verbose addRemoteTarball https://registry.npmjs.org/request/-/request-2.65.0.tgz not in flight; adding
239 verbose addRemoteTarball [ 'https://registry.npmjs.org/request/-/request-2.65.0.tgz',
239 verbose addRemoteTarball 'cc1a3bc72b96254734fc34296da322f9486ddeba' ]
240 info retry fetch attempt 1 at 11:13:33 PM
241 info attempt registry request try #1 at 11:13:33 PM
242 http fetch GET https://registry.npmjs.org/request/-/request-2.65.0.tgz
243 silly fetchAndShaCheck shasum 1aab9660eae79d8b8f675bcaeeab6ee34c2cf69c
244 verbose addTmpTarball /var/folders/zk/s0_c18451j3bt7vqvkvt45pr0000gn/T/npm-12821-c28fc922/registry.npmjs.org/yargs/-/yargs-3.29.0.tgz not in flight; adding
245 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
246 verbose correctMkdir /Users/Deven/.npm correctMkdir not in flight; initializing
247 silly cache afterAdd [email protected]
248 verbose afterAdd /Users/Deven/.npm/yargs/3.29.0/package/package.json not in flight; writing
249 verbose correctMkdir /Users/Deven/.npm correctMkdir not in flight; initializing
250 verbose afterAdd /Users/Deven/.npm/yargs/3.29.0/package/package.json written
251 http fetch 200 https://registry.npmjs.org/request/-/request-2.65.0.tgz
252 silly fetchAndShaCheck shasum cc1a3bc72b96254734fc34296da322f9486ddeba
253 verbose addTmpTarball /var/folders/zk/s0_c18451j3bt7vqvkvt45pr0000gn/T/npm-12821-c28fc922/registry.npmjs.org/request/-/request-2.65.0.tgz not in flight; adding
254 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
255 verbose correctMkdir /Users/Deven/.npm correctMkdir not in flight; initializing
256 silly cache afterAdd [email protected]
257 verbose afterAdd /Users/Deven/.npm/request/2.65.0/package/package.json not in flight; writing
258 verbose correctMkdir /Users/Deven/.npm correctMkdir not in flight; initializing
259 verbose afterAdd /Users/Deven/.npm/request/2.65.0/package/package.json written
260 silly fetchNamedPackageData ms
261 silly mapToRegistry name ms
262 silly mapToRegistry using default registry
263 silly mapToRegistry registry https://registry.npmjs.org/
264 silly mapToRegistry data Result {
264 silly mapToRegistry raw: 'ms',
264 silly mapToRegistry scope: null,
264 silly mapToRegistry name: 'ms',
264 silly mapToRegistry rawSpec: '',
264 silly mapToRegistry spec: 'latest',
264 silly mapToRegistry type: 'tag' }
265 silly mapToRegistry uri https://registry.npmjs.org/ms
266 verbose request uri https://registry.npmjs.org/ms
267 verbose request no auth needed
268 info attempt registry request try #1 at 11:13:33 PM
269 http request GET https://registry.npmjs.org/ms
270 http 200 https://registry.npmjs.org/ms
271 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
271 verbose headers etag: '"5143492BBX5I18XHV9RBWJ2GY"',
271 verbose headers 'content-type': 'application/json',
271 verbose headers 'content-encoding': 'gzip',
271 verbose headers 'cache-control': 'max-age=300',
271 verbose headers 'content-length': '2303',
271 verbose headers 'accept-ranges': 'bytes',
271 verbose headers date: 'Wed, 01 Jun 2016 03:13:33 GMT',
271 verbose headers via: '1.1 varnish',
271 verbose headers age: '129',
271 verbose headers connection: 'keep-alive',
271 verbose headers 'x-served-by': 'cache-jfk1033-JFK',
271 verbose headers 'x-cache': 'HIT',
271 verbose headers 'x-cache-hits': '8',
271 verbose headers 'x-timer': 'S1464750813.658564,VS0,VE0',
271 verbose headers vary: 'Accept-Encoding' }
272 silly get cb [ 200,
272 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
272 silly get etag: '"5143492BBX5I18XHV9RBWJ2GY"',
272 silly get 'content-type': 'application/json',
272 silly get 'content-encoding': 'gzip',
272 silly get 'cache-control': 'max-age=300',
272 silly get 'content-length': '2303',
272 silly get 'accept-ranges': 'bytes',
272 silly get date: 'Wed, 01 Jun 2016 03:13:33 GMT',
272 silly get via: '1.1 varnish',
272 silly get age: '129',
272 silly get connection: 'keep-alive',
272 silly get 'x-served-by': 'cache-jfk1033-JFK',
272 silly get 'x-cache': 'HIT',
272 silly get 'x-cache-hits': '8',
272 silly get 'x-timer': 'S1464750813.658564,VS0,VE0',
272 silly get vary: 'Accept-Encoding' } ]
273 verbose get saving ms to /Users/Deven/.npm/registry.npmjs.org/ms/.cache.json
274 verbose correctMkdir /Users/Deven/.npm correctMkdir not in flight; initializing
275 silly resolveWithNewModule [email protected] checking installable status
276 silly cache add args [ '[email protected]', null ]
277 verbose cache add spec [email protected]
278 silly cache add parsed spec Result {
278 silly cache add raw: '[email protected]',
278 silly cache add scope: null,
278 silly cache add name: 'ms',
278 silly cache add rawSpec: '0.7.1',
278 silly cache add spec: '0.7.1',
278 silly cache add type: 'version' }
279 silly addNamed [email protected]
280 verbose addNamed "0.7.1" is a plain semver version for ms
281 silly mapToRegistry name ms
282 silly mapToRegistry using default registry
283 silly mapToRegistry registry https://registry.npmjs.org/
284 silly mapToRegistry data Result {
284 silly mapToRegistry raw: 'ms',
284 silly mapToRegistry scope: null,
284 silly mapToRegistry name: 'ms',
284 silly mapToRegistry rawSpec: '',
284 silly mapToRegistry spec: 'latest',
284 silly mapToRegistry type: 'tag' }
285 silly mapToRegistry uri https://registry.npmjs.org/ms
286 verbose addNameVersion registry:https://registry.npmjs.org/ms not in flight; fetching
287 verbose get https://registry.npmjs.org/ms not expired, no request
288 silly mapToRegistry name ms
289 silly mapToRegistry using default registry
290 silly mapToRegistry registry https://registry.npmjs.org/
291 silly mapToRegistry data Result {
291 silly mapToRegistry raw: 'ms',
291 silly mapToRegistry scope: null,
291 silly mapToRegistry name: 'ms',
291 silly mapToRegistry rawSpec: '',
291 silly mapToRegistry spec: 'latest',
291 silly mapToRegistry type: 'tag' }
292 silly mapToRegistry uri https://registry.npmjs.org/ms
293 verbose addRemoteTarball https://registry.npmjs.org/ms/-/ms-0.7.1.tgz not in flight; adding
294 verbose addRemoteTarball [ 'https://registry.npmjs.org/ms/-/ms-0.7.1.tgz',
294 verbose addRemoteTarball '9cd13c03adbff25b65effde7ce864ee952017098' ]
295 info retry fetch attempt 1 at 11:13:33 PM
296 info attempt registry request try #1 at 11:13:33 PM
297 http fetch GET https://registry.npmjs.org/ms/-/ms-0.7.1.tgz
298 http fetch 200 https://registry.npmjs.org/ms/-/ms-0.7.1.tgz
299 silly fetchAndShaCheck shasum 9cd13c03adbff25b65effde7ce864ee952017098
300 verbose addTmpTarball /var/folders/zk/s0_c18451j3bt7vqvkvt45pr0000gn/T/npm-12821-c28fc922/registry.npmjs.org/ms/-/ms-0.7.1.tgz not in flight; adding
301 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
302 verbose correctMkdir /Users/Deven/.npm correctMkdir not in flight; initializing
303 silly cache afterAdd [email protected]
304 verbose afterAdd /Users/Deven/.npm/ms/0.7.1/package/package.json not in flight; writing
305 verbose correctMkdir /Users/Deven/.npm correctMkdir not in flight; initializing
306 verbose afterAdd /Users/Deven/.npm/ms/0.7.1/package/package.json written
307 silly fetchNamedPackageData bl
308 silly mapToRegistry name bl
309 silly mapToRegistry using default registry
310 silly mapToRegistry registry https://registry.npmjs.org/
311 silly mapToRegistry data Result {
311 silly mapToRegistry raw: 'bl',
311 silly mapToRegistry scope: null,
311 silly mapToRegistry name: 'bl',
311 silly mapToRegistry rawSpec: '',
311 silly mapToRegistry spec: 'latest',
311 silly mapToRegistry type: 'tag' }
312 silly mapToRegistry uri https://registry.npmjs.org/bl
313 silly fetchNamedPackageData caseless
314 silly mapToRegistry name caseless
315 silly mapToRegistry using default registry
316 silly mapToRegistry registry https://registry.npmjs.org/
317 silly mapToRegistry data Result {
317 silly mapToRegistry raw: 'caseless',
317 silly mapToRegistry scope: null,
317 silly mapToRegistry name: 'caseless',
317 silly mapToRegistry rawSpec: '',
317 silly mapToRegistry spec: 'latest',
317 silly mapToRegistry type: 'tag' }
318 silly mapToRegistry uri https://registry.npmjs.org/caseless
319 silly fetchNamedPackageData extend
320 silly mapToRegistry name extend
321 silly mapToRegistry using default registry
322 silly mapToRegistry registry https://registry.npmjs.org/
323 silly mapToRegistry data Result {
323 silly mapToRegistry raw: 'extend',
323 silly mapToRegistry scope: null,
323 silly mapToRegistry name: 'extend',
323 silly mapToRegistry rawSpec: '',
323 silly mapToRegistry spec: 'latest',
323 silly mapToRegistry type: 'tag' }
324 silly mapToRegistry uri https://registry.npmjs.org/extend
325 silly fetchNamedPackageData forever-agent
326 silly mapToRegistry name forever-agent
327 silly mapToRegistry using default registry
328 silly mapToRegistry registry https://registry.npmjs.org/
329 silly mapToRegistry data Result {
329 silly mapToRegistry raw: 'forever-agent',
329 silly mapToRegistry scope: null,
329 silly mapToRegistry name: 'forever-agent',
329 silly mapToRegistry rawSpec: '',
329 silly mapToRegistry spec: 'latest',
329 silly mapToRegistry type: 'tag' }
330 silly mapToRegistry uri https://registry.npmjs.org/forever-agent
331 silly fetchNamedPackageData form-data
332 silly mapToRegistry name form-data
333 silly mapToRegistry using default registry
334 silly mapToRegistry registry https://registry.npmjs.org/
335 silly mapToRegistry data Result {
335 silly mapToRegistry raw: 'form-data',
335 silly mapToRegistry scope: null,
335 silly mapToRegistry name: 'form-data',
335 silly mapToRegistry rawSpec: '',
335 silly mapToRegistry spec: 'latest',
335 silly mapToRegistry type: 'tag' }
336 silly mapToRegistry uri https://registry.npmjs.org/form-data
337 silly fetchNamedPackageData json-stringify-safe
338 silly mapToRegistry name json-stringify-safe
339 silly mapToRegistry using default registry
340 silly mapToRegistry registry https://registry.npmjs.org/
341 silly mapToRegistry data Result {
341 silly mapToRegistry raw: 'json-stringify-safe',
341 silly mapToRegistry scope: null,
341 silly mapToRegistry name: 'json-stringify-safe',
341 silly mapToRegistry rawSpec: '',
341 silly mapToRegistry spec: 'latest',
341 silly mapToRegistry type: 'tag' }
342 silly mapToRegistry uri https://registry.npmjs.org/json-stringify-safe
343 silly fetchNamedPackageData mime-types
344 silly mapToRegistry name mime-types
345 silly mapToRegistry using default registry
346 silly mapToRegistry registry https://registry.npmjs.org/
347 silly mapToRegistry data Result {
347 silly mapToRegistry raw: 'mime-types',
347 silly mapToRegistry scope: null,
347 silly mapToRegistry name: 'mime-types',
347 silly mapToRegistry rawSpec: '',
347 silly mapToRegistry spec: 'latest',
347 silly mapToRegistry type: 'tag' }
348 silly mapToRegistry uri https://registry.npmjs.org/mime-types
349 silly fetchNamedPackageData node-uuid
350 silly mapToRegistry name node-uuid
351 silly mapToRegistry using default registry
352 silly mapToRegistry registry https://registry.npmjs.org/
353 silly mapToRegistry data Result {
353 silly mapToRegistry raw: 'node-uuid',
353 silly mapToRegistry scope: null,
353 silly mapToRegistry name: 'node-uuid',
353 silly mapToRegistry rawSpec: '',
353 silly mapToRegistry spec: 'latest',
353 silly mapToRegistry type: 'tag' }
354 silly mapToRegistry uri https://registry.npmjs.org/node-uuid
355 silly fetchNamedPackageData qs
356 silly mapToRegistry name qs
357 silly mapToRegistry using default registry
358 silly mapToRegistry registry https://registry.npmjs.org/
359 silly mapToRegistry data Result {
359 silly mapToRegistry raw: 'qs',
359 silly mapToRegistry scope: null,
359 silly mapToRegistry name: 'qs',
359 silly mapToRegistry rawSpec: '',
359 silly mapToRegistry spec: 'latest',
359 silly mapToRegistry type: 'tag' }
360 silly mapToRegistry uri https://registry.npmjs.org/qs
361 silly fetchNamedPackageData tunnel-agent
362 silly mapToRegistry name tunnel-agent
363 silly mapToRegistry using default registry
364 silly mapToRegistry registry https://registry.npmjs.org/
365 silly mapToRegistry data Result {
365 silly mapToRegistry raw: 'tunnel-agent',
365 silly mapToRegistry scope: null,
365 silly mapToRegistry name: 'tunnel-agent',
365 silly mapToRegistry rawSpec: '',
365 silly mapToRegistry spec: 'latest',
365 silly mapToRegistry type: 'tag' }
366 silly mapToRegistry uri https://registry.npmjs.org/tunnel-agent
367 silly fetchNamedPackageData tough-cookie
368 silly mapToRegistry name tough-cookie
369 silly mapToRegistry using default registry
370 silly mapToRegistry registry https://registry.npmjs.org/
371 silly mapToRegistry data Result {
371 silly mapToRegistry raw: 'tough-cookie',
371 silly mapToRegistry scope: null,
371 silly mapToRegistry name: 'tough-cookie',
371 silly mapToRegistry rawSpec: '',
371 silly mapToRegistry spec: 'latest',
371 silly mapToRegistry type: 'tag' }
372 silly mapToRegistry uri https://registry.npmjs.org/tough-cookie
373 silly fetchNamedPackageData http-signature
374 silly mapToRegistry name http-signature
375 silly mapToRegistry using default registry
376 silly mapToRegistry registry https://registry.npmjs.org/
377 silly mapToRegistry data Result {
377 silly mapToRegistry raw: 'http-signature',
377 silly mapToRegistry scope: null,
377 silly mapToRegistry name: 'http-signature',
377 silly mapToRegistry rawSpec: '',
377 silly mapToRegistry spec: 'latest',
377 silly mapToRegistry type: 'tag' }
378 silly mapToRegistry uri https://registry.npmjs.org/http-signature
379 silly fetchNamedPackageData oauth-sign
380 silly mapToRegistry name oauth-sign
381 silly mapToRegistry using default registry
382 silly mapToRegistry registry https://registry.npmjs.org/
383 silly mapToRegistry data Result {
383 silly mapToRegistry raw: 'oauth-sign',
383 silly mapToRegistry scope: null,
383 silly mapToRegistry name: 'oauth-sign',
383 silly mapToRegistry rawSpec: '',
383 silly mapToRegistry spec: 'latest',
383 silly mapToRegistry type: 'tag' }
384 silly mapToRegistry uri https://registry.npmjs.org/oauth-sign
385 silly fetchNamedPackageData hawk
386 silly mapToRegistry name hawk
387 silly mapToRegistry using default registry
388 silly mapToRegistry registry https://registry.npmjs.org/
389 silly mapToRegistry data Result {
389 silly mapToRegistry raw: 'hawk',
389 silly mapToRegistry scope: null,
389 silly mapToRegistry name: 'hawk',
389 silly mapToRegistry rawSpec: '',
389 silly mapToRegistry spec: 'latest',
389 silly mapToRegistry type: 'tag' }
390 silly mapToRegistry uri https://registry.npmjs.org/hawk
391 silly fetchNamedPackageData aws-sign2
392 silly mapToRegistry name aws-sign2
393 silly mapToRegistry using default registry
394 silly mapToRegistry registry https://registry.npmjs.org/
395 silly mapToRegistry data Result {
395 silly mapToRegistry raw: 'aws-sign2',
395 silly mapToRegistry scope: null,
395 silly mapToRegistry name: 'aws-sign2',
395 silly mapToRegistry rawSpec: '',
395 silly mapToRegistry spec: 'latest',
395 silly mapToRegistry type: 'tag' }
396 silly mapToRegistry uri https://registry.npmjs.org/aws-sign2
397 silly fetchNamedPackageData stringstream
398 silly mapToRegistry name stringstream
399 silly mapToRegistry using default registry
400 silly mapToRegistry registry https://registry.npmjs.org/
401 silly mapToRegistry data Result {
401 silly mapToRegistry raw: 'stringstream',
401 silly mapToRegistry scope: null,
401 silly mapToRegistry name: 'stringstream',
401 silly mapToRegistry rawSpec: '',
401 silly mapToRegistry spec: 'latest',
401 silly mapToRegistry type: 'tag' }
402 silly mapToRegistry uri https://registry.npmjs.org/stringstream
403 silly fetchNamedPackageData combined-stream
404 silly mapToRegistry name combined-stream
405 silly mapToRegistry using default registry
406 silly mapToRegistry registry https://registry.npmjs.org/
407 silly mapToRegistry data Result {
407 silly mapToRegistry raw: 'combined-stream',
407 silly mapToRegistry scope: null,
407 silly mapToRegistry name: 'combined-stream',
407 silly mapToRegistry rawSpec: '',
407 silly mapToRegistry spec: 'latest',
407 silly mapToRegistry type: 'tag' }
408 silly mapToRegistry uri https://registry.npmjs.org/combined-stream
409 silly fetchNamedPackageData isstream
410 silly mapToRegistry name isstream
411 silly mapToRegistry using default registry
412 silly mapToRegistry registry https://registry.npmjs.org/
413 silly mapToRegistry data Result {
413 silly mapToRegistry raw: 'isstream',
413 silly mapToRegistry scope: null,
413 silly mapToRegistry name: 'isstream',
413 silly mapToRegistry rawSpec: '',
413 silly mapToRegistry spec: 'latest',
413 silly mapToRegistry type: 'tag' }
414 silly mapToRegistry uri https://registry.npmjs.org/isstream
415 silly fetchNamedPackageData har-validator
416 silly mapToRegistry name har-validator
417 silly mapToRegistry using default registry
418 silly mapToRegistry registry https://registry.npmjs.org/
419 silly mapToRegistry data Result {
419 silly mapToRegistry raw: 'har-validator',
419 silly mapToRegistry scope: null,
419 silly mapToRegistry name: 'har-validator',
419 silly mapToRegistry rawSpec: '',
419 silly mapToRegistry spec: 'latest',
419 silly mapToRegistry type: 'tag' }
420 silly mapToRegistry uri https://registry.npmjs.org/har-validator
421 verbose request uri https://registry.npmjs.org/bl
422 verbose request no auth needed
423 info attempt registry request try #1 at 11:13:33 PM
424 http request GET https://registry.npmjs.org/bl
425 verbose request uri https://registry.npmjs.org/caseless
426 verbose request no auth needed
427 info attempt registry request try #1 at 11:13:33 PM
428 http request GET https://registry.npmjs.org/caseless
429 verbose request uri https://registry.npmjs.org/extend
430 verbose request no auth needed
431 info attempt registry request try #1 at 11:13:33 PM
432 http request GET https://registry.npmjs.org/extend
433 verbose request uri https://registry.npmjs.org/forever-agent
434 verbose request no auth needed
435 info attempt registry request try #1 at 11:13:33 PM
436 http request GET https://registry.npmjs.org/forever-agent
437 verbose request uri https://registry.npmjs.org/form-data
438 verbose request no auth needed
439 info attempt registry request try #1 at 11:13:33 PM
440 http request GET https://registry.npmjs.org/form-data
441 verbose request uri https://registry.npmjs.org/json-stringify-safe
442 verbose request no auth needed
443 info attempt registry request try #1 at 11:13:33 PM
444 http request GET https://registry.npmjs.org/json-stringify-safe
445 verbose request uri https://registry.npmjs.org/mime-types
446 verbose request no auth needed
447 info attempt registry request try #1 at 11:13:33 PM
448 http request GET https://registry.npmjs.org/mime-types
449 verbose request uri https://registry.npmjs.org/node-uuid
450 verbose request no auth needed
451 info attempt registry request try #1 at 11:13:33 PM
452 http request GET https://registry.npmjs.org/node-uuid
453 verbose request uri https://registry.npmjs.org/qs
454 verbose request no auth needed
455 info attempt registry request try #1 at 11:13:33 PM
456 http request GET https://registry.npmjs.org/qs
457 verbose request uri https://registry.npmjs.org/tunnel-agent
458 verbose request no auth needed
459 info attempt registry request try #1 at 11:13:33 PM
460 http request GET https://registry.npmjs.org/tunnel-agent
461 verbose request uri https://registry.npmjs.org/tough-cookie
462 verbose request no auth needed
463 info attempt registry request try #1 at 11:13:33 PM
464 http request GET https://registry.npmjs.org/tough-cookie
465 verbose request uri https://registry.npmjs.org/http-signature
466 verbose request no auth needed
467 info attempt registry request try #1 at 11:13:33 PM
468 http request GET https://registry.npmjs.org/http-signature
469 verbose request uri https://registry.npmjs.org/oauth-sign
470 verbose request no auth needed
471 info attempt registry request try #1 at 11:13:33 PM
472 http request GET https://registry.npmjs.org/oauth-sign
473 verbose request uri https://registry.npmjs.org/hawk
474 verbose request no auth needed
475 info attempt registry request try #1 at 11:13:33 PM
476 http request GET https://registry.npmjs.org/hawk
477 verbose request uri https://registry.npmjs.org/aws-sign2
478 verbose request no auth needed
479 info attempt registry request try #1 at 11:13:33 PM
480 http request GET https://registry.npmjs.org/aws-sign2
481 verbose request uri https://registry.npmjs.org/stringstream
482 verbose request no auth needed
483 info attempt registry request try #1 at 11:13:33 PM
484 http request GET https://registry.npmjs.org/stringstream
485 verbose request uri https://registry.npmjs.org/combined-stream
486 verbose request no auth needed
487 info attempt registry request try #1 at 11:13:33 PM
488 http request GET https://registry.npmjs.org/combined-stream
489 verbose request uri https://registry.npmjs.org/isstream
490 verbose request no auth needed
491 info attempt registry request try #1 at 11:13:33 PM
492 http request GET https://registry.npmjs.org/isstream
493 verbose request uri https://registry.npmjs.org/har-validator
494 verbose request no auth needed
495 info attempt registry request try #1 at 11:13:33 PM
496 http request GET https://registry.npmjs.org/har-validator
497 http 200 https://registry.npmjs.org/forever-agent
498 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
498 verbose headers etag: '"AN8DYHW8FVWM228PCRXS53C8O"',
498 verbose headers 'content-type': 'application/json',
498 verbose headers 'content-encoding': 'gzip',
498 verbose headers 'cache-control': 'max-age=300',
498 verbose headers 'content-length': '1416',
498 verbose headers 'accept-ranges': 'bytes',
498 verbose headers date: 'Wed, 01 Jun 2016 03:13:33 GMT',
498 verbose headers via: '1.1 varnish',
498 verbose headers age: '154',
498 verbose headers connection: 'keep-alive',
498 verbose headers 'x-served-by': 'cache-jfk1021-JFK',
498 verbose headers 'x-cache': 'HIT',
498 verbose headers 'x-cache-hits': '4',
498 verbose headers 'x-timer': 'S1464750813.850654,VS0,VE0',
498 verbose headers vary: 'Accept-Encoding' }
499 silly get cb [ 200,
499 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
499 silly get etag: '"AN8DYHW8FVWM228PCRXS53C8O"',
499 silly get 'content-type': 'application/json',
499 silly get 'content-encoding': 'gzip',
499 silly get 'cache-control': 'max-age=300',
499 silly get 'content-length': '1416',
499 silly get 'accept-ranges': 'bytes',
499 silly get date: 'Wed, 01 Jun 2016 03:13:33 GMT',
499 silly get via: '1.1 varnish',
499 silly get age: '154',
499 silly get connection: 'keep-alive',
499 silly get 'x-served-by': 'cache-jfk1021-JFK',
499 silly get 'x-cache': 'HIT',
499 silly get 'x-cache-hits': '4',
499 silly get 'x-timer': 'S1464750813.850654,VS0,VE0',
499 silly get vary: 'Accept-Encoding' } ]
500 verbose get saving forever-agent to /Users/Deven/.npm/registry.npmjs.org/forever-agent/.cache.json
501 verbose correctMkdir /Users/Deven/.npm correctMkdir not in flight; initializing
502 http 200 https://registry.npmjs.org/caseless
503 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
503 verbose headers etag: '"31X3RJHEJY3DII8ZZ4JC45YBC"',
503 verbose headers 'content-type': 'application/json',
503 verbose headers 'content-encoding': 'gzip',
503 verbose headers 'cache-control': 'max-age=300',
503 verbose headers 'content-length': '2395',
503 verbose headers 'accept-ranges': 'bytes',
503 verbose headers date: 'Wed, 01 Jun 2016 03:13:33 GMT',
503 verbose headers via: '1.1 varnish',
503 verbose headers age: '237',
503 verbose headers connection: 'keep-alive',
503 verbose headers 'x-served-by': 'cache-jfk1048-JFK',