-
Notifications
You must be signed in to change notification settings - Fork 1
/
npm-debug.log
9659 lines (9659 loc) · 481 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/bin/nodejs',
1 verbose cli '/usr/bin/npm',
1 verbose cli 'install',
1 verbose cli '--global',
1 verbose cli 'javascripting' ]
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 javascripting
8 silly fetchNamedPackageData javascripting
9 silly mapToRegistry name javascripting
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry uri https://registry.npmjs.org/javascripting
13 verbose request uri https://registry.npmjs.org/javascripting
14 verbose request no auth needed
15 info attempt registry request try #1 at 19:56:31
16 verbose request id b465f5b4e4d483ab
17 verbose etag "5a0d6d3a-9f6c"
18 verbose lastModified Thu, 16 Nov 2017 10:49:30 GMT
19 http request GET https://registry.npmjs.org/javascripting
20 http 304 https://registry.npmjs.org/javascripting
21 verbose headers { date: 'Thu, 08 Mar 2018 18:56:31 GMT',
21 verbose headers via: '1.1 varnish',
21 verbose headers 'cache-control': 'max-age=300',
21 verbose headers etag: '"5a0d6d3a-9f6c"',
21 verbose headers age: '8910',
21 verbose headers connection: 'keep-alive',
21 verbose headers 'x-served-by': 'cache-lcy19244-LCY',
21 verbose headers 'x-cache': 'HIT',
21 verbose headers 'x-cache-hits': '1',
21 verbose headers 'x-timer': 'S1520535392.581848,VS0,VE1',
21 verbose headers vary: 'Accept-Encoding, Accept' }
22 silly get cb [ 304,
22 silly get { date: 'Thu, 08 Mar 2018 18:56:31 GMT',
22 silly get via: '1.1 varnish',
22 silly get 'cache-control': 'max-age=300',
22 silly get etag: '"5a0d6d3a-9f6c"',
22 silly get age: '8910',
22 silly get connection: 'keep-alive',
22 silly get 'x-served-by': 'cache-lcy19244-LCY',
22 silly get 'x-cache': 'HIT',
22 silly get 'x-cache-hits': '1',
22 silly get 'x-timer': 'S1520535392.581848,VS0,VE1',
22 silly get vary: 'Accept-Encoding, Accept' } ]
23 verbose etag https://registry.npmjs.org/javascripting from cache
24 verbose get saving javascripting to /home/christian/.npm/registry.npmjs.org/javascripting/.cache.json
25 silly install normalizeTree
26 silly loadCurrentTree Finishing
27 silly loadIdealTree Starting
28 silly install loadIdealTree
29 silly cloneCurrentTree Starting
30 silly install cloneCurrentTreeToIdealTree
31 silly cloneCurrentTree Finishing
32 silly loadShrinkwrap Starting
33 silly install loadShrinkwrap
34 silly loadShrinkwrap Finishing
35 silly loadAllDepsIntoIdealTree Starting
36 silly install loadAllDepsIntoIdealTree
37 silly resolveWithNewModule [email protected] checking installable status
38 silly cache add args [ 'javascripting', null ]
39 verbose cache add spec javascripting
40 silly cache add parsed spec Result {
40 silly cache add raw: 'javascripting',
40 silly cache add scope: null,
40 silly cache add name: 'javascripting',
40 silly cache add rawSpec: '',
40 silly cache add spec: 'latest',
40 silly cache add type: 'tag' }
41 silly addNamed javascripting@latest
42 verbose addNamed "latest" is being treated as a dist-tag for javascripting
43 info addNameTag [ 'javascripting', 'latest' ]
44 silly mapToRegistry name javascripting
45 silly mapToRegistry using default registry
46 silly mapToRegistry registry https://registry.npmjs.org/
47 silly mapToRegistry uri https://registry.npmjs.org/javascripting
48 verbose addNameTag registry:https://registry.npmjs.org/javascripting not in flight; fetching
49 verbose get https://registry.npmjs.org/javascripting not expired, no request
50 silly addNameTag next cb for javascripting with tag latest
51 silly addNamed [email protected]
52 verbose addNamed "2.6.1" is a plain semver version for javascripting
53 silly cache afterAdd [email protected]
54 verbose afterAdd /home/christian/.npm/javascripting/2.6.1/package/package.json not in flight; writing
55 verbose afterAdd /home/christian/.npm/javascripting/2.6.1/package/package.json written
56 silly fetchNamedPackageData colors
57 silly mapToRegistry name colors
58 silly mapToRegistry using default registry
59 silly mapToRegistry registry https://registry.npmjs.org/
60 silly mapToRegistry uri https://registry.npmjs.org/colors
61 silly fetchNamedPackageData promise
62 silly mapToRegistry name promise
63 silly mapToRegistry using default registry
64 silly mapToRegistry registry https://registry.npmjs.org/
65 silly mapToRegistry uri https://registry.npmjs.org/promise
66 silly fetchNamedPackageData diff
67 silly mapToRegistry name diff
68 silly mapToRegistry using default registry
69 silly mapToRegistry registry https://registry.npmjs.org/
70 silly mapToRegistry uri https://registry.npmjs.org/diff
71 silly fetchNamedPackageData workshopper-adventure
72 silly mapToRegistry name workshopper-adventure
73 silly mapToRegistry using default registry
74 silly mapToRegistry registry https://registry.npmjs.org/
75 silly mapToRegistry uri https://registry.npmjs.org/workshopper-adventure
76 verbose request uri https://registry.npmjs.org/colors
77 verbose request no auth needed
78 info attempt registry request try #1 at 19:56:31
79 verbose etag "5a9827bb-63c7"
80 verbose lastModified Thu, 1 Mar 2018 16:18:03 GMT
81 http request GET https://registry.npmjs.org/colors
82 verbose request uri https://registry.npmjs.org/promise
83 verbose request no auth needed
84 info attempt registry request try #1 at 19:56:31
85 verbose etag "5a982c34-ae0c"
86 verbose lastModified Thu, 1 Mar 2018 16:37:08 GMT
87 http request GET https://registry.npmjs.org/promise
88 verbose request uri https://registry.npmjs.org/diff
89 verbose request no auth needed
90 info attempt registry request try #1 at 19:56:31
91 verbose etag "5a9cc61f-fce5"
92 verbose lastModified Mon, 5 Mar 2018 4:22:55 GMT
93 http request GET https://registry.npmjs.org/diff
94 verbose request uri https://registry.npmjs.org/workshopper-adventure
95 verbose request no auth needed
96 info attempt registry request try #1 at 19:56:31
97 verbose etag "59e82b4f-18b22"
98 verbose lastModified Thu, 19 Oct 2017 4:34:23 GMT
99 http request GET https://registry.npmjs.org/workshopper-adventure
100 http 304 https://registry.npmjs.org/promise
101 verbose headers { date: 'Thu, 08 Mar 2018 18:56:32 GMT',
101 verbose headers via: '1.1 varnish',
101 verbose headers 'cache-control': 'max-age=300',
101 verbose headers etag: '"5a982c34-ae0c"',
101 verbose headers age: '7801',
101 verbose headers connection: 'keep-alive',
101 verbose headers 'x-served-by': 'cache-lcy19243-LCY',
101 verbose headers 'x-cache': 'HIT',
101 verbose headers 'x-cache-hits': '48',
101 verbose headers 'x-timer': 'S1520535392.023148,VS0,VE0',
101 verbose headers vary: 'Accept-Encoding, Accept' }
102 silly get cb [ 304,
102 silly get { date: 'Thu, 08 Mar 2018 18:56:32 GMT',
102 silly get via: '1.1 varnish',
102 silly get 'cache-control': 'max-age=300',
102 silly get etag: '"5a982c34-ae0c"',
102 silly get age: '7801',
102 silly get connection: 'keep-alive',
102 silly get 'x-served-by': 'cache-lcy19243-LCY',
102 silly get 'x-cache': 'HIT',
102 silly get 'x-cache-hits': '48',
102 silly get 'x-timer': 'S1520535392.023148,VS0,VE0',
102 silly get vary: 'Accept-Encoding, Accept' } ]
103 verbose etag https://registry.npmjs.org/promise from cache
104 verbose get saving promise to /home/christian/.npm/registry.npmjs.org/promise/.cache.json
105 http 304 https://registry.npmjs.org/colors
106 verbose headers { date: 'Thu, 08 Mar 2018 18:56:32 GMT',
106 verbose headers via: '1.1 varnish',
106 verbose headers 'cache-control': 'max-age=300',
106 verbose headers etag: '"5a9827bb-63c7"',
106 verbose headers age: '8722',
106 verbose headers connection: 'keep-alive',
106 verbose headers 'x-served-by': 'cache-lcy19232-LCY',
106 verbose headers 'x-cache': 'HIT',
106 verbose headers 'x-cache-hits': '143',
106 verbose headers 'x-timer': 'S1520535392.015974,VS0,VE0',
106 verbose headers vary: 'Accept-Encoding, Accept' }
107 silly get cb [ 304,
107 silly get { date: 'Thu, 08 Mar 2018 18:56:32 GMT',
107 silly get via: '1.1 varnish',
107 silly get 'cache-control': 'max-age=300',
107 silly get etag: '"5a9827bb-63c7"',
107 silly get age: '8722',
107 silly get connection: 'keep-alive',
107 silly get 'x-served-by': 'cache-lcy19232-LCY',
107 silly get 'x-cache': 'HIT',
107 silly get 'x-cache-hits': '143',
107 silly get 'x-timer': 'S1520535392.015974,VS0,VE0',
107 silly get vary: 'Accept-Encoding, Accept' } ]
108 verbose etag https://registry.npmjs.org/colors from cache
109 verbose get saving colors to /home/christian/.npm/registry.npmjs.org/colors/.cache.json
110 http 304 https://registry.npmjs.org/diff
111 verbose headers { date: 'Thu, 08 Mar 2018 18:56:32 GMT',
111 verbose headers via: '1.1 varnish',
111 verbose headers 'cache-control': 'max-age=300',
111 verbose headers etag: '"5a9cc61f-fce5"',
111 verbose headers age: '8828',
111 verbose headers connection: 'keep-alive',
111 verbose headers 'x-served-by': 'cache-lcy19240-LCY',
111 verbose headers 'x-cache': 'HIT',
111 verbose headers 'x-cache-hits': '67',
111 verbose headers 'x-timer': 'S1520535392.020397,VS0,VE0',
111 verbose headers vary: 'Accept-Encoding, Accept' }
112 silly get cb [ 304,
112 silly get { date: 'Thu, 08 Mar 2018 18:56:32 GMT',
112 silly get via: '1.1 varnish',
112 silly get 'cache-control': 'max-age=300',
112 silly get etag: '"5a9cc61f-fce5"',
112 silly get age: '8828',
112 silly get connection: 'keep-alive',
112 silly get 'x-served-by': 'cache-lcy19240-LCY',
112 silly get 'x-cache': 'HIT',
112 silly get 'x-cache-hits': '67',
112 silly get 'x-timer': 'S1520535392.020397,VS0,VE0',
112 silly get vary: 'Accept-Encoding, Accept' } ]
113 verbose etag https://registry.npmjs.org/diff from cache
114 verbose get saving diff to /home/christian/.npm/registry.npmjs.org/diff/.cache.json
115 http 304 https://registry.npmjs.org/workshopper-adventure
116 verbose headers { date: 'Thu, 08 Mar 2018 18:56:32 GMT',
116 verbose headers via: '1.1 varnish',
116 verbose headers 'cache-control': 'max-age=300',
116 verbose headers etag: '"59e82b4f-18b22"',
116 verbose headers age: '70',
116 verbose headers connection: 'keep-alive',
116 verbose headers 'x-served-by': 'cache-lcy19232-LCY',
116 verbose headers 'x-cache': 'HIT',
116 verbose headers 'x-cache-hits': '1',
116 verbose headers 'x-timer': 'S1520535392.022373,VS0,VE1',
116 verbose headers vary: 'Accept-Encoding, Accept' }
117 silly get cb [ 304,
117 silly get { date: 'Thu, 08 Mar 2018 18:56:32 GMT',
117 silly get via: '1.1 varnish',
117 silly get 'cache-control': 'max-age=300',
117 silly get etag: '"59e82b4f-18b22"',
117 silly get age: '70',
117 silly get connection: 'keep-alive',
117 silly get 'x-served-by': 'cache-lcy19232-LCY',
117 silly get 'x-cache': 'HIT',
117 silly get 'x-cache-hits': '1',
117 silly get 'x-timer': 'S1520535392.022373,VS0,VE1',
117 silly get vary: 'Accept-Encoding, Accept' } ]
118 verbose etag https://registry.npmjs.org/workshopper-adventure from cache
119 verbose get saving workshopper-adventure to /home/christian/.npm/registry.npmjs.org/workshopper-adventure/.cache.json
120 silly resolveWithNewModule [email protected] checking installable status
121 silly cache add args [ 'colors@^1.0.3', null ]
122 verbose cache add spec colors@^1.0.3
123 silly cache add parsed spec Result {
123 silly cache add raw: 'colors@^1.0.3',
123 silly cache add scope: null,
123 silly cache add name: 'colors',
123 silly cache add rawSpec: '^1.0.3',
123 silly cache add spec: '>=1.0.3 <2.0.0',
123 silly cache add type: 'range' }
124 silly addNamed colors@>=1.0.3 <2.0.0
125 verbose addNamed ">=1.0.3 <2.0.0" is a valid semver range for colors
126 silly addNameRange { name: 'colors', range: '>=1.0.3 <2.0.0', hasData: false }
127 silly mapToRegistry name colors
128 silly mapToRegistry using default registry
129 silly mapToRegistry registry https://registry.npmjs.org/
130 silly mapToRegistry uri https://registry.npmjs.org/colors
131 verbose addNameRange registry:https://registry.npmjs.org/colors not in flight; fetching
132 silly resolveWithNewModule [email protected] checking installable status
133 silly cache add args [ 'diff@^1.2.1', null ]
134 verbose cache add spec diff@^1.2.1
135 silly cache add parsed spec Result {
135 silly cache add raw: 'diff@^1.2.1',
135 silly cache add scope: null,
135 silly cache add name: 'diff',
135 silly cache add rawSpec: '^1.2.1',
135 silly cache add spec: '>=1.2.1 <2.0.0',
135 silly cache add type: 'range' }
136 silly addNamed diff@>=1.2.1 <2.0.0
137 verbose addNamed ">=1.2.1 <2.0.0" is a valid semver range for diff
138 silly addNameRange { name: 'diff', range: '>=1.2.1 <2.0.0', hasData: false }
139 silly mapToRegistry name diff
140 silly mapToRegistry using default registry
141 silly mapToRegistry registry https://registry.npmjs.org/
142 silly mapToRegistry uri https://registry.npmjs.org/diff
143 verbose addNameRange registry:https://registry.npmjs.org/diff not in flight; fetching
144 silly resolveWithNewModule [email protected] checking installable status
145 silly cache add args [ 'promise@^7.1.1', null ]
146 verbose cache add spec promise@^7.1.1
147 silly cache add parsed spec Result {
147 silly cache add raw: 'promise@^7.1.1',
147 silly cache add scope: null,
147 silly cache add name: 'promise',
147 silly cache add rawSpec: '^7.1.1',
147 silly cache add spec: '>=7.1.1 <8.0.0',
147 silly cache add type: 'range' }
148 silly addNamed promise@>=7.1.1 <8.0.0
149 verbose addNamed ">=7.1.1 <8.0.0" is a valid semver range for promise
150 silly addNameRange { name: 'promise', range: '>=7.1.1 <8.0.0', hasData: false }
151 silly mapToRegistry name promise
152 silly mapToRegistry using default registry
153 silly mapToRegistry registry https://registry.npmjs.org/
154 silly mapToRegistry uri https://registry.npmjs.org/promise
155 verbose addNameRange registry:https://registry.npmjs.org/promise not in flight; fetching
156 silly resolveWithNewModule [email protected] checking installable status
157 silly cache add args [ 'workshopper-adventure@^5.0.0', null ]
158 verbose cache add spec workshopper-adventure@^5.0.0
159 silly cache add parsed spec Result {
159 silly cache add raw: 'workshopper-adventure@^5.0.0',
159 silly cache add scope: null,
159 silly cache add name: 'workshopper-adventure',
159 silly cache add rawSpec: '^5.0.0',
159 silly cache add spec: '>=5.0.0 <6.0.0',
159 silly cache add type: 'range' }
160 silly addNamed workshopper-adventure@>=5.0.0 <6.0.0
161 verbose addNamed ">=5.0.0 <6.0.0" is a valid semver range for workshopper-adventure
162 silly addNameRange { name: 'workshopper-adventure',
162 silly addNameRange range: '>=5.0.0 <6.0.0',
162 silly addNameRange hasData: false }
163 silly mapToRegistry name workshopper-adventure
164 silly mapToRegistry using default registry
165 silly mapToRegistry registry https://registry.npmjs.org/
166 silly mapToRegistry uri https://registry.npmjs.org/workshopper-adventure
167 verbose addNameRange registry:https://registry.npmjs.org/workshopper-adventure not in flight; fetching
168 verbose get https://registry.npmjs.org/colors not expired, no request
169 silly addNameRange number 2 { name: 'colors', range: '>=1.0.3 <2.0.0', hasData: true }
170 silly addNameRange versions [ 'colors',
170 silly addNameRange [ '0.3.0',
170 silly addNameRange '0.5.0',
170 silly addNameRange '0.5.1',
170 silly addNameRange '0.6.0',
170 silly addNameRange '0.6.0-1',
170 silly addNameRange '0.6.1',
170 silly addNameRange '0.6.2',
170 silly addNameRange '1.0.0',
170 silly addNameRange '1.0.1',
170 silly addNameRange '1.0.2',
170 silly addNameRange '1.0.3',
170 silly addNameRange '1.1.0',
170 silly addNameRange '1.1.1',
170 silly addNameRange '1.1.2',
170 silly addNameRange '1.2.0-rc0' ] ]
171 silly addNamed [email protected]
172 verbose addNamed "1.1.2" is a plain semver version for colors
173 verbose get https://registry.npmjs.org/promise not expired, no request
174 silly addNameRange number 2 { name: 'promise', range: '>=7.1.1 <8.0.0', hasData: true }
175 silly addNameRange versions [ 'promise',
175 silly addNameRange [ '1.2.1',
175 silly addNameRange '1.2.2',
175 silly addNameRange '1.3.0',
175 silly addNameRange '2.0.0',
175 silly addNameRange '3.0.0',
175 silly addNameRange '3.0.1',
175 silly addNameRange '3.1.0',
175 silly addNameRange '3.2.0',
175 silly addNameRange '4.0.0',
175 silly addNameRange '5.0.0',
175 silly addNameRange '6.0.0',
175 silly addNameRange '6.0.1',
175 silly addNameRange '6.1.0',
175 silly addNameRange '7.0.0',
175 silly addNameRange '7.0.1',
175 silly addNameRange '7.0.2',
175 silly addNameRange '7.0.3',
175 silly addNameRange '7.0.4',
175 silly addNameRange '7.1.0',
175 silly addNameRange '7.1.1',
175 silly addNameRange '7.2.0',
175 silly addNameRange '7.3.0',
175 silly addNameRange '7.3.1',
175 silly addNameRange '8.0.0',
175 silly addNameRange '8.0.1' ] ]
176 silly addNamed [email protected]
177 verbose addNamed "7.3.1" is a plain semver version for promise
178 verbose get https://registry.npmjs.org/diff not expired, no request
179 silly addNameRange number 2 { name: 'diff', range: '>=1.2.1 <2.0.0', hasData: true }
180 silly addNameRange versions [ 'diff',
180 silly addNameRange [ '1.0.0',
180 silly addNameRange '1.0.1',
180 silly addNameRange '1.0.2',
180 silly addNameRange '1.0.3',
180 silly addNameRange '1.0.4',
180 silly addNameRange '1.0.5',
180 silly addNameRange '1.0.6',
180 silly addNameRange '1.0.7',
180 silly addNameRange '1.0.8',
180 silly addNameRange '1.1.0',
180 silly addNameRange '1.2.0',
180 silly addNameRange '1.2.1',
180 silly addNameRange '1.2.2',
180 silly addNameRange '1.3.0',
180 silly addNameRange '1.3.1',
180 silly addNameRange '1.3.2',
180 silly addNameRange '1.4.0',
180 silly addNameRange '2.0.1',
180 silly addNameRange '2.0.2',
180 silly addNameRange '2.1.0',
180 silly addNameRange '2.1.1',
180 silly addNameRange '2.1.2',
180 silly addNameRange '2.1.3',
180 silly addNameRange '2.2.0',
180 silly addNameRange '2.2.1',
180 silly addNameRange '2.2.2',
180 silly addNameRange '2.2.3',
180 silly addNameRange '3.0.0',
180 silly addNameRange '3.0.1',
180 silly addNameRange '3.1.0',
180 silly addNameRange '3.2.0',
180 silly addNameRange '3.3.0',
180 silly addNameRange '3.3.1',
180 silly addNameRange '3.4.0',
180 silly addNameRange '3.5.0' ] ]
181 silly addNamed [email protected]
182 verbose addNamed "1.4.0" is a plain semver version for diff
183 verbose get https://registry.npmjs.org/workshopper-adventure not expired, no request
184 silly addNameRange number 2 { name: 'workshopper-adventure',
184 silly addNameRange range: '>=5.0.0 <6.0.0',
184 silly addNameRange hasData: true }
185 silly addNameRange versions [ 'workshopper-adventure',
185 silly addNameRange [ '3.0.0',
185 silly addNameRange '3.0.1',
185 silly addNameRange '3.0.2',
185 silly addNameRange '3.1.0',
185 silly addNameRange '3.2.0',
185 silly addNameRange '3.3.0',
185 silly addNameRange '3.3.1',
185 silly addNameRange '3.4.0',
185 silly addNameRange '3.4.1',
185 silly addNameRange '3.4.2',
185 silly addNameRange '3.4.3',
185 silly addNameRange '3.4.4',
185 silly addNameRange '3.4.5',
185 silly addNameRange '3.5.0',
185 silly addNameRange '3.5.1',
185 silly addNameRange '3.5.2',
185 silly addNameRange '4.0.0',
185 silly addNameRange '4.0.1',
185 silly addNameRange '4.0.2',
185 silly addNameRange '4.0.3',
185 silly addNameRange '4.0.4',
185 silly addNameRange '4.1.0',
185 silly addNameRange '4.2.0',
185 silly addNameRange '4.2.1',
185 silly addNameRange '4.2.2',
185 silly addNameRange '4.3.0',
185 silly addNameRange '4.3.1',
185 silly addNameRange '4.4.0',
185 silly addNameRange '4.4.1',
185 silly addNameRange '4.4.2',
185 silly addNameRange '4.4.3',
185 silly addNameRange '4.4.4',
185 silly addNameRange '4.4.5',
185 silly addNameRange '4.4.6',
185 silly addNameRange '4.4.7',
185 silly addNameRange '4.4.8',
185 silly addNameRange '4.5.0',
185 silly addNameRange '4.6.0',
185 silly addNameRange '4.6.1',
185 silly addNameRange '4.6.2',
185 silly addNameRange '4.6.3',
185 silly addNameRange '4.7.0',
185 silly addNameRange '4.7.1',
185 silly addNameRange '5.0.0',
185 silly addNameRange '5.0.1',
185 silly addNameRange '5.0.2',
185 silly addNameRange '5.0.3',
185 silly addNameRange '5.1.0',
185 silly addNameRange '5.1.1',
185 silly addNameRange '5.1.2',
185 silly addNameRange '5.1.5',
185 silly addNameRange '5.1.6',
185 silly addNameRange '5.1.7',
185 silly addNameRange '5.1.8',
185 silly addNameRange '6.0.0',
185 silly addNameRange '6.0.1',
185 silly addNameRange '6.0.2',
185 silly addNameRange '6.0.3' ] ]
186 silly addNamed [email protected]
187 verbose addNamed "5.1.8" is a plain semver version for workshopper-adventure
188 silly cache afterAdd [email protected]
189 verbose afterAdd /home/christian/.npm/colors/1.1.2/package/package.json not in flight; writing
190 silly cache afterAdd [email protected]
191 verbose afterAdd /home/christian/.npm/promise/7.3.1/package/package.json not in flight; writing
192 silly cache afterAdd [email protected]
193 verbose afterAdd /home/christian/.npm/diff/1.4.0/package/package.json not in flight; writing
194 silly cache afterAdd [email protected]
195 verbose afterAdd /home/christian/.npm/workshopper-adventure/5.1.8/package/package.json not in flight; writing
196 verbose afterAdd /home/christian/.npm/diff/1.4.0/package/package.json written
197 verbose afterAdd /home/christian/.npm/promise/7.3.1/package/package.json written
198 verbose afterAdd /home/christian/.npm/colors/1.1.2/package/package.json written
199 verbose afterAdd /home/christian/.npm/workshopper-adventure/5.1.8/package/package.json written
200 silly fetchNamedPackageData asap
201 silly mapToRegistry name asap
202 silly mapToRegistry using default registry
203 silly mapToRegistry registry https://registry.npmjs.org/
204 silly mapToRegistry uri https://registry.npmjs.org/asap
205 verbose request uri https://registry.npmjs.org/asap
206 verbose request no auth needed
207 info attempt registry request try #1 at 19:56:32
208 verbose etag "5a40ad84-6eaa"
209 verbose lastModified Mon, 25 Dec 2017 7:49:24 GMT
210 http request GET https://registry.npmjs.org/asap
211 http 304 https://registry.npmjs.org/asap
212 verbose headers { date: 'Thu, 08 Mar 2018 18:56:32 GMT',
212 verbose headers via: '1.1 varnish',
212 verbose headers 'cache-control': 'max-age=300',
212 verbose headers etag: '"5a40ad84-6eaa"',
212 verbose headers age: '674',
212 verbose headers connection: 'keep-alive',
212 verbose headers 'x-served-by': 'cache-lcy19239-LCY',
212 verbose headers 'x-cache': 'HIT',
212 verbose headers 'x-cache-hits': '2',
212 verbose headers 'x-timer': 'S1520535392.295894,VS0,VE0',
212 verbose headers vary: 'Accept-Encoding, Accept' }
213 silly get cb [ 304,
213 silly get { date: 'Thu, 08 Mar 2018 18:56:32 GMT',
213 silly get via: '1.1 varnish',
213 silly get 'cache-control': 'max-age=300',
213 silly get etag: '"5a40ad84-6eaa"',
213 silly get age: '674',
213 silly get connection: 'keep-alive',
213 silly get 'x-served-by': 'cache-lcy19239-LCY',
213 silly get 'x-cache': 'HIT',
213 silly get 'x-cache-hits': '2',
213 silly get 'x-timer': 'S1520535392.295894,VS0,VE0',
213 silly get vary: 'Accept-Encoding, Accept' } ]
214 verbose etag https://registry.npmjs.org/asap from cache
215 verbose get saving asap to /home/christian/.npm/registry.npmjs.org/asap/.cache.json
216 silly resolveWithNewModule [email protected] checking installable status
217 silly cache add args [ 'asap@~2.0.3', null ]
218 verbose cache add spec asap@~2.0.3
219 silly cache add parsed spec Result {
219 silly cache add raw: 'asap@~2.0.3',
219 silly cache add scope: null,
219 silly cache add name: 'asap',
219 silly cache add rawSpec: '~2.0.3',
219 silly cache add spec: '>=2.0.3 <2.1.0',
219 silly cache add type: 'range' }
220 silly addNamed asap@>=2.0.3 <2.1.0
221 verbose addNamed ">=2.0.3 <2.1.0" is a valid semver range for asap
222 silly addNameRange { name: 'asap', range: '>=2.0.3 <2.1.0', hasData: false }
223 silly mapToRegistry name asap
224 silly mapToRegistry using default registry
225 silly mapToRegistry registry https://registry.npmjs.org/
226 silly mapToRegistry uri https://registry.npmjs.org/asap
227 verbose addNameRange registry:https://registry.npmjs.org/asap not in flight; fetching
228 verbose get https://registry.npmjs.org/asap not expired, no request
229 silly addNameRange number 2 { name: 'asap', range: '>=2.0.3 <2.1.0', hasData: true }
230 silly addNameRange versions [ 'asap',
230 silly addNameRange [ '0.0.0',
230 silly addNameRange '1.0.0',
230 silly addNameRange '2.0.0',
230 silly addNameRange '2.0.1',
230 silly addNameRange '2.0.2',
230 silly addNameRange '2.0.3',
230 silly addNameRange '2.0.4',
230 silly addNameRange '2.0.5',
230 silly addNameRange '2.0.6' ] ]
231 silly addNamed [email protected]
232 verbose addNamed "2.0.6" is a plain semver version for asap
233 silly cache afterAdd [email protected]
234 verbose afterAdd /home/christian/.npm/asap/2.0.6/package/package.json not in flight; writing
235 verbose afterAdd /home/christian/.npm/asap/2.0.6/package/package.json written
236 silly fetchNamedPackageData after
237 silly mapToRegistry name after
238 silly mapToRegistry using default registry
239 silly mapToRegistry registry https://registry.npmjs.org/
240 silly mapToRegistry uri https://registry.npmjs.org/after
241 silly fetchNamedPackageData chalk
242 silly mapToRegistry name chalk
243 silly mapToRegistry using default registry
244 silly mapToRegistry registry https://registry.npmjs.org/
245 silly mapToRegistry uri https://registry.npmjs.org/chalk
246 silly fetchNamedPackageData colors-tmpl
247 silly mapToRegistry name colors-tmpl
248 silly mapToRegistry using default registry
249 silly mapToRegistry registry https://registry.npmjs.org/
250 silly mapToRegistry uri https://registry.npmjs.org/colors-tmpl
251 silly fetchNamedPackageData combined-stream-wait-for-it
252 silly mapToRegistry name combined-stream-wait-for-it
253 silly mapToRegistry using default registry
254 silly mapToRegistry registry https://registry.npmjs.org/
255 silly mapToRegistry uri https://registry.npmjs.org/combined-stream-wait-for-it
256 silly fetchNamedPackageData commandico
257 silly mapToRegistry name commandico
258 silly mapToRegistry using default registry
259 silly mapToRegistry registry https://registry.npmjs.org/
260 silly mapToRegistry uri https://registry.npmjs.org/commandico
261 silly fetchNamedPackageData i18n-core
262 silly mapToRegistry name i18n-core
263 silly mapToRegistry using default registry
264 silly mapToRegistry registry https://registry.npmjs.org/
265 silly mapToRegistry uri https://registry.npmjs.org/i18n-core
266 silly fetchNamedPackageData latest-version
267 silly mapToRegistry name latest-version
268 silly mapToRegistry using default registry
269 silly mapToRegistry registry https://registry.npmjs.org/
270 silly mapToRegistry uri https://registry.npmjs.org/latest-version
271 silly fetchNamedPackageData msee
272 silly mapToRegistry name msee
273 silly mapToRegistry using default registry
274 silly mapToRegistry registry https://registry.npmjs.org/
275 silly mapToRegistry uri https://registry.npmjs.org/msee
276 silly fetchNamedPackageData simple-terminal-menu
277 silly mapToRegistry name simple-terminal-menu
278 silly mapToRegistry using default registry
279 silly mapToRegistry registry https://registry.npmjs.org/
280 silly mapToRegistry uri https://registry.npmjs.org/simple-terminal-menu
281 silly fetchNamedPackageData split
282 silly mapToRegistry name split
283 silly mapToRegistry using default registry
284 silly mapToRegistry registry https://registry.npmjs.org/
285 silly mapToRegistry uri https://registry.npmjs.org/split
286 silly fetchNamedPackageData string-to-stream
287 silly mapToRegistry name string-to-stream
288 silly mapToRegistry using default registry
289 silly mapToRegistry registry https://registry.npmjs.org/
290 silly mapToRegistry uri https://registry.npmjs.org/string-to-stream
291 silly fetchNamedPackageData through2
292 silly mapToRegistry name through2
293 silly mapToRegistry using default registry
294 silly mapToRegistry registry https://registry.npmjs.org/
295 silly mapToRegistry uri https://registry.npmjs.org/through2
296 silly fetchNamedPackageData workshopper-adventure-storage
297 silly mapToRegistry name workshopper-adventure-storage
298 silly mapToRegistry using default registry
299 silly mapToRegistry registry https://registry.npmjs.org/
300 silly mapToRegistry uri https://registry.npmjs.org/workshopper-adventure-storage
301 verbose request uri https://registry.npmjs.org/after
302 verbose request no auth needed
303 info attempt registry request try #1 at 19:56:32
304 verbose etag "59286cbb-55b2"
305 verbose lastModified Fri, 26 May 2017 17:58:19 GMT
306 http request GET https://registry.npmjs.org/after
307 verbose request uri https://registry.npmjs.org/colors-tmpl
308 verbose request no auth needed
309 info attempt registry request try #1 at 19:56:32
310 verbose etag "54364711-1d43"
311 verbose lastModified Thu, 9 Oct 2014 8:28:01 GMT
312 http request GET https://registry.npmjs.org/colors-tmpl
313 verbose request uri https://registry.npmjs.org/combined-stream-wait-for-it
314 verbose request no auth needed
315 info attempt registry request try #1 at 19:56:32
316 verbose etag "5824ce90-1bb1"
317 verbose lastModified Thu, 10 Nov 2016 19:46:24 GMT
318 http request GET https://registry.npmjs.org/combined-stream-wait-for-it
319 verbose request uri https://registry.npmjs.org/chalk
320 verbose request no auth needed
321 info attempt registry request try #1 at 19:56:32
322 verbose etag "5aa0d6bf-e69e"
323 verbose lastModified Thu, 8 Mar 2018 6:22:55 GMT
324 http request GET https://registry.npmjs.org/chalk
325 verbose request uri https://registry.npmjs.org/i18n-core
326 verbose request no auth needed
327 info attempt registry request try #1 at 19:56:32
328 verbose etag "59473de6-974c"
329 verbose lastModified Mon, 19 Jun 2017 2:58:46 GMT
330 http request GET https://registry.npmjs.org/i18n-core
331 verbose request uri https://registry.npmjs.org/latest-version
332 verbose request no auth needed
333 info attempt registry request try #1 at 19:56:32
334 verbose etag "5a144796-331c"
335 verbose lastModified Tue, 21 Nov 2017 15:34:46 GMT
336 http request GET https://registry.npmjs.org/latest-version
337 verbose request uri https://registry.npmjs.org/commandico
338 verbose request no auth needed
339 info attempt registry request try #1 at 19:56:32
340 verbose etag "56ae3f2a-2fe7"
341 verbose lastModified Sun, 31 Jan 2016 17:06:50 GMT
342 http request GET https://registry.npmjs.org/commandico
343 verbose request uri https://registry.npmjs.org/msee
344 verbose request no auth needed
345 info attempt registry request try #1 at 19:56:32
346 verbose etag "5a972ff8-4ef6"
347 verbose lastModified Wed, 28 Feb 2018 22:40:56 GMT
348 http request GET https://registry.npmjs.org/msee
349 verbose request uri https://registry.npmjs.org/simple-terminal-menu
350 verbose request no auth needed
351 info attempt registry request try #1 at 19:56:32
352 verbose etag "5889a284-30b9"
353 verbose lastModified Thu, 26 Jan 2017 7:17:24 GMT
354 http request GET https://registry.npmjs.org/simple-terminal-menu
355 verbose request uri https://registry.npmjs.org/string-to-stream
356 verbose request no auth needed
357 info attempt registry request try #1 at 19:56:32
358 verbose etag "58bfc793-1815"
359 verbose lastModified Wed, 8 Mar 2017 8:57:55 GMT
360 http request GET https://registry.npmjs.org/string-to-stream
361 verbose request uri https://registry.npmjs.org/split
362 verbose request no auth needed
363 info attempt registry request try #1 at 19:56:32
364 verbose etag "5a55be39-5bca"
365 verbose lastModified Wed, 10 Jan 2018 7:18:17 GMT
366 http request GET https://registry.npmjs.org/split
367 verbose request uri https://registry.npmjs.org/through2
368 verbose request no auth needed
369 info attempt registry request try #1 at 19:56:32
370 verbose etag "5a9a006b-abb9"
371 verbose lastModified Sat, 3 Mar 2018 1:54:51 GMT
372 http request GET https://registry.npmjs.org/through2
373 verbose request uri https://registry.npmjs.org/workshopper-adventure-storage
374 verbose request no auth needed
375 info attempt registry request try #1 at 19:56:32
376 verbose etag "582ce3d4-53db"
377 verbose lastModified Wed, 16 Nov 2016 22:55:16 GMT
378 http request GET https://registry.npmjs.org/workshopper-adventure-storage
379 http 304 https://registry.npmjs.org/colors-tmpl
380 verbose headers { date: 'Thu, 08 Mar 2018 18:56:32 GMT',
380 verbose headers via: '1.1 varnish',
380 verbose headers 'cache-control': 'max-age=300',
380 verbose headers etag: '"54364711-1d43"',
380 verbose headers age: '6547',
380 verbose headers connection: 'keep-alive',
380 verbose headers 'x-served-by': 'cache-lcy19244-LCY',
380 verbose headers 'x-cache': 'HIT',
380 verbose headers 'x-cache-hits': '1',
380 verbose headers 'x-timer': 'S1520535393.544509,VS0,VE0',
380 verbose headers vary: 'Accept-Encoding, Accept' }
381 silly get cb [ 304,
381 silly get { date: 'Thu, 08 Mar 2018 18:56:32 GMT',
381 silly get via: '1.1 varnish',
381 silly get 'cache-control': 'max-age=300',
381 silly get etag: '"54364711-1d43"',
381 silly get age: '6547',
381 silly get connection: 'keep-alive',
381 silly get 'x-served-by': 'cache-lcy19244-LCY',
381 silly get 'x-cache': 'HIT',
381 silly get 'x-cache-hits': '1',
381 silly get 'x-timer': 'S1520535393.544509,VS0,VE0',
381 silly get vary: 'Accept-Encoding, Accept' } ]
382 verbose etag https://registry.npmjs.org/colors-tmpl from cache
383 verbose get saving colors-tmpl to /home/christian/.npm/registry.npmjs.org/colors-tmpl/.cache.json
384 http 304 https://registry.npmjs.org/chalk
385 verbose headers { date: 'Thu, 08 Mar 2018 18:56:32 GMT',
385 verbose headers via: '1.1 varnish',
385 verbose headers 'cache-control': 'max-age=300',
385 verbose headers etag: '"5aa0d6bf-e69e"',
385 verbose headers age: '1945',
385 verbose headers connection: 'keep-alive',
385 verbose headers 'x-served-by': 'cache-lcy19249-LCY',
385 verbose headers 'x-cache': 'HIT',
385 verbose headers 'x-cache-hits': '52',
385 verbose headers 'x-timer': 'S1520535393.547179,VS0,VE0',
385 verbose headers vary: 'Accept-Encoding, Accept' }
386 silly get cb [ 304,
386 silly get { date: 'Thu, 08 Mar 2018 18:56:32 GMT',
386 silly get via: '1.1 varnish',
386 silly get 'cache-control': 'max-age=300',
386 silly get etag: '"5aa0d6bf-e69e"',
386 silly get age: '1945',
386 silly get connection: 'keep-alive',
386 silly get 'x-served-by': 'cache-lcy19249-LCY',
386 silly get 'x-cache': 'HIT',
386 silly get 'x-cache-hits': '52',
386 silly get 'x-timer': 'S1520535393.547179,VS0,VE0',
386 silly get vary: 'Accept-Encoding, Accept' } ]
387 verbose etag https://registry.npmjs.org/chalk from cache
388 verbose get saving chalk to /home/christian/.npm/registry.npmjs.org/chalk/.cache.json
389 http 304 https://registry.npmjs.org/commandico
390 verbose headers { date: 'Thu, 08 Mar 2018 18:56:32 GMT',
390 verbose headers via: '1.1 varnish',
390 verbose headers 'cache-control': 'max-age=300',
390 verbose headers etag: '"56ae3f2a-2fe7"',
390 verbose headers age: '69',
390 verbose headers connection: 'keep-alive',
390 verbose headers 'x-served-by': 'cache-lcy19226-LCY',
390 verbose headers 'x-cache': 'HIT',
390 verbose headers 'x-cache-hits': '1',
390 verbose headers 'x-timer': 'S1520535393.555673,VS0,VE1',
390 verbose headers vary: 'Accept-Encoding, Accept' }
391 silly get cb [ 304,
391 silly get { date: 'Thu, 08 Mar 2018 18:56:32 GMT',
391 silly get via: '1.1 varnish',
391 silly get 'cache-control': 'max-age=300',
391 silly get etag: '"56ae3f2a-2fe7"',
391 silly get age: '69',
391 silly get connection: 'keep-alive',
391 silly get 'x-served-by': 'cache-lcy19226-LCY',
391 silly get 'x-cache': 'HIT',
391 silly get 'x-cache-hits': '1',
391 silly get 'x-timer': 'S1520535393.555673,VS0,VE1',
391 silly get vary: 'Accept-Encoding, Accept' } ]
392 verbose etag https://registry.npmjs.org/commandico from cache
393 verbose get saving commandico to /home/christian/.npm/registry.npmjs.org/commandico/.cache.json
394 http 304 https://registry.npmjs.org/i18n-core
395 verbose headers { date: 'Thu, 08 Mar 2018 18:56:32 GMT',
395 verbose headers via: '1.1 varnish',
395 verbose headers 'cache-control': 'max-age=300',
395 verbose headers etag: '"59473de6-974c"',
395 verbose headers age: '4257',
395 verbose headers connection: 'keep-alive',
395 verbose headers 'x-served-by': 'cache-lcy19249-LCY',
395 verbose headers 'x-cache': 'HIT',
395 verbose headers 'x-cache-hits': '1',
395 verbose headers 'x-timer': 'S1520535393.556791,VS0,VE1',
395 verbose headers vary: 'Accept-Encoding, Accept' }
396 silly get cb [ 304,
396 silly get { date: 'Thu, 08 Mar 2018 18:56:32 GMT',
396 silly get via: '1.1 varnish',
396 silly get 'cache-control': 'max-age=300',
396 silly get etag: '"59473de6-974c"',
396 silly get age: '4257',
396 silly get connection: 'keep-alive',
396 silly get 'x-served-by': 'cache-lcy19249-LCY',
396 silly get 'x-cache': 'HIT',
396 silly get 'x-cache-hits': '1',
396 silly get 'x-timer': 'S1520535393.556791,VS0,VE1',
396 silly get vary: 'Accept-Encoding, Accept' } ]
397 verbose etag https://registry.npmjs.org/i18n-core from cache
398 verbose get saving i18n-core to /home/christian/.npm/registry.npmjs.org/i18n-core/.cache.json
399 silly resolveWithNewModule [email protected] checking installable status
400 silly cache add args [ 'colors-tmpl@~1.0.0', null ]
401 verbose cache add spec colors-tmpl@~1.0.0
402 silly cache add parsed spec Result {
402 silly cache add raw: 'colors-tmpl@~1.0.0',
402 silly cache add scope: null,
402 silly cache add name: 'colors-tmpl',
402 silly cache add rawSpec: '~1.0.0',
402 silly cache add spec: '>=1.0.0 <1.1.0',
402 silly cache add type: 'range' }
403 silly addNamed colors-tmpl@>=1.0.0 <1.1.0
404 verbose addNamed ">=1.0.0 <1.1.0" is a valid semver range for colors-tmpl
405 silly addNameRange { name: 'colors-tmpl', range: '>=1.0.0 <1.1.0', hasData: false }
406 silly mapToRegistry name colors-tmpl
407 silly mapToRegistry using default registry
408 silly mapToRegistry registry https://registry.npmjs.org/
409 silly mapToRegistry uri https://registry.npmjs.org/colors-tmpl
410 verbose addNameRange registry:https://registry.npmjs.org/colors-tmpl not in flight; fetching
411 silly resolveWithNewModule [email protected] checking installable status
412 silly cache add args [ 'commandico@^2.0.2', null ]
413 verbose cache add spec commandico@^2.0.2
414 silly cache add parsed spec Result {
414 silly cache add raw: 'commandico@^2.0.2',
414 silly cache add scope: null,
414 silly cache add name: 'commandico',
414 silly cache add rawSpec: '^2.0.2',
414 silly cache add spec: '>=2.0.2 <3.0.0',
414 silly cache add type: 'range' }
415 silly addNamed commandico@>=2.0.2 <3.0.0
416 verbose addNamed ">=2.0.2 <3.0.0" is a valid semver range for commandico
417 silly addNameRange { name: 'commandico', range: '>=2.0.2 <3.0.0', hasData: false }
418 silly mapToRegistry name commandico
419 silly mapToRegistry using default registry
420 silly mapToRegistry registry https://registry.npmjs.org/
421 silly mapToRegistry uri https://registry.npmjs.org/commandico
422 verbose addNameRange registry:https://registry.npmjs.org/commandico not in flight; fetching
423 silly resolveWithNewModule [email protected] checking installable status
424 silly cache add args [ 'chalk@^1.1.3', null ]
425 verbose cache add spec chalk@^1.1.3
426 silly cache add parsed spec Result {
426 silly cache add raw: 'chalk@^1.1.3',
426 silly cache add scope: null,
426 silly cache add name: 'chalk',
426 silly cache add rawSpec: '^1.1.3',
426 silly cache add spec: '>=1.1.3 <2.0.0',
426 silly cache add type: 'range' }
427 silly addNamed chalk@>=1.1.3 <2.0.0
428 verbose addNamed ">=1.1.3 <2.0.0" is a valid semver range for chalk
429 silly addNameRange { name: 'chalk', range: '>=1.1.3 <2.0.0', hasData: false }
430 silly mapToRegistry name chalk
431 silly mapToRegistry using default registry
432 silly mapToRegistry registry https://registry.npmjs.org/
433 silly mapToRegistry uri https://registry.npmjs.org/chalk
434 verbose addNameRange registry:https://registry.npmjs.org/chalk not in flight; fetching
435 http 304 https://registry.npmjs.org/after
436 verbose headers { date: 'Thu, 08 Mar 2018 18:56:32 GMT',
436 verbose headers via: '1.1 varnish',
436 verbose headers 'cache-control': 'max-age=300',
436 verbose headers etag: '"59286cbb-55b2"',
436 verbose headers age: '2199',
436 verbose headers connection: 'keep-alive',
436 verbose headers 'x-served-by': 'cache-lcy19224-LCY',
436 verbose headers 'x-cache': 'HIT',
436 verbose headers 'x-cache-hits': '12',
436 verbose headers 'x-timer': 'S1520535393.567198,VS0,VE0',
436 verbose headers vary: 'Accept-Encoding, Accept' }
437 silly get cb [ 304,
437 silly get { date: 'Thu, 08 Mar 2018 18:56:32 GMT',
437 silly get via: '1.1 varnish',
437 silly get 'cache-control': 'max-age=300',
437 silly get etag: '"59286cbb-55b2"',
437 silly get age: '2199',
437 silly get connection: 'keep-alive',
437 silly get 'x-served-by': 'cache-lcy19224-LCY',
437 silly get 'x-cache': 'HIT',
437 silly get 'x-cache-hits': '12',
437 silly get 'x-timer': 'S1520535393.567198,VS0,VE0',
437 silly get vary: 'Accept-Encoding, Accept' } ]
438 verbose etag https://registry.npmjs.org/after from cache
439 verbose get saving after to /home/christian/.npm/registry.npmjs.org/after/.cache.json
440 silly resolveWithNewModule [email protected] checking installable status
441 silly cache add args [ 'i18n-core@^2.1.1', null ]
442 verbose cache add spec i18n-core@^2.1.1
443 silly cache add parsed spec Result {
443 silly cache add raw: 'i18n-core@^2.1.1',
443 silly cache add scope: null,
443 silly cache add name: 'i18n-core',
443 silly cache add rawSpec: '^2.1.1',
443 silly cache add spec: '>=2.1.1 <3.0.0',
443 silly cache add type: 'range' }
444 silly addNamed i18n-core@>=2.1.1 <3.0.0
445 verbose addNamed ">=2.1.1 <3.0.0" is a valid semver range for i18n-core
446 silly addNameRange { name: 'i18n-core', range: '>=2.1.1 <3.0.0', hasData: false }
447 silly mapToRegistry name i18n-core
448 silly mapToRegistry using default registry
449 silly mapToRegistry registry https://registry.npmjs.org/
450 silly mapToRegistry uri https://registry.npmjs.org/i18n-core
451 verbose addNameRange registry:https://registry.npmjs.org/i18n-core not in flight; fetching
452 verbose get https://registry.npmjs.org/colors-tmpl not expired, no request
453 silly addNameRange number 2 { name: 'colors-tmpl', range: '>=1.0.0 <1.1.0', hasData: true }
454 silly addNameRange versions [ 'colors-tmpl',
454 silly addNameRange [ '0.0.1', '0.0.2', '0.0.3', '0.1.0', '0.1.1', '1.0.0' ] ]
455 silly addNamed [email protected]
456 verbose addNamed "1.0.0" is a plain semver version for colors-tmpl
457 verbose get https://registry.npmjs.org/commandico not expired, no request
458 silly addNameRange number 2 { name: 'commandico', range: '>=2.0.2 <3.0.0', hasData: true }
459 silly addNameRange versions [ 'commandico',
459 silly addNameRange [ '1.0.0',
459 silly addNameRange '1.0.1',
459 silly addNameRange '1.0.2',
459 silly addNameRange '1.1.0',
459 silly addNameRange '1.1.1',
459 silly addNameRange '1.1.2',
459 silly addNameRange '2.0.0',
459 silly addNameRange '2.0.1',
459 silly addNameRange '2.0.2' ] ]
460 silly addNamed [email protected]
461 verbose addNamed "2.0.2" is a plain semver version for commandico
462 verbose get https://registry.npmjs.org/chalk not expired, no request
463 silly addNameRange number 2 { name: 'chalk', range: '>=1.1.3 <2.0.0', hasData: true }
464 silly addNameRange versions [ 'chalk',
464 silly addNameRange [ '0.1.0',
464 silly addNameRange '0.1.1',
464 silly addNameRange '0.2.0',
464 silly addNameRange '0.2.1',
464 silly addNameRange '0.3.0',
464 silly addNameRange '0.4.0',
464 silly addNameRange '0.5.0',
464 silly addNameRange '0.5.1',
464 silly addNameRange '1.0.0',
464 silly addNameRange '1.1.0',
464 silly addNameRange '1.1.1',
464 silly addNameRange '1.1.2',
464 silly addNameRange '1.1.3',
464 silly addNameRange '2.0.0',
464 silly addNameRange '2.0.1',
464 silly addNameRange '2.1.0',
464 silly addNameRange '2.2.0',
464 silly addNameRange '2.2.2',
464 silly addNameRange '2.3.0',
464 silly addNameRange '2.3.1',
464 silly addNameRange '2.3.2' ] ]
465 silly addNamed [email protected]
466 verbose addNamed "1.1.3" is a plain semver version for chalk
467 verbose get https://registry.npmjs.org/i18n-core not expired, no request
468 silly addNameRange number 2 { name: 'i18n-core', range: '>=2.1.1 <3.0.0', hasData: true }
469 silly addNameRange versions [ 'i18n-core',
469 silly addNameRange [ '1.0.0',
469 silly addNameRange '1.0.1',
469 silly addNameRange '1.1.0',
469 silly addNameRange '1.2.0',
469 silly addNameRange '1.3.0',
469 silly addNameRange '1.3.1',
469 silly addNameRange '1.3.2',
469 silly addNameRange '1.3.3',
469 silly addNameRange '2.0.0',
469 silly addNameRange '2.1.0',
469 silly addNameRange '2.1.1',
469 silly addNameRange '3.0.0',
469 silly addNameRange '3.1.0',
469 silly addNameRange '3.1.1',
469 silly addNameRange '3.1.2',
469 silly addNameRange '3.1.3',
469 silly addNameRange '3.1.5',
469 silly addNameRange '3.1.6',
469 silly addNameRange '3.2.0' ] ]
470 silly addNamed [email protected]
471 verbose addNamed "2.1.1" is a plain semver version for i18n-core
472 silly cache afterAdd [email protected]
473 verbose afterAdd /home/christian/.npm/colors-tmpl/1.0.0/package/package.json not in flight; writing
474 http 304 https://registry.npmjs.org/latest-version
475 verbose headers { date: 'Thu, 08 Mar 2018 18:56:32 GMT',
475 verbose headers via: '1.1 varnish',
475 verbose headers 'cache-control': 'max-age=300',
475 verbose headers etag: '"5a144796-331c"',
475 verbose headers age: '11383',
475 verbose headers connection: 'keep-alive',
475 verbose headers 'x-served-by': 'cache-lcy19220-LCY',
475 verbose headers 'x-cache': 'HIT',
475 verbose headers 'x-cache-hits': '46',
475 verbose headers 'x-timer': 'S1520535393.568179,VS0,VE0',
475 verbose headers vary: 'Accept-Encoding, Accept' }
476 silly get cb [ 304,
476 silly get { date: 'Thu, 08 Mar 2018 18:56:32 GMT',
476 silly get via: '1.1 varnish',
476 silly get 'cache-control': 'max-age=300',
476 silly get etag: '"5a144796-331c"',
476 silly get age: '11383',
476 silly get connection: 'keep-alive',
476 silly get 'x-served-by': 'cache-lcy19220-LCY',
476 silly get 'x-cache': 'HIT',
476 silly get 'x-cache-hits': '46',
476 silly get 'x-timer': 'S1520535393.568179,VS0,VE0',
476 silly get vary: 'Accept-Encoding, Accept' } ]
477 verbose etag https://registry.npmjs.org/latest-version from cache
478 verbose get saving latest-version to /home/christian/.npm/registry.npmjs.org/latest-version/.cache.json
479 http 304 https://registry.npmjs.org/split
480 verbose headers { date: 'Thu, 08 Mar 2018 18:56:32 GMT',
480 verbose headers via: '1.1 varnish',
480 verbose headers 'cache-control': 'max-age=300',
480 verbose headers etag: '"5a55be39-5bca"',
480 verbose headers age: '5085',
480 verbose headers connection: 'keep-alive',
480 verbose headers 'x-served-by': 'cache-lcy19245-LCY',
480 verbose headers 'x-cache': 'HIT',