-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnpm-debug.log
More file actions
2131 lines (2131 loc) · 99.6 KB
/
npm-debug.log
File metadata and controls
2131 lines (2131 loc) · 99.6 KB
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 'jsdoc',
1 verbose cli '-g' ]
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 jsdoc
8 silly fetchNamedPackageData jsdoc
9 silly mapToRegistry name jsdoc
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry data Result {
12 silly mapToRegistry raw: 'jsdoc',
12 silly mapToRegistry scope: null,
12 silly mapToRegistry name: 'jsdoc',
12 silly mapToRegistry rawSpec: '',
12 silly mapToRegistry spec: 'latest',
12 silly mapToRegistry type: 'tag' }
13 silly mapToRegistry uri https://registry.npmjs.org/jsdoc
14 verbose request uri https://registry.npmjs.org/jsdoc
15 verbose request no auth needed
16 info attempt registry request try #1 at 8:35:58 PM
17 verbose request id 5f5011bc2e987c3e
18 verbose etag W/"58cba77f-c2de"
19 verbose lastModified Fri, 17 Mar 2017 09:08:15 GMT
20 http request GET https://registry.npmjs.org/jsdoc
21 http 304 https://registry.npmjs.org/jsdoc
22 verbose headers { date: 'Wed, 22 Mar 2017 20:35:55 GMT',
22 verbose headers via: '1.1 varnish',
22 verbose headers 'cache-control': 'max-age=300',
22 verbose headers etag: 'W/"58cba77f-c2de"',
22 verbose headers age: '201',
22 verbose headers connection: 'keep-alive',
22 verbose headers 'x-served-by': 'cache-lcy1133-LCY',
22 verbose headers 'x-cache': 'HIT',
22 verbose headers 'x-cache-hits': '2',
22 verbose headers 'x-timer': 'S1490214955.060985,VS0,VE0',
22 verbose headers vary: 'Accept-Encoding' }
23 silly get cb [ 304,
23 silly get { date: 'Wed, 22 Mar 2017 20:35:55 GMT',
23 silly get via: '1.1 varnish',
23 silly get 'cache-control': 'max-age=300',
23 silly get etag: 'W/"58cba77f-c2de"',
23 silly get age: '201',
23 silly get connection: 'keep-alive',
23 silly get 'x-served-by': 'cache-lcy1133-LCY',
23 silly get 'x-cache': 'HIT',
23 silly get 'x-cache-hits': '2',
23 silly get 'x-timer': 'S1490214955.060985,VS0,VE0',
23 silly get vary: 'Accept-Encoding' } ]
24 verbose etag https://registry.npmjs.org/jsdoc from cache
25 verbose get saving jsdoc to /Users/Umar/.npm/registry.npmjs.org/jsdoc/.cache.json
26 verbose correctMkdir /Users/Umar/.npm correctMkdir not in flight; initializing
27 silly install normalizeTree
28 silly loadCurrentTree Finishing
29 silly loadIdealTree Starting
30 silly install loadIdealTree
31 silly cloneCurrentTree Starting
32 silly install cloneCurrentTreeToIdealTree
33 silly cloneCurrentTree Finishing
34 silly loadShrinkwrap Starting
35 silly install loadShrinkwrap
36 silly loadShrinkwrap Finishing
37 silly loadAllDepsIntoIdealTree Starting
38 silly install loadAllDepsIntoIdealTree
39 silly resolveWithNewModule jsdoc@3.4.3 checking installable status
40 silly cache add args [ 'jsdoc', null ]
41 verbose cache add spec jsdoc
42 silly cache add parsed spec Result {
42 silly cache add raw: 'jsdoc',
42 silly cache add scope: null,
42 silly cache add name: 'jsdoc',
42 silly cache add rawSpec: '',
42 silly cache add spec: 'latest',
42 silly cache add type: 'tag' }
43 silly addNamed jsdoc@latest
44 verbose addNamed "latest" is being treated as a dist-tag for jsdoc
45 info addNameTag [ 'jsdoc', 'latest' ]
46 silly mapToRegistry name jsdoc
47 silly mapToRegistry using default registry
48 silly mapToRegistry registry https://registry.npmjs.org/
49 silly mapToRegistry data Result {
49 silly mapToRegistry raw: 'jsdoc',
49 silly mapToRegistry scope: null,
49 silly mapToRegistry name: 'jsdoc',
49 silly mapToRegistry rawSpec: '',
49 silly mapToRegistry spec: 'latest',
49 silly mapToRegistry type: 'tag' }
50 silly mapToRegistry uri https://registry.npmjs.org/jsdoc
51 verbose addNameTag registry:https://registry.npmjs.org/jsdoc not in flight; fetching
52 verbose get https://registry.npmjs.org/jsdoc not expired, no request
53 silly addNameTag next cb for jsdoc with tag latest
54 silly addNamed jsdoc@3.4.3
55 verbose addNamed "3.4.3" is a plain semver version for jsdoc
56 silly cache afterAdd jsdoc@3.4.3
57 verbose afterAdd /Users/Umar/.npm/jsdoc/3.4.3/package/package.json not in flight; writing
58 verbose correctMkdir /Users/Umar/.npm correctMkdir not in flight; initializing
59 verbose afterAdd /Users/Umar/.npm/jsdoc/3.4.3/package/package.json written
60 silly fetchNamedPackageData bluebird
61 silly mapToRegistry name bluebird
62 silly mapToRegistry using default registry
63 silly mapToRegistry registry https://registry.npmjs.org/
64 silly mapToRegistry data Result {
64 silly mapToRegistry raw: 'bluebird',
64 silly mapToRegistry scope: null,
64 silly mapToRegistry name: 'bluebird',
64 silly mapToRegistry rawSpec: '',
64 silly mapToRegistry spec: 'latest',
64 silly mapToRegistry type: 'tag' }
65 silly mapToRegistry uri https://registry.npmjs.org/bluebird
66 silly fetchNamedPackageData catharsis
67 silly mapToRegistry name catharsis
68 silly mapToRegistry using default registry
69 silly mapToRegistry registry https://registry.npmjs.org/
70 silly mapToRegistry data Result {
70 silly mapToRegistry raw: 'catharsis',
70 silly mapToRegistry scope: null,
70 silly mapToRegistry name: 'catharsis',
70 silly mapToRegistry rawSpec: '',
70 silly mapToRegistry spec: 'latest',
70 silly mapToRegistry type: 'tag' }
71 silly mapToRegistry uri https://registry.npmjs.org/catharsis
72 silly fetchNamedPackageData escape-string-regexp
73 silly mapToRegistry name escape-string-regexp
74 silly mapToRegistry using default registry
75 silly mapToRegistry registry https://registry.npmjs.org/
76 silly mapToRegistry data Result {
76 silly mapToRegistry raw: 'escape-string-regexp',
76 silly mapToRegistry scope: null,
76 silly mapToRegistry name: 'escape-string-regexp',
76 silly mapToRegistry rawSpec: '',
76 silly mapToRegistry spec: 'latest',
76 silly mapToRegistry type: 'tag' }
77 silly mapToRegistry uri https://registry.npmjs.org/escape-string-regexp
78 silly fetchNamedPackageData espree
79 silly mapToRegistry name espree
80 silly mapToRegistry using default registry
81 silly mapToRegistry registry https://registry.npmjs.org/
82 silly mapToRegistry data Result {
82 silly mapToRegistry raw: 'espree',
82 silly mapToRegistry scope: null,
82 silly mapToRegistry name: 'espree',
82 silly mapToRegistry rawSpec: '',
82 silly mapToRegistry spec: 'latest',
82 silly mapToRegistry type: 'tag' }
83 silly mapToRegistry uri https://registry.npmjs.org/espree
84 silly fetchNamedPackageData js2xmlparser
85 silly mapToRegistry name js2xmlparser
86 silly mapToRegistry using default registry
87 silly mapToRegistry registry https://registry.npmjs.org/
88 silly mapToRegistry data Result {
88 silly mapToRegistry raw: 'js2xmlparser',
88 silly mapToRegistry scope: null,
88 silly mapToRegistry name: 'js2xmlparser',
88 silly mapToRegistry rawSpec: '',
88 silly mapToRegistry spec: 'latest',
88 silly mapToRegistry type: 'tag' }
89 silly mapToRegistry uri https://registry.npmjs.org/js2xmlparser
90 silly fetchNamedPackageData klaw
91 silly mapToRegistry name klaw
92 silly mapToRegistry using default registry
93 silly mapToRegistry registry https://registry.npmjs.org/
94 silly mapToRegistry data Result {
94 silly mapToRegistry raw: 'klaw',
94 silly mapToRegistry scope: null,
94 silly mapToRegistry name: 'klaw',
94 silly mapToRegistry rawSpec: '',
94 silly mapToRegistry spec: 'latest',
94 silly mapToRegistry type: 'tag' }
95 silly mapToRegistry uri https://registry.npmjs.org/klaw
96 silly fetchNamedPackageData marked
97 silly mapToRegistry name marked
98 silly mapToRegistry using default registry
99 silly mapToRegistry registry https://registry.npmjs.org/
100 silly mapToRegistry data Result {
100 silly mapToRegistry raw: 'marked',
100 silly mapToRegistry scope: null,
100 silly mapToRegistry name: 'marked',
100 silly mapToRegistry rawSpec: '',
100 silly mapToRegistry spec: 'latest',
100 silly mapToRegistry type: 'tag' }
101 silly mapToRegistry uri https://registry.npmjs.org/marked
102 silly fetchNamedPackageData mkdirp
103 silly mapToRegistry name mkdirp
104 silly mapToRegistry using default registry
105 silly mapToRegistry registry https://registry.npmjs.org/
106 silly mapToRegistry data Result {
106 silly mapToRegistry raw: 'mkdirp',
106 silly mapToRegistry scope: null,
106 silly mapToRegistry name: 'mkdirp',
106 silly mapToRegistry rawSpec: '',
106 silly mapToRegistry spec: 'latest',
106 silly mapToRegistry type: 'tag' }
107 silly mapToRegistry uri https://registry.npmjs.org/mkdirp
108 silly fetchNamedPackageData requizzle
109 silly mapToRegistry name requizzle
110 silly mapToRegistry using default registry
111 silly mapToRegistry registry https://registry.npmjs.org/
112 silly mapToRegistry data Result {
112 silly mapToRegistry raw: 'requizzle',
112 silly mapToRegistry scope: null,
112 silly mapToRegistry name: 'requizzle',
112 silly mapToRegistry rawSpec: '',
112 silly mapToRegistry spec: 'latest',
112 silly mapToRegistry type: 'tag' }
113 silly mapToRegistry uri https://registry.npmjs.org/requizzle
114 silly fetchNamedPackageData strip-json-comments
115 silly mapToRegistry name strip-json-comments
116 silly mapToRegistry using default registry
117 silly mapToRegistry registry https://registry.npmjs.org/
118 silly mapToRegistry data Result {
118 silly mapToRegistry raw: 'strip-json-comments',
118 silly mapToRegistry scope: null,
118 silly mapToRegistry name: 'strip-json-comments',
118 silly mapToRegistry rawSpec: '',
118 silly mapToRegistry spec: 'latest',
118 silly mapToRegistry type: 'tag' }
119 silly mapToRegistry uri https://registry.npmjs.org/strip-json-comments
120 silly fetchNamedPackageData taffydb
121 silly mapToRegistry name taffydb
122 silly mapToRegistry using default registry
123 silly mapToRegistry registry https://registry.npmjs.org/
124 silly mapToRegistry data Result {
124 silly mapToRegistry raw: 'taffydb',
124 silly mapToRegistry scope: null,
124 silly mapToRegistry name: 'taffydb',
124 silly mapToRegistry rawSpec: '',
124 silly mapToRegistry spec: 'latest',
124 silly mapToRegistry type: 'tag' }
125 silly mapToRegistry uri https://registry.npmjs.org/taffydb
126 silly fetchNamedPackageData underscore
127 silly mapToRegistry name underscore
128 silly mapToRegistry using default registry
129 silly mapToRegistry registry https://registry.npmjs.org/
130 silly mapToRegistry data Result {
130 silly mapToRegistry raw: 'underscore',
130 silly mapToRegistry scope: null,
130 silly mapToRegistry name: 'underscore',
130 silly mapToRegistry rawSpec: '',
130 silly mapToRegistry spec: 'latest',
130 silly mapToRegistry type: 'tag' }
131 silly mapToRegistry uri https://registry.npmjs.org/underscore
132 verbose request uri https://registry.npmjs.org/escape-string-regexp
133 verbose request no auth needed
134 info attempt registry request try #1 at 8:35:58 PM
135 verbose etag W/"58ac29c5-242f"
136 verbose lastModified Tue, 21 Feb 2017 11:51:33 GMT
137 http request GET https://registry.npmjs.org/escape-string-regexp
138 verbose request uri https://registry.npmjs.org/catharsis
139 verbose request no auth needed
140 info attempt registry request try #1 at 8:35:58 PM
141 verbose etag W/"572124c6-d4f5"
142 verbose lastModified Wed, 27 Apr 2016 20:44:54 GMT
143 http request GET https://registry.npmjs.org/catharsis
144 verbose request uri https://registry.npmjs.org/klaw
145 verbose request no auth needed
146 info attempt registry request try #1 at 8:35:58 PM
147 verbose etag W/"5836b447-4ad9"
148 verbose lastModified Thu, 24 Nov 2016 09:35:03 GMT
149 http request GET https://registry.npmjs.org/klaw
150 verbose request uri https://registry.npmjs.org/js2xmlparser
151 verbose request no auth needed
152 info attempt registry request try #1 at 8:35:58 PM
153 verbose etag W/"58ad1293-5d3c"
154 verbose lastModified Wed, 22 Feb 2017 04:24:51 GMT
155 http request GET https://registry.npmjs.org/js2xmlparser
156 verbose request uri https://registry.npmjs.org/marked
157 verbose request no auth needed
158 info attempt registry request try #1 at 8:35:58 PM
159 verbose etag W/"58c2cdef-c20c"
160 verbose lastModified Fri, 10 Mar 2017 16:01:51 GMT
161 http request GET https://registry.npmjs.org/marked
162 verbose request uri https://registry.npmjs.org/bluebird
163 verbose request no auth needed
164 info attempt registry request try #1 at 8:35:58 PM
165 verbose etag W/"58d17421-60241"
166 verbose lastModified Tue, 21 Mar 2017 18:42:41 GMT
167 http request GET https://registry.npmjs.org/bluebird
168 verbose request uri https://registry.npmjs.org/requizzle
169 verbose request no auth needed
170 info attempt registry request try #1 at 8:35:58 PM
171 verbose etag W/"548230fa-31ca"
172 verbose lastModified Fri, 05 Dec 2014 22:26:02 GMT
173 http request GET https://registry.npmjs.org/requizzle
174 verbose request uri https://registry.npmjs.org/taffydb
175 verbose request no auth needed
176 info attempt registry request try #1 at 8:35:58 PM
177 verbose etag W/"58c2ca11-2d8c"
178 verbose lastModified Fri, 10 Mar 2017 15:45:21 GMT
179 http request GET https://registry.npmjs.org/taffydb
180 verbose request uri https://registry.npmjs.org/espree
181 verbose request no auth needed
182 info attempt registry request try #1 at 8:35:58 PM
183 verbose etag W/"58b50331-1e8e4"
184 verbose lastModified Tue, 28 Feb 2017 04:57:21 GMT
185 http request GET https://registry.npmjs.org/espree
186 verbose request uri https://registry.npmjs.org/strip-json-comments
187 verbose request no auth needed
188 info attempt registry request try #1 at 8:35:58 PM
189 verbose etag W/"58b927a4-44bc"
190 verbose lastModified Fri, 03 Mar 2017 08:21:56 GMT
191 http request GET https://registry.npmjs.org/strip-json-comments
192 http 304 https://registry.npmjs.org/escape-string-regexp
193 verbose headers { date: 'Wed, 22 Mar 2017 20:35:55 GMT',
193 verbose headers via: '1.1 varnish',
193 verbose headers 'cache-control': 'max-age=300',
193 verbose headers etag: 'W/"58ac29c5-242f"',
193 verbose headers age: '259',
193 verbose headers connection: 'keep-alive',
193 verbose headers 'x-served-by': 'cache-lcy1133-LCY',
193 verbose headers 'x-cache': 'HIT',
193 verbose headers 'x-cache-hits': '3',
193 verbose headers 'x-timer': 'S1490214955.264945,VS0,VE0',
193 verbose headers vary: 'Accept-Encoding' }
194 silly get cb [ 304,
194 silly get { date: 'Wed, 22 Mar 2017 20:35:55 GMT',
194 silly get via: '1.1 varnish',
194 silly get 'cache-control': 'max-age=300',
194 silly get etag: 'W/"58ac29c5-242f"',
194 silly get age: '259',
194 silly get connection: 'keep-alive',
194 silly get 'x-served-by': 'cache-lcy1133-LCY',
194 silly get 'x-cache': 'HIT',
194 silly get 'x-cache-hits': '3',
194 silly get 'x-timer': 'S1490214955.264945,VS0,VE0',
194 silly get vary: 'Accept-Encoding' } ]
195 verbose etag https://registry.npmjs.org/escape-string-regexp from cache
196 verbose get saving escape-string-regexp to /Users/Umar/.npm/registry.npmjs.org/escape-string-regexp/.cache.json
197 verbose correctMkdir /Users/Umar/.npm correctMkdir not in flight; initializing
198 verbose request uri https://registry.npmjs.org/underscore
199 verbose request no auth needed
200 info attempt registry request try #1 at 8:35:58 PM
201 verbose etag W/"58d02a50-aca1"
202 verbose lastModified Mon, 20 Mar 2017 19:15:28 GMT
203 http request GET https://registry.npmjs.org/underscore
204 verbose request uri https://registry.npmjs.org/mkdirp
205 verbose request no auth needed
206 info attempt registry request try #1 at 8:35:58 PM
207 verbose etag W/"58abbeab-61c3"
208 verbose lastModified Tue, 21 Feb 2017 04:14:35 GMT
209 http request GET https://registry.npmjs.org/mkdirp
210 silly resolveWithNewModule escape-string-regexp@1.0.5 checking installable status
211 silly cache add args [ 'escape-string-regexp@~1.0.5', null ]
212 verbose cache add spec escape-string-regexp@~1.0.5
213 silly cache add parsed spec Result {
213 silly cache add raw: 'escape-string-regexp@~1.0.5',
213 silly cache add scope: null,
213 silly cache add name: 'escape-string-regexp',
213 silly cache add rawSpec: '~1.0.5',
213 silly cache add spec: '>=1.0.5 <1.1.0',
213 silly cache add type: 'range' }
214 silly addNamed escape-string-regexp@>=1.0.5 <1.1.0
215 verbose addNamed ">=1.0.5 <1.1.0" is a valid semver range for escape-string-regexp
216 silly addNameRange { name: 'escape-string-regexp',
216 silly addNameRange range: '>=1.0.5 <1.1.0',
216 silly addNameRange hasData: false }
217 silly mapToRegistry name escape-string-regexp
218 silly mapToRegistry using default registry
219 silly mapToRegistry registry https://registry.npmjs.org/
220 silly mapToRegistry data Result {
220 silly mapToRegistry raw: 'escape-string-regexp',
220 silly mapToRegistry scope: null,
220 silly mapToRegistry name: 'escape-string-regexp',
220 silly mapToRegistry rawSpec: '',
220 silly mapToRegistry spec: 'latest',
220 silly mapToRegistry type: 'tag' }
221 silly mapToRegistry uri https://registry.npmjs.org/escape-string-regexp
222 verbose addNameRange registry:https://registry.npmjs.org/escape-string-regexp not in flight; fetching
223 verbose get https://registry.npmjs.org/escape-string-regexp not expired, no request
224 silly addNameRange number 2 { name: 'escape-string-regexp',
224 silly addNameRange range: '>=1.0.5 <1.1.0',
224 silly addNameRange hasData: true }
225 silly addNameRange versions [ 'escape-string-regexp',
225 silly addNameRange [ '1.0.0', '1.0.1', '1.0.2', '1.0.3', '1.0.4', '1.0.5' ] ]
226 silly addNamed escape-string-regexp@1.0.5
227 verbose addNamed "1.0.5" is a plain semver version for escape-string-regexp
228 silly cache afterAdd escape-string-regexp@1.0.5
229 verbose afterAdd /Users/Umar/.npm/escape-string-regexp/1.0.5/package/package.json not in flight; writing
230 verbose correctMkdir /Users/Umar/.npm correctMkdir not in flight; initializing
231 http 304 https://registry.npmjs.org/underscore
232 verbose headers { date: 'Wed, 22 Mar 2017 20:35:55 GMT',
232 verbose headers via: '1.1 varnish',
232 verbose headers 'cache-control': 'max-age=300',
232 verbose headers etag: 'W/"58d02a50-aca1"',
232 verbose headers age: '208',
232 verbose headers connection: 'keep-alive',
232 verbose headers 'x-served-by': 'cache-lcy1133-LCY',
232 verbose headers 'x-cache': 'HIT',
232 verbose headers 'x-cache-hits': '4',
232 verbose headers 'x-timer': 'S1490214955.297814,VS0,VE0',
232 verbose headers vary: 'Accept-Encoding' }
233 silly get cb [ 304,
233 silly get { date: 'Wed, 22 Mar 2017 20:35:55 GMT',
233 silly get via: '1.1 varnish',
233 silly get 'cache-control': 'max-age=300',
233 silly get etag: 'W/"58d02a50-aca1"',
233 silly get age: '208',
233 silly get connection: 'keep-alive',
233 silly get 'x-served-by': 'cache-lcy1133-LCY',
233 silly get 'x-cache': 'HIT',
233 silly get 'x-cache-hits': '4',
233 silly get 'x-timer': 'S1490214955.297814,VS0,VE0',
233 silly get vary: 'Accept-Encoding' } ]
234 verbose etag https://registry.npmjs.org/underscore from cache
235 verbose get saving underscore to /Users/Umar/.npm/registry.npmjs.org/underscore/.cache.json
236 verbose correctMkdir /Users/Umar/.npm correctMkdir not in flight; initializing
237 verbose afterAdd /Users/Umar/.npm/escape-string-regexp/1.0.5/package/package.json written
238 silly resolveWithNewModule underscore@1.8.3 checking installable status
239 silly cache add args [ 'underscore@~1.8.3', null ]
240 verbose cache add spec underscore@~1.8.3
241 silly cache add parsed spec Result {
241 silly cache add raw: 'underscore@~1.8.3',
241 silly cache add scope: null,
241 silly cache add name: 'underscore',
241 silly cache add rawSpec: '~1.8.3',
241 silly cache add spec: '>=1.8.3 <1.9.0',
241 silly cache add type: 'range' }
242 silly addNamed underscore@>=1.8.3 <1.9.0
243 verbose addNamed ">=1.8.3 <1.9.0" is a valid semver range for underscore
244 silly addNameRange { name: 'underscore', range: '>=1.8.3 <1.9.0', hasData: false }
245 silly mapToRegistry name underscore
246 silly mapToRegistry using default registry
247 silly mapToRegistry registry https://registry.npmjs.org/
248 silly mapToRegistry data Result {
248 silly mapToRegistry raw: 'underscore',
248 silly mapToRegistry scope: null,
248 silly mapToRegistry name: 'underscore',
248 silly mapToRegistry rawSpec: '',
248 silly mapToRegistry spec: 'latest',
248 silly mapToRegistry type: 'tag' }
249 silly mapToRegistry uri https://registry.npmjs.org/underscore
250 verbose addNameRange registry:https://registry.npmjs.org/underscore not in flight; fetching
251 verbose get https://registry.npmjs.org/underscore not expired, no request
252 silly addNameRange number 2 { name: 'underscore', range: '>=1.8.3 <1.9.0', hasData: true }
253 silly addNameRange versions [ 'underscore',
253 silly addNameRange [ '1.0.3',
253 silly addNameRange '1.0.4',
253 silly addNameRange '1.1.0',
253 silly addNameRange '1.1.1',
253 silly addNameRange '1.1.2',
253 silly addNameRange '1.1.3',
253 silly addNameRange '1.1.4',
253 silly addNameRange '1.1.5',
253 silly addNameRange '1.1.6',
253 silly addNameRange '1.1.7',
253 silly addNameRange '1.2.0',
253 silly addNameRange '1.2.1',
253 silly addNameRange '1.2.2',
253 silly addNameRange '1.2.3',
253 silly addNameRange '1.2.4',
253 silly addNameRange '1.3.0',
253 silly addNameRange '1.3.1',
253 silly addNameRange '1.3.2',
253 silly addNameRange '1.3.3',
253 silly addNameRange '1.4.0',
253 silly addNameRange '1.4.1',
253 silly addNameRange '1.4.2',
253 silly addNameRange '1.4.3',
253 silly addNameRange '1.4.4',
253 silly addNameRange '1.5.0',
253 silly addNameRange '1.5.1',
253 silly addNameRange '1.5.2',
253 silly addNameRange '1.6.0',
253 silly addNameRange '1.7.0',
253 silly addNameRange '1.8.0',
253 silly addNameRange '1.8.1',
253 silly addNameRange '1.8.2',
253 silly addNameRange '1.8.3' ] ]
254 silly addNamed underscore@1.8.3
255 verbose addNamed "1.8.3" is a plain semver version for underscore
256 silly cache afterAdd underscore@1.8.3
257 verbose afterAdd /Users/Umar/.npm/underscore/1.8.3/package/package.json not in flight; writing
258 verbose correctMkdir /Users/Umar/.npm correctMkdir not in flight; initializing
259 verbose afterAdd /Users/Umar/.npm/underscore/1.8.3/package/package.json written
260 http 304 https://registry.npmjs.org/catharsis
261 verbose headers { date: 'Wed, 22 Mar 2017 20:35:55 GMT',
261 verbose headers via: '1.1 varnish',
261 verbose headers 'cache-control': 'max-age=300',
261 verbose headers etag: 'W/"572124c6-d4f5"',
261 verbose headers age: '13',
261 verbose headers connection: 'keep-alive',
261 verbose headers 'x-served-by': 'cache-lcy1141-LCY',
261 verbose headers 'x-cache': 'HIT',
261 verbose headers 'x-cache-hits': '1',
261 verbose headers 'x-timer': 'S1490214955.340136,VS0,VE0',
261 verbose headers vary: 'Accept-Encoding' }
262 silly get cb [ 304,
262 silly get { date: 'Wed, 22 Mar 2017 20:35:55 GMT',
262 silly get via: '1.1 varnish',
262 silly get 'cache-control': 'max-age=300',
262 silly get etag: 'W/"572124c6-d4f5"',
262 silly get age: '13',
262 silly get connection: 'keep-alive',
262 silly get 'x-served-by': 'cache-lcy1141-LCY',
262 silly get 'x-cache': 'HIT',
262 silly get 'x-cache-hits': '1',
262 silly get 'x-timer': 'S1490214955.340136,VS0,VE0',
262 silly get vary: 'Accept-Encoding' } ]
263 verbose etag https://registry.npmjs.org/catharsis from cache
264 verbose get saving catharsis to /Users/Umar/.npm/registry.npmjs.org/catharsis/.cache.json
265 verbose correctMkdir /Users/Umar/.npm correctMkdir not in flight; initializing
266 http 304 https://registry.npmjs.org/js2xmlparser
267 verbose headers { date: 'Wed, 22 Mar 2017 20:35:55 GMT',
267 verbose headers via: '1.1 varnish',
267 verbose headers 'cache-control': 'max-age=300',
267 verbose headers etag: 'W/"58ad1293-5d3c"',
267 verbose headers age: '13',
267 verbose headers connection: 'keep-alive',
267 verbose headers 'x-served-by': 'cache-lcy1147-LCY',
267 verbose headers 'x-cache': 'HIT',
267 verbose headers 'x-cache-hits': '1',
267 verbose headers 'x-timer': 'S1490214955.341676,VS0,VE0',
267 verbose headers vary: 'Accept-Encoding' }
268 silly get cb [ 304,
268 silly get { date: 'Wed, 22 Mar 2017 20:35:55 GMT',
268 silly get via: '1.1 varnish',
268 silly get 'cache-control': 'max-age=300',
268 silly get etag: 'W/"58ad1293-5d3c"',
268 silly get age: '13',
268 silly get connection: 'keep-alive',
268 silly get 'x-served-by': 'cache-lcy1147-LCY',
268 silly get 'x-cache': 'HIT',
268 silly get 'x-cache-hits': '1',
268 silly get 'x-timer': 'S1490214955.341676,VS0,VE0',
268 silly get vary: 'Accept-Encoding' } ]
269 verbose etag https://registry.npmjs.org/js2xmlparser from cache
270 verbose get saving js2xmlparser to /Users/Umar/.npm/registry.npmjs.org/js2xmlparser/.cache.json
271 verbose correctMkdir /Users/Umar/.npm correctMkdir not in flight; initializing
272 http 304 https://registry.npmjs.org/bluebird
273 verbose headers { date: 'Wed, 22 Mar 2017 20:35:55 GMT',
273 verbose headers via: '1.1 varnish',
273 verbose headers 'cache-control': 'max-age=300',
273 verbose headers etag: 'W/"58d17421-60241"',
273 verbose headers age: '126',
273 verbose headers connection: 'keep-alive',
273 verbose headers 'x-served-by': 'cache-lcy1138-LCY',
273 verbose headers 'x-cache': 'HIT',
273 verbose headers 'x-cache-hits': '2',
273 verbose headers 'x-timer': 'S1490214955.345345,VS0,VE0',
273 verbose headers vary: 'Accept-Encoding' }
274 silly get cb [ 304,
274 silly get { date: 'Wed, 22 Mar 2017 20:35:55 GMT',
274 silly get via: '1.1 varnish',
274 silly get 'cache-control': 'max-age=300',
274 silly get etag: 'W/"58d17421-60241"',
274 silly get age: '126',
274 silly get connection: 'keep-alive',
274 silly get 'x-served-by': 'cache-lcy1138-LCY',
274 silly get 'x-cache': 'HIT',
274 silly get 'x-cache-hits': '2',
274 silly get 'x-timer': 'S1490214955.345345,VS0,VE0',
274 silly get vary: 'Accept-Encoding' } ]
275 verbose etag https://registry.npmjs.org/bluebird from cache
276 verbose get saving bluebird to /Users/Umar/.npm/registry.npmjs.org/bluebird/.cache.json
277 verbose correctMkdir /Users/Umar/.npm correctMkdir not in flight; initializing
278 http 200 https://registry.npmjs.org/klaw
279 verbose headers { server: 'nginx/1.10.1',
279 verbose headers 'content-type': 'application/json',
279 verbose headers 'last-modified': 'Wed, 22 Mar 2017 15:39:01 GMT',
279 verbose headers etag: 'W/"58d29a95-4af3"',
279 verbose headers 'content-encoding': 'gzip',
279 verbose headers 'cache-control': 'max-age=300',
279 verbose headers 'content-length': '4280',
279 verbose headers 'accept-ranges': 'bytes',
279 verbose headers date: 'Wed, 22 Mar 2017 20:35:55 GMT',
279 verbose headers via: '1.1 varnish',
279 verbose headers age: '56',
279 verbose headers connection: 'keep-alive',
279 verbose headers 'x-served-by': 'cache-lcy1120-LCY',
279 verbose headers 'x-cache': 'HIT',
279 verbose headers 'x-cache-hits': '1',
279 verbose headers 'x-timer': 'S1490214955.340362,VS0,VE0',
279 verbose headers vary: 'Accept-Encoding' }
280 silly get cb [ 200,
280 silly get { server: 'nginx/1.10.1',
280 silly get 'content-type': 'application/json',
280 silly get 'last-modified': 'Wed, 22 Mar 2017 15:39:01 GMT',
280 silly get etag: 'W/"58d29a95-4af3"',
280 silly get 'content-encoding': 'gzip',
280 silly get 'cache-control': 'max-age=300',
280 silly get 'content-length': '4280',
280 silly get 'accept-ranges': 'bytes',
280 silly get date: 'Wed, 22 Mar 2017 20:35:55 GMT',
280 silly get via: '1.1 varnish',
280 silly get age: '56',
280 silly get connection: 'keep-alive',
280 silly get 'x-served-by': 'cache-lcy1120-LCY',
280 silly get 'x-cache': 'HIT',
280 silly get 'x-cache-hits': '1',
280 silly get 'x-timer': 'S1490214955.340362,VS0,VE0',
280 silly get vary: 'Accept-Encoding' } ]
281 verbose get saving klaw to /Users/Umar/.npm/registry.npmjs.org/klaw/.cache.json
282 verbose correctMkdir /Users/Umar/.npm correctMkdir not in flight; initializing
283 http 304 https://registry.npmjs.org/requizzle
284 verbose headers { date: 'Wed, 22 Mar 2017 20:35:55 GMT',
284 verbose headers via: '1.1 varnish',
284 verbose headers 'cache-control': 'max-age=300',
284 verbose headers etag: 'W/"548230fa-31ca"',
284 verbose headers age: '13',
284 verbose headers connection: 'keep-alive',
284 verbose headers 'x-served-by': 'cache-lcy1143-LCY',
284 verbose headers 'x-cache': 'HIT',
284 verbose headers 'x-cache-hits': '1',
284 verbose headers 'x-timer': 'S1490214955.346059,VS0,VE1',
284 verbose headers vary: 'Accept-Encoding' }
285 silly get cb [ 304,
285 silly get { date: 'Wed, 22 Mar 2017 20:35:55 GMT',
285 silly get via: '1.1 varnish',
285 silly get 'cache-control': 'max-age=300',
285 silly get etag: 'W/"548230fa-31ca"',
285 silly get age: '13',
285 silly get connection: 'keep-alive',
285 silly get 'x-served-by': 'cache-lcy1143-LCY',
285 silly get 'x-cache': 'HIT',
285 silly get 'x-cache-hits': '1',
285 silly get 'x-timer': 'S1490214955.346059,VS0,VE1',
285 silly get vary: 'Accept-Encoding' } ]
286 verbose etag https://registry.npmjs.org/requizzle from cache
287 verbose get saving requizzle to /Users/Umar/.npm/registry.npmjs.org/requizzle/.cache.json
288 verbose correctMkdir /Users/Umar/.npm correctMkdir not in flight; initializing
289 http 304 https://registry.npmjs.org/taffydb
290 verbose headers { date: 'Wed, 22 Mar 2017 20:35:55 GMT',
290 verbose headers via: '1.1 varnish',
290 verbose headers 'cache-control': 'max-age=300',
290 verbose headers etag: 'W/"58c2ca11-2d8c"',
290 verbose headers age: '13',
290 verbose headers connection: 'keep-alive',
290 verbose headers 'x-served-by': 'cache-lcy1126-LCY',
290 verbose headers 'x-cache': 'HIT',
290 verbose headers 'x-cache-hits': '1',
290 verbose headers 'x-timer': 'S1490214955.346813,VS0,VE0',
290 verbose headers vary: 'Accept-Encoding' }
291 silly get cb [ 304,
291 silly get { date: 'Wed, 22 Mar 2017 20:35:55 GMT',
291 silly get via: '1.1 varnish',
291 silly get 'cache-control': 'max-age=300',
291 silly get etag: 'W/"58c2ca11-2d8c"',
291 silly get age: '13',
291 silly get connection: 'keep-alive',
291 silly get 'x-served-by': 'cache-lcy1126-LCY',
291 silly get 'x-cache': 'HIT',
291 silly get 'x-cache-hits': '1',
291 silly get 'x-timer': 'S1490214955.346813,VS0,VE0',
291 silly get vary: 'Accept-Encoding' } ]
292 verbose etag https://registry.npmjs.org/taffydb from cache
293 verbose get saving taffydb to /Users/Umar/.npm/registry.npmjs.org/taffydb/.cache.json
294 verbose correctMkdir /Users/Umar/.npm correctMkdir not in flight; initializing
295 silly resolveWithNewModule catharsis@0.8.8 checking installable status
296 silly cache add args [ 'catharsis@~0.8.8', null ]
297 verbose cache add spec catharsis@~0.8.8
298 silly cache add parsed spec Result {
298 silly cache add raw: 'catharsis@~0.8.8',
298 silly cache add scope: null,
298 silly cache add name: 'catharsis',
298 silly cache add rawSpec: '~0.8.8',
298 silly cache add spec: '>=0.8.8 <0.9.0',
298 silly cache add type: 'range' }
299 silly addNamed catharsis@>=0.8.8 <0.9.0
300 verbose addNamed ">=0.8.8 <0.9.0" is a valid semver range for catharsis
301 silly addNameRange { name: 'catharsis', range: '>=0.8.8 <0.9.0', hasData: false }
302 silly mapToRegistry name catharsis
303 silly mapToRegistry using default registry
304 silly mapToRegistry registry https://registry.npmjs.org/
305 silly mapToRegistry data Result {
305 silly mapToRegistry raw: 'catharsis',
305 silly mapToRegistry scope: null,
305 silly mapToRegistry name: 'catharsis',
305 silly mapToRegistry rawSpec: '',
305 silly mapToRegistry spec: 'latest',
305 silly mapToRegistry type: 'tag' }
306 silly mapToRegistry uri https://registry.npmjs.org/catharsis
307 verbose addNameRange registry:https://registry.npmjs.org/catharsis not in flight; fetching
308 silly resolveWithNewModule js2xmlparser@1.0.0 checking installable status
309 silly cache add args [ 'js2xmlparser@~1.0.0', null ]
310 verbose cache add spec js2xmlparser@~1.0.0
311 silly cache add parsed spec Result {
311 silly cache add raw: 'js2xmlparser@~1.0.0',
311 silly cache add scope: null,
311 silly cache add name: 'js2xmlparser',
311 silly cache add rawSpec: '~1.0.0',
311 silly cache add spec: '>=1.0.0 <1.1.0',
311 silly cache add type: 'range' }
312 silly addNamed js2xmlparser@>=1.0.0 <1.1.0
313 verbose addNamed ">=1.0.0 <1.1.0" is a valid semver range for js2xmlparser
314 silly addNameRange { name: 'js2xmlparser', range: '>=1.0.0 <1.1.0', hasData: false }
315 silly mapToRegistry name js2xmlparser
316 silly mapToRegistry using default registry
317 silly mapToRegistry registry https://registry.npmjs.org/
318 silly mapToRegistry data Result {
318 silly mapToRegistry raw: 'js2xmlparser',
318 silly mapToRegistry scope: null,
318 silly mapToRegistry name: 'js2xmlparser',
318 silly mapToRegistry rawSpec: '',
318 silly mapToRegistry spec: 'latest',
318 silly mapToRegistry type: 'tag' }
319 silly mapToRegistry uri https://registry.npmjs.org/js2xmlparser
320 verbose addNameRange registry:https://registry.npmjs.org/js2xmlparser not in flight; fetching
321 http 304 https://registry.npmjs.org/strip-json-comments
322 verbose headers { date: 'Wed, 22 Mar 2017 20:35:55 GMT',
322 verbose headers via: '1.1 varnish',
322 verbose headers 'cache-control': 'max-age=300',
322 verbose headers etag: 'W/"58b927a4-44bc"',
322 verbose headers age: '208',
322 verbose headers connection: 'keep-alive',
322 verbose headers 'x-served-by': 'cache-lcy1125-LCY',
322 verbose headers 'x-cache': 'HIT',
322 verbose headers 'x-cache-hits': '5',
322 verbose headers 'x-timer': 'S1490214955.356304,VS0,VE0',
322 verbose headers vary: 'Accept-Encoding' }
323 silly get cb [ 304,
323 silly get { date: 'Wed, 22 Mar 2017 20:35:55 GMT',
323 silly get via: '1.1 varnish',
323 silly get 'cache-control': 'max-age=300',
323 silly get etag: 'W/"58b927a4-44bc"',
323 silly get age: '208',
323 silly get connection: 'keep-alive',
323 silly get 'x-served-by': 'cache-lcy1125-LCY',
323 silly get 'x-cache': 'HIT',
323 silly get 'x-cache-hits': '5',
323 silly get 'x-timer': 'S1490214955.356304,VS0,VE0',
323 silly get vary: 'Accept-Encoding' } ]
324 verbose etag https://registry.npmjs.org/strip-json-comments from cache
325 verbose get saving strip-json-comments to /Users/Umar/.npm/registry.npmjs.org/strip-json-comments/.cache.json
326 verbose correctMkdir /Users/Umar/.npm correctMkdir not in flight; initializing
327 http 304 https://registry.npmjs.org/marked
328 verbose headers { date: 'Wed, 22 Mar 2017 20:35:55 GMT',
328 verbose headers via: '1.1 varnish',
328 verbose headers 'cache-control': 'max-age=300',
328 verbose headers etag: 'W/"58c2cdef-c20c"',
328 verbose headers age: '245',
328 verbose headers connection: 'keep-alive',
328 verbose headers 'x-served-by': 'cache-lcy1122-LCY',
328 verbose headers 'x-cache': 'HIT',
328 verbose headers 'x-cache-hits': '2',
328 verbose headers 'x-timer': 'S1490214955.357539,VS0,VE0',
328 verbose headers vary: 'Accept-Encoding' }
329 silly get cb [ 304,
329 silly get { date: 'Wed, 22 Mar 2017 20:35:55 GMT',
329 silly get via: '1.1 varnish',
329 silly get 'cache-control': 'max-age=300',
329 silly get etag: 'W/"58c2cdef-c20c"',
329 silly get age: '245',
329 silly get connection: 'keep-alive',
329 silly get 'x-served-by': 'cache-lcy1122-LCY',
329 silly get 'x-cache': 'HIT',
329 silly get 'x-cache-hits': '2',
329 silly get 'x-timer': 'S1490214955.357539,VS0,VE0',
329 silly get vary: 'Accept-Encoding' } ]
330 verbose etag https://registry.npmjs.org/marked from cache
331 verbose get saving marked to /Users/Umar/.npm/registry.npmjs.org/marked/.cache.json
332 verbose correctMkdir /Users/Umar/.npm correctMkdir not in flight; initializing
333 http 304 https://registry.npmjs.org/espree
334 verbose headers { date: 'Wed, 22 Mar 2017 20:35:55 GMT',
334 verbose headers via: '1.1 varnish',
334 verbose headers 'cache-control': 'max-age=300',
334 verbose headers etag: 'W/"58b50331-1e8e4"',
334 verbose headers age: '174',
334 verbose headers connection: 'keep-alive',
334 verbose headers 'x-served-by': 'cache-lcy1139-LCY',
334 verbose headers 'x-cache': 'HIT',
334 verbose headers 'x-cache-hits': '1',
334 verbose headers 'x-timer': 'S1490214955.357920,VS0,VE0',
334 verbose headers vary: 'Accept-Encoding' }
335 silly get cb [ 304,
335 silly get { date: 'Wed, 22 Mar 2017 20:35:55 GMT',
335 silly get via: '1.1 varnish',
335 silly get 'cache-control': 'max-age=300',
335 silly get etag: 'W/"58b50331-1e8e4"',
335 silly get age: '174',
335 silly get connection: 'keep-alive',
335 silly get 'x-served-by': 'cache-lcy1139-LCY',
335 silly get 'x-cache': 'HIT',
335 silly get 'x-cache-hits': '1',
335 silly get 'x-timer': 'S1490214955.357920,VS0,VE0',
335 silly get vary: 'Accept-Encoding' } ]
336 verbose etag https://registry.npmjs.org/espree from cache
337 verbose get saving espree to /Users/Umar/.npm/registry.npmjs.org/espree/.cache.json
338 verbose correctMkdir /Users/Umar/.npm correctMkdir not in flight; initializing
339 silly resolveWithNewModule bluebird@3.4.7 checking installable status
340 silly cache add args [ 'bluebird@~3.4.6', null ]
341 verbose cache add spec bluebird@~3.4.6
342 silly cache add parsed spec Result {
342 silly cache add raw: 'bluebird@~3.4.6',
342 silly cache add scope: null,
342 silly cache add name: 'bluebird',
342 silly cache add rawSpec: '~3.4.6',
342 silly cache add spec: '>=3.4.6 <3.5.0',
342 silly cache add type: 'range' }
343 silly addNamed bluebird@>=3.4.6 <3.5.0
344 verbose addNamed ">=3.4.6 <3.5.0" is a valid semver range for bluebird
345 silly addNameRange { name: 'bluebird', range: '>=3.4.6 <3.5.0', hasData: false }
346 silly mapToRegistry name bluebird
347 silly mapToRegistry using default registry
348 silly mapToRegistry registry https://registry.npmjs.org/
349 silly mapToRegistry data Result {
349 silly mapToRegistry raw: 'bluebird',
349 silly mapToRegistry scope: null,
349 silly mapToRegistry name: 'bluebird',
349 silly mapToRegistry rawSpec: '',
349 silly mapToRegistry spec: 'latest',
349 silly mapToRegistry type: 'tag' }
350 silly mapToRegistry uri https://registry.npmjs.org/bluebird
351 verbose addNameRange registry:https://registry.npmjs.org/bluebird not in flight; fetching
352 silly resolveWithNewModule klaw@1.3.1 checking installable status
353 silly cache add args [ 'klaw@~1.3.0', null ]
354 verbose cache add spec klaw@~1.3.0
355 silly cache add parsed spec Result {
355 silly cache add raw: 'klaw@~1.3.0',
355 silly cache add scope: null,
355 silly cache add name: 'klaw',
355 silly cache add rawSpec: '~1.3.0',
355 silly cache add spec: '>=1.3.0 <1.4.0',
355 silly cache add type: 'range' }
356 silly addNamed klaw@>=1.3.0 <1.4.0
357 verbose addNamed ">=1.3.0 <1.4.0" is a valid semver range for klaw
358 silly addNameRange { name: 'klaw', range: '>=1.3.0 <1.4.0', hasData: false }
359 silly mapToRegistry name klaw
360 silly mapToRegistry using default registry
361 silly mapToRegistry registry https://registry.npmjs.org/
362 silly mapToRegistry data Result {
362 silly mapToRegistry raw: 'klaw',
362 silly mapToRegistry scope: null,
362 silly mapToRegistry name: 'klaw',
362 silly mapToRegistry rawSpec: '',
362 silly mapToRegistry spec: 'latest',
362 silly mapToRegistry type: 'tag' }
363 silly mapToRegistry uri https://registry.npmjs.org/klaw
364 verbose addNameRange registry:https://registry.npmjs.org/klaw not in flight; fetching
365 silly resolveWithNewModule taffydb@2.6.2 checking installable status
366 silly cache add args [ 'taffydb@2.6.2', null ]
367 verbose cache add spec taffydb@2.6.2
368 silly cache add parsed spec Result {
368 silly cache add raw: 'taffydb@2.6.2',
368 silly cache add scope: null,
368 silly cache add name: 'taffydb',
368 silly cache add rawSpec: '2.6.2',
368 silly cache add spec: '2.6.2',
368 silly cache add type: 'version' }
369 silly addNamed taffydb@2.6.2
370 verbose addNamed "2.6.2" is a plain semver version for taffydb
371 silly mapToRegistry name taffydb
372 silly mapToRegistry using default registry
373 silly mapToRegistry registry https://registry.npmjs.org/
374 silly mapToRegistry data Result {
374 silly mapToRegistry raw: 'taffydb',
374 silly mapToRegistry scope: null,
374 silly mapToRegistry name: 'taffydb',
374 silly mapToRegistry rawSpec: '',
374 silly mapToRegistry spec: 'latest',
374 silly mapToRegistry type: 'tag' }
375 silly mapToRegistry uri https://registry.npmjs.org/taffydb
376 verbose addNameVersion registry:https://registry.npmjs.org/taffydb not in flight; fetching
377 silly resolveWithNewModule requizzle@0.2.1 checking installable status
378 silly cache add args [ 'requizzle@~0.2.1', null ]
379 verbose cache add spec requizzle@~0.2.1
380 silly cache add parsed spec Result {
380 silly cache add raw: 'requizzle@~0.2.1',
380 silly cache add scope: null,
380 silly cache add name: 'requizzle',
380 silly cache add rawSpec: '~0.2.1',
380 silly cache add spec: '>=0.2.1 <0.3.0',
380 silly cache add type: 'range' }
381 silly addNamed requizzle@>=0.2.1 <0.3.0
382 verbose addNamed ">=0.2.1 <0.3.0" is a valid semver range for requizzle
383 silly addNameRange { name: 'requizzle', range: '>=0.2.1 <0.3.0', hasData: false }
384 silly mapToRegistry name requizzle
385 silly mapToRegistry using default registry
386 silly mapToRegistry registry https://registry.npmjs.org/
387 silly mapToRegistry data Result {
387 silly mapToRegistry raw: 'requizzle',
387 silly mapToRegistry scope: null,
387 silly mapToRegistry name: 'requizzle',
387 silly mapToRegistry rawSpec: '',
387 silly mapToRegistry spec: 'latest',
387 silly mapToRegistry type: 'tag' }
388 silly mapToRegistry uri https://registry.npmjs.org/requizzle
389 verbose addNameRange registry:https://registry.npmjs.org/requizzle not in flight; fetching
390 http 200 https://registry.npmjs.org/mkdirp
391 verbose headers { server: 'nginx/1.10.1',
391 verbose headers 'content-type': 'application/json',
391 verbose headers 'last-modified': 'Thu, 16 Mar 2017 14:34:56 GMT',
391 verbose headers etag: 'W/"58caa290-62a1"',
391 verbose headers 'content-encoding': 'gzip',
391 verbose headers 'cache-control': 'max-age=300',
391 verbose headers 'content-length': '4837',
391 verbose headers 'accept-ranges': 'bytes',
391 verbose headers date: 'Wed, 22 Mar 2017 20:35:55 GMT',
391 verbose headers via: '1.1 varnish',
391 verbose headers age: '215',
391 verbose headers connection: 'keep-alive',
391 verbose headers 'x-served-by': 'cache-lcy1138-LCY',
391 verbose headers 'x-cache': 'HIT',
391 verbose headers 'x-cache-hits': '1705',
391 verbose headers 'x-timer': 'S1490214955.356621,VS0,VE0',
391 verbose headers vary: 'Accept-Encoding' }
392 silly get cb [ 200,
392 silly get { server: 'nginx/1.10.1',
392 silly get 'content-type': 'application/json',
392 silly get 'last-modified': 'Thu, 16 Mar 2017 14:34:56 GMT',
392 silly get etag: 'W/"58caa290-62a1"',
392 silly get 'content-encoding': 'gzip',
392 silly get 'cache-control': 'max-age=300',
392 silly get 'content-length': '4837',
392 silly get 'accept-ranges': 'bytes',
392 silly get date: 'Wed, 22 Mar 2017 20:35:55 GMT',
392 silly get via: '1.1 varnish',
392 silly get age: '215',
392 silly get connection: 'keep-alive',
392 silly get 'x-served-by': 'cache-lcy1138-LCY',
392 silly get 'x-cache': 'HIT',
392 silly get 'x-cache-hits': '1705',
392 silly get 'x-timer': 'S1490214955.356621,VS0,VE0',
392 silly get vary: 'Accept-Encoding' } ]
393 verbose get saving mkdirp to /Users/Umar/.npm/registry.npmjs.org/mkdirp/.cache.json
394 verbose correctMkdir /Users/Umar/.npm correctMkdir not in flight; initializing
395 verbose get https://registry.npmjs.org/catharsis not expired, no request
396 silly addNameRange number 2 { name: 'catharsis', range: '>=0.8.8 <0.9.0', hasData: true }
397 silly addNameRange versions [ 'catharsis',
397 silly addNameRange [ '0.1.0',
397 silly addNameRange '0.1.1',
397 silly addNameRange '0.2.0',
397 silly addNameRange '0.3.0',
397 silly addNameRange '0.3.1',
397 silly addNameRange '0.4.0',
397 silly addNameRange '0.4.1',
397 silly addNameRange '0.4.2',
397 silly addNameRange '0.4.3',
397 silly addNameRange '0.5.0',
397 silly addNameRange '0.5.1',
397 silly addNameRange '0.5.2',
397 silly addNameRange '0.5.3',
397 silly addNameRange '0.5.4',
397 silly addNameRange '0.5.5',
397 silly addNameRange '0.5.6',
397 silly addNameRange '0.6.0',
397 silly addNameRange '0.7.0',
397 silly addNameRange '0.7.1',
397 silly addNameRange '0.8.0',
397 silly addNameRange '0.8.1',
397 silly addNameRange '0.8.2',
397 silly addNameRange '0.8.3',
397 silly addNameRange '0.8.4',
397 silly addNameRange '0.8.5',
397 silly addNameRange '0.8.6',
397 silly addNameRange '0.8.7',
397 silly addNameRange '0.8.8' ] ]
398 silly addNamed catharsis@0.8.8
399 verbose addNamed "0.8.8" is a plain semver version for catharsis
400 verbose get https://registry.npmjs.org/js2xmlparser not expired, no request
401 silly addNameRange number 2 { name: 'js2xmlparser', range: '>=1.0.0 <1.1.0', hasData: true }
402 silly addNameRange versions [ 'js2xmlparser',
402 silly addNameRange [ '0.1.0',
402 silly addNameRange '0.1.1',
402 silly addNameRange '0.1.2',
402 silly addNameRange '0.1.3',
402 silly addNameRange '0.1.4',
402 silly addNameRange '0.1.5',
402 silly addNameRange '0.1.6',
402 silly addNameRange '0.1.7',
402 silly addNameRange '0.1.8',
402 silly addNameRange '0.1.9',
402 silly addNameRange '1.0.0',
402 silly addNameRange '2.0.0',
402 silly addNameRange '2.0.1',
402 silly addNameRange '2.0.2',
402 silly addNameRange '3.0.0' ] ]
403 silly addNamed js2xmlparser@1.0.0
404 verbose addNamed "1.0.0" is a plain semver version for js2xmlparser
405 verbose get https://registry.npmjs.org/taffydb not expired, no request
406 silly resolveWithNewModule strip-json-comments@2.0.1 checking installable status
407 silly cache add args [ 'strip-json-comments@~2.0.1', null ]
408 verbose cache add spec strip-json-comments@~2.0.1
409 silly cache add parsed spec Result {
409 silly cache add raw: 'strip-json-comments@~2.0.1',
409 silly cache add scope: null,
409 silly cache add name: 'strip-json-comments',
409 silly cache add rawSpec: '~2.0.1',
409 silly cache add spec: '>=2.0.1 <2.1.0',
409 silly cache add type: 'range' }
410 silly addNamed strip-json-comments@>=2.0.1 <2.1.0
411 verbose addNamed ">=2.0.1 <2.1.0" is a valid semver range for strip-json-comments
412 silly addNameRange { name: 'strip-json-comments',
412 silly addNameRange range: '>=2.0.1 <2.1.0',
412 silly addNameRange hasData: false }
413 silly mapToRegistry name strip-json-comments
414 silly mapToRegistry using default registry
415 silly mapToRegistry registry https://registry.npmjs.org/
416 silly mapToRegistry data Result {
416 silly mapToRegistry raw: 'strip-json-comments',
416 silly mapToRegistry scope: null,
416 silly mapToRegistry name: 'strip-json-comments',
416 silly mapToRegistry rawSpec: '',
416 silly mapToRegistry spec: 'latest',
416 silly mapToRegistry type: 'tag' }
417 silly mapToRegistry uri https://registry.npmjs.org/strip-json-comments