-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnpm-debug.log
6672 lines (6672 loc) · 403 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 'git-stats' ]
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 git-stats
8 silly fetchNamedPackageData git-stats
9 silly mapToRegistry name git-stats
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry uri https://registry.npmjs.org/git-stats
13 verbose request uri https://registry.npmjs.org/git-stats
14 verbose request no auth needed
15 info attempt registry request try #1 at 23:13:55
16 verbose request id 0819144143872ef5
17 http request GET https://registry.npmjs.org/git-stats
18 http 200 https://registry.npmjs.org/git-stats
19 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
19 verbose headers etag: '"16O362CZJK41X66MV05M9B09W"',
19 verbose headers 'content-type': 'application/json',
19 verbose headers 'cache-control': 'max-age=300',
19 verbose headers 'content-length': '75640',
19 verbose headers 'accept-ranges': 'bytes',
19 verbose headers date: 'Thu, 21 Jan 2016 04:13:55 GMT',
19 verbose headers via: '1.1 varnish',
19 verbose headers age: '0',
19 verbose headers connection: 'keep-alive',
19 verbose headers 'x-served-by': 'cache-jfk1021-JFK',
19 verbose headers 'x-cache': 'MISS',
19 verbose headers 'x-cache-hits': '0',
19 verbose headers 'x-timer': 'S1453349635.192718,VS0,VE111',
19 verbose headers vary: 'Accept' }
20 silly get cb [ 200,
20 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
20 silly get etag: '"16O362CZJK41X66MV05M9B09W"',
20 silly get 'content-type': 'application/json',
20 silly get 'cache-control': 'max-age=300',
20 silly get 'content-length': '75640',
20 silly get 'accept-ranges': 'bytes',
20 silly get date: 'Thu, 21 Jan 2016 04:13:55 GMT',
20 silly get via: '1.1 varnish',
20 silly get age: '0',
20 silly get connection: 'keep-alive',
20 silly get 'x-served-by': 'cache-jfk1021-JFK',
20 silly get 'x-cache': 'MISS',
20 silly get 'x-cache-hits': '0',
20 silly get 'x-timer': 'S1453349635.192718,VS0,VE111',
20 silly get vary: 'Accept' } ]
21 verbose get saving git-stats to /root/.npm/registry.npmjs.org/git-stats/.cache.json
22 silly install normalizeTree
23 silly loadCurrentTree Finishing
24 silly loadIdealTree Starting
25 silly install loadIdealTree
26 silly cloneCurrentTree Starting
27 silly install cloneCurrentTreeToIdealTree
28 silly cloneCurrentTree Finishing
29 silly loadShrinkwrap Starting
30 silly install loadShrinkwrap
31 silly loadShrinkwrap Finishing
32 silly loadAllDepsIntoIdealTree Starting
33 silly install loadAllDepsIntoIdealTree
34 silly resolveWithNewModule [email protected] checking installable status
35 silly cache add args [ 'git-stats', null ]
36 verbose cache add spec git-stats
37 silly cache add parsed spec Result {
37 silly cache add raw: 'git-stats',
37 silly cache add scope: null,
37 silly cache add name: 'git-stats',
37 silly cache add rawSpec: '',
37 silly cache add spec: '*',
37 silly cache add type: 'range' }
38 silly addNamed git-stats@*
39 verbose addNamed "*" is a valid semver range for git-stats
40 silly addNameRange { name: 'git-stats', range: '*', hasData: false }
41 silly mapToRegistry name git-stats
42 silly mapToRegistry using default registry
43 silly mapToRegistry registry https://registry.npmjs.org/
44 silly mapToRegistry uri https://registry.npmjs.org/git-stats
45 verbose addNameRange registry:https://registry.npmjs.org/git-stats not in flight; fetching
46 verbose get https://registry.npmjs.org/git-stats not expired, no request
47 silly addNameRange number 2 { name: 'git-stats', range: '*', hasData: true }
48 silly addNameRange versions [ 'git-stats',
48 silly addNameRange [ '1.0.0-alpha',
48 silly addNameRange '1.0.0',
48 silly addNameRange '1.0.1',
48 silly addNameRange '1.1.0-beta',
48 silly addNameRange '1.1.0',
48 silly addNameRange '1.2.0',
48 silly addNameRange '1.3.0',
48 silly addNameRange '1.4.0',
48 silly addNameRange '1.5.0',
48 silly addNameRange '1.6.0',
48 silly addNameRange '2.0.0',
48 silly addNameRange '2.0.1',
48 silly addNameRange '2.0.2-alpha',
48 silly addNameRange '2.1.0',
48 silly addNameRange '2.2.0',
48 silly addNameRange '2.3.0',
48 silly addNameRange '2.4.0',
48 silly addNameRange '2.6.0',
48 silly addNameRange '2.7.0',
48 silly addNameRange '2.8.0',
48 silly addNameRange '2.9.0',
48 silly addNameRange '2.9.1',
48 silly addNameRange '2.9.2' ] ]
49 silly addNamed [email protected]
50 verbose addNamed "2.9.2" is a plain semver version for git-stats
51 silly mapToRegistry name git-stats
52 silly mapToRegistry using default registry
53 silly mapToRegistry registry https://registry.npmjs.org/
54 silly mapToRegistry uri https://registry.npmjs.org/git-stats
55 verbose addRemoteTarball https://registry.npmjs.org/git-stats/-/git-stats-2.9.2.tgz not in flight; adding
56 verbose addRemoteTarball [ 'https://registry.npmjs.org/git-stats/-/git-stats-2.9.2.tgz',
56 verbose addRemoteTarball 'ce7e7ebcc5e09dcc8657774f5195bc7caede5340' ]
57 info retry fetch attempt 1 at 23:13:55
58 info attempt registry request try #1 at 23:13:55
59 http fetch GET https://registry.npmjs.org/git-stats/-/git-stats-2.9.2.tgz
60 http fetch 200 https://registry.npmjs.org/git-stats/-/git-stats-2.9.2.tgz
61 silly fetchAndShaCheck shasum ce7e7ebcc5e09dcc8657774f5195bc7caede5340
62 verbose addTmpTarball /tmp/npm-8335-8585901d/registry.npmjs.org/git-stats/-/git-stats-2.9.2.tgz not in flight; adding
63 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
64 silly cache afterAdd [email protected]
65 verbose afterAdd /root/.npm/git-stats/2.9.2/package/package.json not in flight; writing
66 verbose afterAdd /root/.npm/git-stats/2.9.2/package/package.json written
67 silly fetchNamedPackageData abs
68 silly mapToRegistry name abs
69 silly mapToRegistry using default registry
70 silly mapToRegistry registry https://registry.npmjs.org/
71 silly mapToRegistry uri https://registry.npmjs.org/abs
72 silly fetchNamedPackageData bug-killer
73 silly mapToRegistry name bug-killer
74 silly mapToRegistry using default registry
75 silly mapToRegistry registry https://registry.npmjs.org/
76 silly mapToRegistry uri https://registry.npmjs.org/bug-killer
77 silly fetchNamedPackageData cli-gh-cal
78 silly mapToRegistry name cli-gh-cal
79 silly mapToRegistry using default registry
80 silly mapToRegistry registry https://registry.npmjs.org/
81 silly mapToRegistry uri https://registry.npmjs.org/cli-gh-cal
82 silly fetchNamedPackageData cli-pie
83 silly mapToRegistry name cli-pie
84 silly mapToRegistry using default registry
85 silly mapToRegistry registry https://registry.npmjs.org/
86 silly mapToRegistry uri https://registry.npmjs.org/cli-pie
87 silly fetchNamedPackageData clp
88 silly mapToRegistry name clp
89 silly mapToRegistry using default registry
90 silly mapToRegistry registry https://registry.npmjs.org/
91 silly mapToRegistry uri https://registry.npmjs.org/clp
92 silly fetchNamedPackageData deffy
93 silly mapToRegistry name deffy
94 silly mapToRegistry using default registry
95 silly mapToRegistry registry https://registry.npmjs.org/
96 silly mapToRegistry uri https://registry.npmjs.org/deffy
97 silly fetchNamedPackageData gitlog-parser
98 silly mapToRegistry name gitlog-parser
99 silly mapToRegistry using default registry
100 silly mapToRegistry registry https://registry.npmjs.org/
101 silly mapToRegistry uri https://registry.npmjs.org/gitlog-parser
102 silly fetchNamedPackageData gry
103 silly mapToRegistry name gry
104 silly mapToRegistry using default registry
105 silly mapToRegistry registry https://registry.npmjs.org/
106 silly mapToRegistry uri https://registry.npmjs.org/gry
107 silly fetchNamedPackageData is-there
108 silly mapToRegistry name is-there
109 silly mapToRegistry using default registry
110 silly mapToRegistry registry https://registry.npmjs.org/
111 silly mapToRegistry uri https://registry.npmjs.org/is-there
112 silly fetchNamedPackageData moment
113 silly mapToRegistry name moment
114 silly mapToRegistry using default registry
115 silly mapToRegistry registry https://registry.npmjs.org/
116 silly mapToRegistry uri https://registry.npmjs.org/moment
117 silly fetchNamedPackageData r-json
118 silly mapToRegistry name r-json
119 silly mapToRegistry using default registry
120 silly mapToRegistry registry https://registry.npmjs.org/
121 silly mapToRegistry uri https://registry.npmjs.org/r-json
122 silly fetchNamedPackageData typpy
123 silly mapToRegistry name typpy
124 silly mapToRegistry using default registry
125 silly mapToRegistry registry https://registry.npmjs.org/
126 silly mapToRegistry uri https://registry.npmjs.org/typpy
127 silly fetchNamedPackageData ul
128 silly mapToRegistry name ul
129 silly mapToRegistry using default registry
130 silly mapToRegistry registry https://registry.npmjs.org/
131 silly mapToRegistry uri https://registry.npmjs.org/ul
132 silly fetchNamedPackageData w-json
133 silly mapToRegistry name w-json
134 silly mapToRegistry using default registry
135 silly mapToRegistry registry https://registry.npmjs.org/
136 silly mapToRegistry uri https://registry.npmjs.org/w-json
137 silly fetchNamedPackageData iterate-object
138 silly mapToRegistry name iterate-object
139 silly mapToRegistry using default registry
140 silly mapToRegistry registry https://registry.npmjs.org/
141 silly mapToRegistry uri https://registry.npmjs.org/iterate-object
142 verbose request uri https://registry.npmjs.org/abs
143 verbose request no auth needed
144 info attempt registry request try #1 at 23:13:55
145 http request GET https://registry.npmjs.org/abs
146 verbose request uri https://registry.npmjs.org/bug-killer
147 verbose request no auth needed
148 info attempt registry request try #1 at 23:13:55
149 http request GET https://registry.npmjs.org/bug-killer
150 verbose request uri https://registry.npmjs.org/cli-gh-cal
151 verbose request no auth needed
152 info attempt registry request try #1 at 23:13:55
153 http request GET https://registry.npmjs.org/cli-gh-cal
154 verbose request uri https://registry.npmjs.org/cli-pie
155 verbose request no auth needed
156 info attempt registry request try #1 at 23:13:55
157 http request GET https://registry.npmjs.org/cli-pie
158 verbose request uri https://registry.npmjs.org/clp
159 verbose request no auth needed
160 info attempt registry request try #1 at 23:13:55
161 http request GET https://registry.npmjs.org/clp
162 verbose request uri https://registry.npmjs.org/deffy
163 verbose request no auth needed
164 info attempt registry request try #1 at 23:13:55
165 http request GET https://registry.npmjs.org/deffy
166 verbose request uri https://registry.npmjs.org/gitlog-parser
167 verbose request no auth needed
168 info attempt registry request try #1 at 23:13:55
169 http request GET https://registry.npmjs.org/gitlog-parser
170 verbose request uri https://registry.npmjs.org/gry
171 verbose request no auth needed
172 info attempt registry request try #1 at 23:13:55
173 http request GET https://registry.npmjs.org/gry
174 verbose request uri https://registry.npmjs.org/is-there
175 verbose request no auth needed
176 info attempt registry request try #1 at 23:13:55
177 http request GET https://registry.npmjs.org/is-there
178 verbose request uri https://registry.npmjs.org/moment
179 verbose request no auth needed
180 info attempt registry request try #1 at 23:13:55
181 http request GET https://registry.npmjs.org/moment
182 verbose request uri https://registry.npmjs.org/r-json
183 verbose request no auth needed
184 info attempt registry request try #1 at 23:13:55
185 http request GET https://registry.npmjs.org/r-json
186 verbose request uri https://registry.npmjs.org/typpy
187 verbose request no auth needed
188 info attempt registry request try #1 at 23:13:55
189 http request GET https://registry.npmjs.org/typpy
190 verbose request uri https://registry.npmjs.org/ul
191 verbose request no auth needed
192 info attempt registry request try #1 at 23:13:55
193 http request GET https://registry.npmjs.org/ul
194 verbose request uri https://registry.npmjs.org/w-json
195 verbose request no auth needed
196 info attempt registry request try #1 at 23:13:55
197 http request GET https://registry.npmjs.org/w-json
198 verbose request uri https://registry.npmjs.org/iterate-object
199 verbose request no auth needed
200 info attempt registry request try #1 at 23:13:55
201 http request GET https://registry.npmjs.org/iterate-object
202 http 200 https://registry.npmjs.org/moment
203 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
203 verbose headers etag: '"AGDADP59U3DL0S6P1H4FYQF8L"',
203 verbose headers 'content-type': 'application/json',
203 verbose headers 'cache-control': 'max-age=300',
203 verbose headers 'content-length': '72072',
203 verbose headers 'accept-ranges': 'bytes',
203 verbose headers date: 'Thu, 21 Jan 2016 04:13:55 GMT',
203 verbose headers via: '1.1 varnish',
203 verbose headers age: '179',
203 verbose headers connection: 'keep-alive',
203 verbose headers 'x-served-by': 'cache-jfk1039-JFK',
203 verbose headers 'x-cache': 'HIT',
203 verbose headers 'x-cache-hits': '4',
203 verbose headers 'x-timer': 'S1453349635.894228,VS0,VE0',
203 verbose headers vary: 'Accept' }
204 silly get cb [ 200,
204 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
204 silly get etag: '"AGDADP59U3DL0S6P1H4FYQF8L"',
204 silly get 'content-type': 'application/json',
204 silly get 'cache-control': 'max-age=300',
204 silly get 'content-length': '72072',
204 silly get 'accept-ranges': 'bytes',
204 silly get date: 'Thu, 21 Jan 2016 04:13:55 GMT',
204 silly get via: '1.1 varnish',
204 silly get age: '179',
204 silly get connection: 'keep-alive',
204 silly get 'x-served-by': 'cache-jfk1039-JFK',
204 silly get 'x-cache': 'HIT',
204 silly get 'x-cache-hits': '4',
204 silly get 'x-timer': 'S1453349635.894228,VS0,VE0',
204 silly get vary: 'Accept' } ]
205 verbose get saving moment to /root/.npm/registry.npmjs.org/moment/.cache.json
206 http 200 https://registry.npmjs.org/iterate-object
207 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
207 verbose headers etag: '"EYL9CY2F2WO8ASU6XCC2TBHIH"',
207 verbose headers 'content-type': 'application/json',
207 verbose headers 'cache-control': 'max-age=300',
207 verbose headers 'content-length': '9908',
207 verbose headers 'accept-ranges': 'bytes',
207 verbose headers date: 'Thu, 21 Jan 2016 04:13:55 GMT',
207 verbose headers via: '1.1 varnish',
207 verbose headers age: '0',
207 verbose headers connection: 'keep-alive',
207 verbose headers 'x-served-by': 'cache-jfk1026-JFK',
207 verbose headers 'x-cache': 'MISS',
207 verbose headers 'x-cache-hits': '0',
207 verbose headers 'x-timer': 'S1453349635.896514,VS0,VE23',
207 verbose headers vary: 'Accept' }
208 silly get cb [ 200,
208 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
208 silly get etag: '"EYL9CY2F2WO8ASU6XCC2TBHIH"',
208 silly get 'content-type': 'application/json',
208 silly get 'cache-control': 'max-age=300',
208 silly get 'content-length': '9908',
208 silly get 'accept-ranges': 'bytes',
208 silly get date: 'Thu, 21 Jan 2016 04:13:55 GMT',
208 silly get via: '1.1 varnish',
208 silly get age: '0',
208 silly get connection: 'keep-alive',
208 silly get 'x-served-by': 'cache-jfk1026-JFK',
208 silly get 'x-cache': 'MISS',
208 silly get 'x-cache-hits': '0',
208 silly get 'x-timer': 'S1453349635.896514,VS0,VE23',
208 silly get vary: 'Accept' } ]
209 verbose get saving iterate-object to /root/.npm/registry.npmjs.org/iterate-object/.cache.json
210 silly resolveWithNewModule [email protected] checking installable status
211 silly cache add args [ 'moment@^2.9.0', null ]
212 verbose cache add spec moment@^2.9.0
213 silly cache add parsed spec Result {
213 silly cache add raw: 'moment@^2.9.0',
213 silly cache add scope: null,
213 silly cache add name: 'moment',
213 silly cache add rawSpec: '^2.9.0',
213 silly cache add spec: '>=2.9.0 <3.0.0',
213 silly cache add type: 'range' }
214 silly addNamed moment@>=2.9.0 <3.0.0
215 verbose addNamed ">=2.9.0 <3.0.0" is a valid semver range for moment
216 silly addNameRange { name: 'moment', range: '>=2.9.0 <3.0.0', hasData: false }
217 silly mapToRegistry name moment
218 silly mapToRegistry using default registry
219 silly mapToRegistry registry https://registry.npmjs.org/
220 silly mapToRegistry uri https://registry.npmjs.org/moment
221 verbose addNameRange registry:https://registry.npmjs.org/moment not in flight; fetching
222 http 200 https://registry.npmjs.org/bug-killer
223 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
223 verbose headers etag: '"49F1DOT8FQVJCMDQ8WRE9RERY"',
223 verbose headers 'content-type': 'application/json',
223 verbose headers 'cache-control': 'max-age=300',
223 verbose headers 'content-length': '16582',
223 verbose headers 'accept-ranges': 'bytes',
223 verbose headers date: 'Thu, 21 Jan 2016 04:13:55 GMT',
223 verbose headers via: '1.1 varnish',
223 verbose headers age: '0',
223 verbose headers connection: 'keep-alive',
223 verbose headers 'x-served-by': 'cache-jfk1031-JFK',
223 verbose headers 'x-cache': 'MISS',
223 verbose headers 'x-cache-hits': '0',
223 verbose headers 'x-timer': 'S1453349635.896929,VS0,VE31',
223 verbose headers vary: 'Accept' }
224 silly get cb [ 200,
224 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
224 silly get etag: '"49F1DOT8FQVJCMDQ8WRE9RERY"',
224 silly get 'content-type': 'application/json',
224 silly get 'cache-control': 'max-age=300',
224 silly get 'content-length': '16582',
224 silly get 'accept-ranges': 'bytes',
224 silly get date: 'Thu, 21 Jan 2016 04:13:55 GMT',
224 silly get via: '1.1 varnish',
224 silly get age: '0',
224 silly get connection: 'keep-alive',
224 silly get 'x-served-by': 'cache-jfk1031-JFK',
224 silly get 'x-cache': 'MISS',
224 silly get 'x-cache-hits': '0',
224 silly get 'x-timer': 'S1453349635.896929,VS0,VE31',
224 silly get vary: 'Accept' } ]
225 verbose get saving bug-killer to /root/.npm/registry.npmjs.org/bug-killer/.cache.json
226 http 200 https://registry.npmjs.org/is-there
227 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
227 verbose headers etag: '"2AV5J85TGTSVU2HOYYTB1NTWC"',
227 verbose headers 'content-type': 'application/json',
227 verbose headers 'cache-control': 'max-age=300',
227 verbose headers 'content-length': '21250',
227 verbose headers 'accept-ranges': 'bytes',
227 verbose headers date: 'Thu, 21 Jan 2016 04:13:55 GMT',
227 verbose headers via: '1.1 varnish',
227 verbose headers age: '178',
227 verbose headers connection: 'keep-alive',
227 verbose headers 'x-served-by': 'cache-iad2145-IAD',
227 verbose headers 'x-cache': 'HIT',
227 verbose headers 'x-cache-hits': '1',
227 verbose headers 'x-timer': 'S1453349635.920063,VS0,VE0',
227 verbose headers vary: 'Accept' }
228 silly get cb [ 200,
228 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
228 silly get etag: '"2AV5J85TGTSVU2HOYYTB1NTWC"',
228 silly get 'content-type': 'application/json',
228 silly get 'cache-control': 'max-age=300',
228 silly get 'content-length': '21250',
228 silly get 'accept-ranges': 'bytes',
228 silly get date: 'Thu, 21 Jan 2016 04:13:55 GMT',
228 silly get via: '1.1 varnish',
228 silly get age: '178',
228 silly get connection: 'keep-alive',
228 silly get 'x-served-by': 'cache-iad2145-IAD',
228 silly get 'x-cache': 'HIT',
228 silly get 'x-cache-hits': '1',
228 silly get 'x-timer': 'S1453349635.920063,VS0,VE0',
228 silly get vary: 'Accept' } ]
229 verbose get saving is-there to /root/.npm/registry.npmjs.org/is-there/.cache.json
230 http 200 https://registry.npmjs.org/abs
231 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
231 verbose headers etag: '"9P0K2GIKCFJ5UIW4YJB7XNSTU"',
231 verbose headers 'content-type': 'application/json',
231 verbose headers 'cache-control': 'max-age=300',
231 verbose headers 'content-length': '8144',
231 verbose headers 'accept-ranges': 'bytes',
231 verbose headers date: 'Thu, 21 Jan 2016 04:13:55 GMT',
231 verbose headers via: '1.1 varnish',
231 verbose headers age: '0',
231 verbose headers connection: 'keep-alive',
231 verbose headers 'x-served-by': 'cache-iad2127-IAD',
231 verbose headers 'x-cache': 'MISS',
231 verbose headers 'x-cache-hits': '0',
231 verbose headers 'x-timer': 'S1453349635.916971,VS0,VE13',
231 verbose headers vary: 'Accept' }
232 silly get cb [ 200,
232 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
232 silly get etag: '"9P0K2GIKCFJ5UIW4YJB7XNSTU"',
232 silly get 'content-type': 'application/json',
232 silly get 'cache-control': 'max-age=300',
232 silly get 'content-length': '8144',
232 silly get 'accept-ranges': 'bytes',
232 silly get date: 'Thu, 21 Jan 2016 04:13:55 GMT',
232 silly get via: '1.1 varnish',
232 silly get age: '0',
232 silly get connection: 'keep-alive',
232 silly get 'x-served-by': 'cache-iad2127-IAD',
232 silly get 'x-cache': 'MISS',
232 silly get 'x-cache-hits': '0',
232 silly get 'x-timer': 'S1453349635.916971,VS0,VE13',
232 silly get vary: 'Accept' } ]
233 verbose get saving abs to /root/.npm/registry.npmjs.org/abs/.cache.json
234 http 200 https://registry.npmjs.org/cli-gh-cal
235 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
235 verbose headers etag: '"74YS4WMFP8ZF8JGWLB4UTK5P3"',
235 verbose headers 'content-type': 'application/json',
235 verbose headers 'cache-control': 'max-age=300',
235 verbose headers 'content-length': '11462',
235 verbose headers 'accept-ranges': 'bytes',
235 verbose headers date: 'Thu, 21 Jan 2016 04:13:55 GMT',
235 verbose headers via: '1.1 varnish',
235 verbose headers age: '0',
235 verbose headers connection: 'keep-alive',
235 verbose headers 'x-served-by': 'cache-iad2120-IAD',
235 verbose headers 'x-cache': 'MISS',
235 verbose headers 'x-cache-hits': '0',
235 verbose headers 'x-timer': 'S1453349635.916834,VS0,VE16',
235 verbose headers vary: 'Accept' }
236 silly get cb [ 200,
236 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
236 silly get etag: '"74YS4WMFP8ZF8JGWLB4UTK5P3"',
236 silly get 'content-type': 'application/json',
236 silly get 'cache-control': 'max-age=300',
236 silly get 'content-length': '11462',
236 silly get 'accept-ranges': 'bytes',
236 silly get date: 'Thu, 21 Jan 2016 04:13:55 GMT',
236 silly get via: '1.1 varnish',
236 silly get age: '0',
236 silly get connection: 'keep-alive',
236 silly get 'x-served-by': 'cache-iad2120-IAD',
236 silly get 'x-cache': 'MISS',
236 silly get 'x-cache-hits': '0',
236 silly get 'x-timer': 'S1453349635.916834,VS0,VE16',
236 silly get vary: 'Accept' } ]
237 verbose get saving cli-gh-cal to /root/.npm/registry.npmjs.org/cli-gh-cal/.cache.json
238 http 200 https://registry.npmjs.org/cli-pie
239 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
239 verbose headers etag: '"5Z9Q5C28ZHMLVG9PY4FB8X6NN"',
239 verbose headers 'content-type': 'application/json',
239 verbose headers 'cache-control': 'max-age=300',
239 verbose headers 'content-length': '12747',
239 verbose headers 'accept-ranges': 'bytes',
239 verbose headers date: 'Thu, 21 Jan 2016 04:13:55 GMT',
239 verbose headers via: '1.1 varnish',
239 verbose headers age: '0',
239 verbose headers connection: 'keep-alive',
239 verbose headers 'x-served-by': 'cache-iad2126-IAD',
239 verbose headers 'x-cache': 'MISS',
239 verbose headers 'x-cache-hits': '0',
239 verbose headers 'x-timer': 'S1453349635.916151,VS0,VE19',
239 verbose headers vary: 'Accept' }
240 silly get cb [ 200,
240 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
240 silly get etag: '"5Z9Q5C28ZHMLVG9PY4FB8X6NN"',
240 silly get 'content-type': 'application/json',
240 silly get 'cache-control': 'max-age=300',
240 silly get 'content-length': '12747',
240 silly get 'accept-ranges': 'bytes',
240 silly get date: 'Thu, 21 Jan 2016 04:13:55 GMT',
240 silly get via: '1.1 varnish',
240 silly get age: '0',
240 silly get connection: 'keep-alive',
240 silly get 'x-served-by': 'cache-iad2126-IAD',
240 silly get 'x-cache': 'MISS',
240 silly get 'x-cache-hits': '0',
240 silly get 'x-timer': 'S1453349635.916151,VS0,VE19',
240 silly get vary: 'Accept' } ]
241 verbose get saving cli-pie to /root/.npm/registry.npmjs.org/cli-pie/.cache.json
242 silly resolveWithNewModule [email protected] checking installable status
243 silly cache add args [ 'iterate-object@^1.1.0', null ]
244 verbose cache add spec iterate-object@^1.1.0
245 silly cache add parsed spec Result {
245 silly cache add raw: 'iterate-object@^1.1.0',
245 silly cache add scope: null,
245 silly cache add name: 'iterate-object',
245 silly cache add rawSpec: '^1.1.0',
245 silly cache add spec: '>=1.1.0 <2.0.0',
245 silly cache add type: 'range' }
246 silly addNamed iterate-object@>=1.1.0 <2.0.0
247 verbose addNamed ">=1.1.0 <2.0.0" is a valid semver range for iterate-object
248 silly addNameRange { name: 'iterate-object',
248 silly addNameRange range: '>=1.1.0 <2.0.0',
248 silly addNameRange hasData: false }
249 silly mapToRegistry name iterate-object
250 silly mapToRegistry using default registry
251 silly mapToRegistry registry https://registry.npmjs.org/
252 silly mapToRegistry uri https://registry.npmjs.org/iterate-object
253 verbose addNameRange registry:https://registry.npmjs.org/iterate-object not in flight; fetching
254 http 200 https://registry.npmjs.org/deffy
255 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
255 verbose headers etag: '"3EB828P6QXRIV6PT1N7T8WML8"',
255 verbose headers 'content-type': 'application/json',
255 verbose headers 'cache-control': 'max-age=300',
255 verbose headers 'content-length': '12043',
255 verbose headers 'accept-ranges': 'bytes',
255 verbose headers date: 'Thu, 21 Jan 2016 04:13:55 GMT',
255 verbose headers via: '1.1 varnish',
255 verbose headers age: '0',
255 verbose headers connection: 'keep-alive',
255 verbose headers 'x-served-by': 'cache-jfk1028-JFK',
255 verbose headers 'x-cache': 'MISS',
255 verbose headers 'x-cache-hits': '0',
255 verbose headers 'x-timer': 'S1453349635.895655,VS0,VE91',
255 verbose headers vary: 'Accept' }
256 silly get cb [ 200,
256 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
256 silly get etag: '"3EB828P6QXRIV6PT1N7T8WML8"',
256 silly get 'content-type': 'application/json',
256 silly get 'cache-control': 'max-age=300',
256 silly get 'content-length': '12043',
256 silly get 'accept-ranges': 'bytes',
256 silly get date: 'Thu, 21 Jan 2016 04:13:55 GMT',
256 silly get via: '1.1 varnish',
256 silly get age: '0',
256 silly get connection: 'keep-alive',
256 silly get 'x-served-by': 'cache-jfk1028-JFK',
256 silly get 'x-cache': 'MISS',
256 silly get 'x-cache-hits': '0',
256 silly get 'x-timer': 'S1453349635.895655,VS0,VE91',
256 silly get vary: 'Accept' } ]
257 verbose get saving deffy to /root/.npm/registry.npmjs.org/deffy/.cache.json
258 http 200 https://registry.npmjs.org/ul
259 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
259 verbose headers etag: '"2GP8SPO5IBAWQOG4Q3CF41Z9G"',
259 verbose headers 'content-type': 'application/json',
259 verbose headers 'cache-control': 'max-age=300',
259 verbose headers 'content-length': '17662',
259 verbose headers 'accept-ranges': 'bytes',
259 verbose headers date: 'Thu, 21 Jan 2016 04:13:55 GMT',
259 verbose headers via: '1.1 varnish',
259 verbose headers age: '0',
259 verbose headers connection: 'keep-alive',
259 verbose headers 'x-served-by': 'cache-jfk1032-JFK',
259 verbose headers 'x-cache': 'MISS',
259 verbose headers 'x-cache-hits': '0',
259 verbose headers 'x-timer': 'S1453349635.895804,VS0,VE98',
259 verbose headers vary: 'Accept' }
260 silly get cb [ 200,
260 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
260 silly get etag: '"2GP8SPO5IBAWQOG4Q3CF41Z9G"',
260 silly get 'content-type': 'application/json',
260 silly get 'cache-control': 'max-age=300',
260 silly get 'content-length': '17662',
260 silly get 'accept-ranges': 'bytes',
260 silly get date: 'Thu, 21 Jan 2016 04:13:55 GMT',
260 silly get via: '1.1 varnish',
260 silly get age: '0',
260 silly get connection: 'keep-alive',
260 silly get 'x-served-by': 'cache-jfk1032-JFK',
260 silly get 'x-cache': 'MISS',
260 silly get 'x-cache-hits': '0',
260 silly get 'x-timer': 'S1453349635.895804,VS0,VE98',
260 silly get vary: 'Accept' } ]
261 verbose get saving ul to /root/.npm/registry.npmjs.org/ul/.cache.json
262 verbose get https://registry.npmjs.org/moment not expired, no request
263 silly addNameRange number 2 { name: 'moment', range: '>=2.9.0 <3.0.0', hasData: true }
264 silly addNameRange versions [ 'moment',
264 silly addNameRange [ '1.0.0',
264 silly addNameRange '1.0.1',
264 silly addNameRange '1.1.0',
264 silly addNameRange '1.1.1',
264 silly addNameRange '1.2.0',
264 silly addNameRange '1.3.0',
264 silly addNameRange '1.4.0',
264 silly addNameRange '1.5.0',
264 silly addNameRange '1.5.1',
264 silly addNameRange '1.6.0',
264 silly addNameRange '1.6.1',
264 silly addNameRange '1.6.2',
264 silly addNameRange '1.7.0',
264 silly addNameRange '1.7.1',
264 silly addNameRange '1.7.2',
264 silly addNameRange '2.0.0',
264 silly addNameRange '2.1.0',
264 silly addNameRange '2.2.1',
264 silly addNameRange '2.3.0',
264 silly addNameRange '2.3.1',
264 silly addNameRange '2.4.0',
264 silly addNameRange '2.5.0',
264 silly addNameRange '2.5.1',
264 silly addNameRange '2.6.0',
264 silly addNameRange '2.7.0',
264 silly addNameRange '2.8.1',
264 silly addNameRange '2.8.2',
264 silly addNameRange '2.8.3',
264 silly addNameRange '2.8.4',
264 silly addNameRange '2.9.0',
264 silly addNameRange '2.10.2',
264 silly addNameRange '2.10.3',
264 silly addNameRange '2.10.5',
264 silly addNameRange '2.10.6',
264 silly addNameRange '2.11.0',
264 silly addNameRange '2.11.1' ] ]
265 silly addNamed [email protected]
266 verbose addNamed "2.11.1" is a plain semver version for moment
267 silly mapToRegistry name moment
268 silly mapToRegistry using default registry
269 silly mapToRegistry registry https://registry.npmjs.org/
270 silly mapToRegistry uri https://registry.npmjs.org/moment
271 verbose addRemoteTarball https://registry.npmjs.org/moment/-/moment-2.11.1.tgz not in flight; adding
272 verbose addRemoteTarball [ 'https://registry.npmjs.org/moment/-/moment-2.11.1.tgz',
272 verbose addRemoteTarball 'bf4026413640d1b802467cf353607f8464d6af47' ]
273 http 200 https://registry.npmjs.org/gry
274 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
274 verbose headers etag: '"3G1TEL7YFYI38MGGSV6HCZH8I"',
274 verbose headers 'content-type': 'application/json',
274 verbose headers 'cache-control': 'max-age=300',
274 verbose headers 'content-length': '17804',
274 verbose headers 'accept-ranges': 'bytes',
274 verbose headers date: 'Thu, 21 Jan 2016 04:13:56 GMT',
274 verbose headers via: '1.1 varnish',
274 verbose headers age: '0',
274 verbose headers connection: 'keep-alive',
274 verbose headers 'x-served-by': 'cache-jfk1039-JFK',
274 verbose headers 'x-cache': 'MISS',
274 verbose headers 'x-cache-hits': '0',
274 verbose headers 'x-timer': 'S1453349635.895243,VS0,VE163',
274 verbose headers vary: 'Accept' }
275 silly get cb [ 200,
275 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
275 silly get etag: '"3G1TEL7YFYI38MGGSV6HCZH8I"',
275 silly get 'content-type': 'application/json',
275 silly get 'cache-control': 'max-age=300',
275 silly get 'content-length': '17804',
275 silly get 'accept-ranges': 'bytes',
275 silly get date: 'Thu, 21 Jan 2016 04:13:56 GMT',
275 silly get via: '1.1 varnish',
275 silly get age: '0',
275 silly get connection: 'keep-alive',
275 silly get 'x-served-by': 'cache-jfk1039-JFK',
275 silly get 'x-cache': 'MISS',
275 silly get 'x-cache-hits': '0',
275 silly get 'x-timer': 'S1453349635.895243,VS0,VE163',
275 silly get vary: 'Accept' } ]
276 verbose get saving gry to /root/.npm/registry.npmjs.org/gry/.cache.json
277 verbose get https://registry.npmjs.org/iterate-object not expired, no request
278 silly addNameRange number 2 { name: 'iterate-object',
278 silly addNameRange range: '>=1.1.0 <2.0.0',
278 silly addNameRange hasData: true }
279 silly addNameRange versions [ 'iterate-object',
279 silly addNameRange [ '1.0.0', '1.1.0', '1.2.0', '1.3.0', '1.3.1' ] ]
280 silly addNamed [email protected]
281 verbose addNamed "1.3.1" is a plain semver version for iterate-object
282 silly mapToRegistry name iterate-object
283 silly mapToRegistry using default registry
284 silly mapToRegistry registry https://registry.npmjs.org/
285 silly mapToRegistry uri https://registry.npmjs.org/iterate-object
286 verbose addRemoteTarball https://registry.npmjs.org/iterate-object/-/iterate-object-1.3.1.tgz not in flight; adding
287 verbose addRemoteTarball [ 'https://registry.npmjs.org/iterate-object/-/iterate-object-1.3.1.tgz',
287 verbose addRemoteTarball 'c837ce02fbfa9d7ba46c6afaac50ce6cb387bde5' ]
288 info retry fetch attempt 1 at 23:13:56
289 info attempt registry request try #1 at 23:13:56
290 http fetch GET https://registry.npmjs.org/moment/-/moment-2.11.1.tgz
291 info retry fetch attempt 1 at 23:13:56
292 info attempt registry request try #1 at 23:13:56
293 http fetch GET https://registry.npmjs.org/iterate-object/-/iterate-object-1.3.1.tgz
294 silly resolveWithNewModule [email protected] checking installable status
295 silly cache add args [ 'bug-killer@^4.0.0', null ]
296 verbose cache add spec bug-killer@^4.0.0
297 silly cache add parsed spec Result {
297 silly cache add raw: 'bug-killer@^4.0.0',
297 silly cache add scope: null,
297 silly cache add name: 'bug-killer',
297 silly cache add rawSpec: '^4.0.0',
297 silly cache add spec: '>=4.0.0 <5.0.0',
297 silly cache add type: 'range' }
298 silly addNamed bug-killer@>=4.0.0 <5.0.0
299 verbose addNamed ">=4.0.0 <5.0.0" is a valid semver range for bug-killer
300 silly addNameRange { name: 'bug-killer', range: '>=4.0.0 <5.0.0', hasData: false }
301 silly mapToRegistry name bug-killer
302 silly mapToRegistry using default registry
303 silly mapToRegistry registry https://registry.npmjs.org/
304 silly mapToRegistry uri https://registry.npmjs.org/bug-killer
305 verbose addNameRange registry:https://registry.npmjs.org/bug-killer not in flight; fetching
306 silly resolveWithNewModule [email protected] checking installable status
307 silly cache add args [ 'is-there@^4.0.0', null ]
308 verbose cache add spec is-there@^4.0.0
309 silly cache add parsed spec Result {
309 silly cache add raw: 'is-there@^4.0.0',
309 silly cache add scope: null,
309 silly cache add name: 'is-there',
309 silly cache add rawSpec: '^4.0.0',
309 silly cache add spec: '>=4.0.0 <5.0.0',
309 silly cache add type: 'range' }
310 silly addNamed is-there@>=4.0.0 <5.0.0
311 verbose addNamed ">=4.0.0 <5.0.0" is a valid semver range for is-there
312 silly addNameRange { name: 'is-there', range: '>=4.0.0 <5.0.0', hasData: false }
313 silly mapToRegistry name is-there
314 silly mapToRegistry using default registry
315 silly mapToRegistry registry https://registry.npmjs.org/
316 silly mapToRegistry uri https://registry.npmjs.org/is-there
317 verbose addNameRange registry:https://registry.npmjs.org/is-there not in flight; fetching
318 silly resolveWithNewModule [email protected] checking installable status
319 silly cache add args [ 'abs@^1.0.0', null ]
320 verbose cache add spec abs@^1.0.0
321 silly cache add parsed spec Result {
321 silly cache add raw: 'abs@^1.0.0',
321 silly cache add scope: null,
321 silly cache add name: 'abs',
321 silly cache add rawSpec: '^1.0.0',
321 silly cache add spec: '>=1.0.0 <2.0.0',
321 silly cache add type: 'range' }
322 silly addNamed abs@>=1.0.0 <2.0.0
323 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for abs
324 silly addNameRange { name: 'abs', range: '>=1.0.0 <2.0.0', hasData: false }
325 silly mapToRegistry name abs
326 silly mapToRegistry using default registry
327 silly mapToRegistry registry https://registry.npmjs.org/
328 silly mapToRegistry uri https://registry.npmjs.org/abs
329 verbose addNameRange registry:https://registry.npmjs.org/abs not in flight; fetching
330 silly resolveWithNewModule [email protected] checking installable status
331 silly cache add args [ 'cli-gh-cal@^1.0.0', null ]
332 verbose cache add spec cli-gh-cal@^1.0.0
333 silly cache add parsed spec Result {
333 silly cache add raw: 'cli-gh-cal@^1.0.0',
333 silly cache add scope: null,
333 silly cache add name: 'cli-gh-cal',
333 silly cache add rawSpec: '^1.0.0',
333 silly cache add spec: '>=1.0.0 <2.0.0',
333 silly cache add type: 'range' }
334 silly addNamed cli-gh-cal@>=1.0.0 <2.0.0
335 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for cli-gh-cal
336 silly addNameRange { name: 'cli-gh-cal', range: '>=1.0.0 <2.0.0', hasData: false }
337 silly mapToRegistry name cli-gh-cal
338 silly mapToRegistry using default registry
339 silly mapToRegistry registry https://registry.npmjs.org/
340 silly mapToRegistry uri https://registry.npmjs.org/cli-gh-cal
341 verbose addNameRange registry:https://registry.npmjs.org/cli-gh-cal not in flight; fetching
342 silly resolveWithNewModule [email protected] checking installable status
343 silly cache add args [ 'cli-pie@^2.0.0', null ]
344 verbose cache add spec cli-pie@^2.0.0
345 silly cache add parsed spec Result {
345 silly cache add raw: 'cli-pie@^2.0.0',
345 silly cache add scope: null,
345 silly cache add name: 'cli-pie',
345 silly cache add rawSpec: '^2.0.0',
345 silly cache add spec: '>=2.0.0 <3.0.0',
345 silly cache add type: 'range' }
346 silly addNamed cli-pie@>=2.0.0 <3.0.0
347 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for cli-pie
348 silly addNameRange { name: 'cli-pie', range: '>=2.0.0 <3.0.0', hasData: false }
349 silly mapToRegistry name cli-pie
350 silly mapToRegistry using default registry
351 silly mapToRegistry registry https://registry.npmjs.org/
352 silly mapToRegistry uri https://registry.npmjs.org/cli-pie
353 verbose addNameRange registry:https://registry.npmjs.org/cli-pie not in flight; fetching
354 silly resolveWithNewModule [email protected] checking installable status
355 silly cache add args [ '[email protected]', null ]
356 verbose cache add spec [email protected]
357 silly cache add parsed spec Result {
357 silly cache add raw: '[email protected]',
357 silly cache add scope: null,
357 silly cache add name: 'deffy',
357 silly cache add rawSpec: '2.0.0',
357 silly cache add spec: '2.0.0',
357 silly cache add type: 'version' }
358 silly addNamed [email protected]
359 verbose addNamed "2.0.0" is a plain semver version for deffy
360 silly mapToRegistry name deffy
361 silly mapToRegistry using default registry
362 silly mapToRegistry registry https://registry.npmjs.org/
363 silly mapToRegistry uri https://registry.npmjs.org/deffy
364 verbose addNameVersion registry:https://registry.npmjs.org/deffy not in flight; fetching
365 silly resolveWithNewModule [email protected] checking installable status
366 silly cache add args [ 'ul@^5.0.0', null ]
367 verbose cache add spec ul@^5.0.0
368 silly cache add parsed spec Result {
368 silly cache add raw: 'ul@^5.0.0',
368 silly cache add scope: null,
368 silly cache add name: 'ul',
368 silly cache add rawSpec: '^5.0.0',
368 silly cache add spec: '>=5.0.0 <6.0.0',
368 silly cache add type: 'range' }
369 silly addNamed ul@>=5.0.0 <6.0.0
370 verbose addNamed ">=5.0.0 <6.0.0" is a valid semver range for ul
371 silly addNameRange { name: 'ul', range: '>=5.0.0 <6.0.0', hasData: false }
372 silly mapToRegistry name ul
373 silly mapToRegistry using default registry
374 silly mapToRegistry registry https://registry.npmjs.org/
375 silly mapToRegistry uri https://registry.npmjs.org/ul
376 verbose addNameRange registry:https://registry.npmjs.org/ul not in flight; fetching
377 verbose get https://registry.npmjs.org/bug-killer not expired, no request
378 silly addNameRange number 2 { name: 'bug-killer', range: '>=4.0.0 <5.0.0', hasData: true }
379 silly addNameRange versions [ 'bug-killer',
379 silly addNameRange [ '0.1.0',
379 silly addNameRange '0.1.1',
379 silly addNameRange '1.0.0',
379 silly addNameRange '2.0.0',
379 silly addNameRange '3.0.0',
379 silly addNameRange '4.0.0',
379 silly addNameRange '4.1.0',
379 silly addNameRange '4.2.0',
379 silly addNameRange '4.2.1' ] ]
380 silly addNamed [email protected]
381 verbose addNamed "4.2.1" is a plain semver version for bug-killer
382 verbose get https://registry.npmjs.org/is-there not expired, no request
383 silly addNameRange number 2 { name: 'is-there', range: '>=4.0.0 <5.0.0', hasData: true }
384 silly addNameRange versions [ 'is-there',
384 silly addNameRange [ '1.0.0',
384 silly addNameRange '1.1.0',
384 silly addNameRange '2.0.0',
384 silly addNameRange '3.0.0',
384 silly addNameRange '4.0.0',
384 silly addNameRange '4.1.0',
384 silly addNameRange '4.2.0',
384 silly addNameRange '4.3.0',
384 silly addNameRange '4.3.1' ] ]
385 silly addNamed [email protected]
386 verbose addNamed "4.3.1" is a plain semver version for is-there
387 verbose get https://registry.npmjs.org/abs not expired, no request
388 silly addNameRange number 2 { name: 'abs', range: '>=1.0.0 <2.0.0', hasData: true }
389 silly addNameRange versions [ 'abs', [ '1.0.0', '1.1.0', '1.2.0', '1.2.1' ] ]
390 silly addNamed [email protected]
391 verbose addNamed "1.2.1" is a plain semver version for abs
392 verbose get https://registry.npmjs.org/cli-gh-cal not expired, no request
393 silly addNameRange number 2 { name: 'cli-gh-cal', range: '>=1.0.0 <2.0.0', hasData: true }
394 silly addNameRange versions [ 'cli-gh-cal',
394 silly addNameRange [ '0.0.0', '1.0.0', '1.1.0', '1.2.0', '1.2.1' ] ]
395 silly addNamed [email protected]
396 verbose addNamed "1.2.1" is a plain semver version for cli-gh-cal
397 verbose get https://registry.npmjs.org/cli-pie not expired, no request
398 silly addNameRange number 2 { name: 'cli-pie', range: '>=2.0.0 <3.0.0', hasData: true }
399 silly addNameRange versions [ 'cli-pie',
399 silly addNameRange [ '1.0.0', '1.1.0', '2.0.0', '2.1.0', '2.2.0', '2.2.1' ] ]
400 silly addNamed [email protected]
401 verbose addNamed "2.2.1" is a plain semver version for cli-pie
402 silly resolveWithNewModule [email protected] checking installable status
403 silly cache add args [ 'gry@^4.0.0', null ]
404 verbose cache add spec gry@^4.0.0
405 silly cache add parsed spec Result {
405 silly cache add raw: 'gry@^4.0.0',
405 silly cache add scope: null,
405 silly cache add name: 'gry',
405 silly cache add rawSpec: '^4.0.0',
405 silly cache add spec: '>=4.0.0 <5.0.0',
405 silly cache add type: 'range' }
406 silly addNamed gry@>=4.0.0 <5.0.0
407 verbose addNamed ">=4.0.0 <5.0.0" is a valid semver range for gry
408 silly addNameRange { name: 'gry', range: '>=4.0.0 <5.0.0', hasData: false }
409 silly mapToRegistry name gry
410 silly mapToRegistry using default registry
411 silly mapToRegistry registry https://registry.npmjs.org/
412 silly mapToRegistry uri https://registry.npmjs.org/gry
413 verbose addNameRange registry:https://registry.npmjs.org/gry not in flight; fetching
414 silly mapToRegistry name bug-killer
415 silly mapToRegistry using default registry
416 silly mapToRegistry registry https://registry.npmjs.org/
417 silly mapToRegistry uri https://registry.npmjs.org/bug-killer
418 verbose addRemoteTarball https://registry.npmjs.org/bug-killer/-/bug-killer-4.2.1.tgz not in flight; adding
419 verbose addRemoteTarball [ 'https://registry.npmjs.org/bug-killer/-/bug-killer-4.2.1.tgz',
419 verbose addRemoteTarball '9675687268ddd78cde3d4c97ec8959340e8c5adc' ]
420 silly mapToRegistry name is-there
421 silly mapToRegistry using default registry
422 silly mapToRegistry registry https://registry.npmjs.org/
423 silly mapToRegistry uri https://registry.npmjs.org/is-there
424 verbose addRemoteTarball https://registry.npmjs.org/is-there/-/is-there-4.3.1.tgz not in flight; adding
425 verbose addRemoteTarball [ 'https://registry.npmjs.org/is-there/-/is-there-4.3.1.tgz',
425 verbose addRemoteTarball '6d4edb78f2133d1df29277ef19694622b331904b' ]
426 silly mapToRegistry name abs
427 silly mapToRegistry using default registry
428 silly mapToRegistry registry https://registry.npmjs.org/
429 silly mapToRegistry uri https://registry.npmjs.org/abs
430 verbose addRemoteTarball https://registry.npmjs.org/abs/-/abs-1.2.1.tgz not in flight; adding
431 verbose addRemoteTarball [ 'https://registry.npmjs.org/abs/-/abs-1.2.1.tgz',
431 verbose addRemoteTarball '627c860e1811c23b1d371a6180efa0a9729c727d' ]
432 silly mapToRegistry name cli-gh-cal
433 silly mapToRegistry using default registry
434 silly mapToRegistry registry https://registry.npmjs.org/
435 silly mapToRegistry uri https://registry.npmjs.org/cli-gh-cal
436 verbose addRemoteTarball https://registry.npmjs.org/cli-gh-cal/-/cli-gh-cal-1.2.1.tgz not in flight; adding
437 verbose addRemoteTarball [ 'https://registry.npmjs.org/cli-gh-cal/-/cli-gh-cal-1.2.1.tgz',
437 verbose addRemoteTarball '92e61416ae2740b8ccc12974f61cef54f0cc43f1' ]
438 silly mapToRegistry name cli-pie
439 silly mapToRegistry using default registry
440 silly mapToRegistry registry https://registry.npmjs.org/
441 silly mapToRegistry uri https://registry.npmjs.org/cli-pie
442 verbose addRemoteTarball https://registry.npmjs.org/cli-pie/-/cli-pie-2.2.1.tgz not in flight; adding
443 verbose addRemoteTarball [ 'https://registry.npmjs.org/cli-pie/-/cli-pie-2.2.1.tgz',
443 verbose addRemoteTarball 'c695dac07b030fd41b9dd1c4ef59a8f99ff64ab7' ]
444 verbose get https://registry.npmjs.org/deffy not expired, no request
445 verbose get https://registry.npmjs.org/ul not expired, no request
446 silly addNameRange number 2 { name: 'ul', range: '>=5.0.0 <6.0.0', hasData: true }
447 silly addNameRange versions [ 'ul',
447 silly addNameRange [ '1.0.0',
447 silly addNameRange '1.1.0',
447 silly addNameRange '2.0.0',
447 silly addNameRange '2.1.0',
447 silly addNameRange '3.0.0',
447 silly addNameRange '4.0.0',
447 silly addNameRange '5.0.0',
447 silly addNameRange '5.1.0',
447 silly addNameRange '5.2.0',
447 silly addNameRange '5.2.1' ] ]
448 silly addNamed [email protected]
449 verbose addNamed "5.2.1" is a plain semver version for ul
450 silly mapToRegistry name deffy
451 silly mapToRegistry using default registry
452 silly mapToRegistry registry https://registry.npmjs.org/
453 silly mapToRegistry uri https://registry.npmjs.org/deffy
454 verbose addRemoteTarball https://registry.npmjs.org/deffy/-/deffy-2.0.0.tgz not in flight; adding
455 verbose addRemoteTarball [ 'https://registry.npmjs.org/deffy/-/deffy-2.0.0.tgz',
455 verbose addRemoteTarball 'f82e08eea518c4a0a30b1f03ec504d248af28932' ]
456 silly mapToRegistry name ul
457 silly mapToRegistry using default registry
458 silly mapToRegistry registry https://registry.npmjs.org/
459 silly mapToRegistry uri https://registry.npmjs.org/ul
460 verbose addRemoteTarball https://registry.npmjs.org/ul/-/ul-5.2.1.tgz not in flight; adding
461 verbose addRemoteTarball [ 'https://registry.npmjs.org/ul/-/ul-5.2.1.tgz',
461 verbose addRemoteTarball 'c5e6e5972d9fd74277ec30c44f70ec6b3ca27191' ]
462 info retry fetch attempt 1 at 23:13:56
463 info attempt registry request try #1 at 23:13:56
464 http fetch GET https://registry.npmjs.org/bug-killer/-/bug-killer-4.2.1.tgz
465 info retry fetch attempt 1 at 23:13:56
466 info attempt registry request try #1 at 23:13:56
467 http fetch GET https://registry.npmjs.org/is-there/-/is-there-4.3.1.tgz
468 info retry fetch attempt 1 at 23:13:56
469 info attempt registry request try #1 at 23:13:56
470 http fetch GET https://registry.npmjs.org/abs/-/abs-1.2.1.tgz
471 info retry fetch attempt 1 at 23:13:56
472 info attempt registry request try #1 at 23:13:56
473 http fetch GET https://registry.npmjs.org/cli-gh-cal/-/cli-gh-cal-1.2.1.tgz
474 info retry fetch attempt 1 at 23:13:56
475 info attempt registry request try #1 at 23:13:56
476 http fetch GET https://registry.npmjs.org/cli-pie/-/cli-pie-2.2.1.tgz
477 info retry fetch attempt 1 at 23:13:56
478 info attempt registry request try #1 at 23:13:56
479 http fetch GET https://registry.npmjs.org/deffy/-/deffy-2.0.0.tgz
480 info retry fetch attempt 1 at 23:13:56
481 info attempt registry request try #1 at 23:13:56
482 http fetch GET https://registry.npmjs.org/ul/-/ul-5.2.1.tgz
483 verbose get https://registry.npmjs.org/gry not expired, no request
484 silly addNameRange number 2 { name: 'gry', range: '>=4.0.0 <5.0.0', hasData: true }
485 silly addNameRange versions [ 'gry',
485 silly addNameRange [ '1.0.0',
485 silly addNameRange '2.0.0',
485 silly addNameRange '2.0.1',
485 silly addNameRange '2.0.1-beta',
485 silly addNameRange '2.1.0',
485 silly addNameRange '3.0.0',
485 silly addNameRange '4.0.0',
485 silly addNameRange '4.1.0',
485 silly addNameRange '4.2.0',
485 silly addNameRange '4.3.0',
485 silly addNameRange '4.3.1' ] ]
486 silly addNamed [email protected]
487 verbose addNamed "4.3.1" is a plain semver version for gry
488 http fetch 200 https://registry.npmjs.org/moment/-/moment-2.11.1.tgz
489 silly mapToRegistry name gry
490 silly mapToRegistry using default registry
491 silly mapToRegistry registry https://registry.npmjs.org/
492 silly mapToRegistry uri https://registry.npmjs.org/gry
493 verbose addRemoteTarball https://registry.npmjs.org/gry/-/gry-4.3.1.tgz not in flight; adding
494 verbose addRemoteTarball [ 'https://registry.npmjs.org/gry/-/gry-4.3.1.tgz',
494 verbose addRemoteTarball '278f6fdf89d5e8972e4b7c78ac2d1a0ccd632941' ]