-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnpm-debug.log
More file actions
3970 lines (3970 loc) · 221 KB
/
npm-debug.log
File metadata and controls
3970 lines (3970 loc) · 221 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
0 info it worked if it ends with ok
1 verbose cli [ '/usr/bin/node', '/usr/bin/npm', 'install', 'forever', '-g' ]
2 info using npm@3.5.2
3 info using node@v8.10.0
4 silly loadCurrentTree Starting
5 silly install loadCurrentTree
6 silly install readGlobalPackageData
7 silly fetchPackageMetaData forever
8 silly fetchNamedPackageData forever
9 silly mapToRegistry name forever
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry uri https://registry.npmjs.org/forever
13 verbose request uri https://registry.npmjs.org/forever
14 verbose request no auth needed
15 info attempt registry request try #1 at 10:43:22 AM
16 verbose request id 866f094c73c9af53
17 http request GET https://registry.npmjs.org/forever
18 http 200 https://registry.npmjs.org/forever
19 verbose headers { date: 'Thu, 19 Dec 2019 18:43:22 GMT',
19 verbose headers 'content-type': 'application/json',
19 verbose headers 'transfer-encoding': 'chunked',
19 verbose headers connection: 'keep-alive',
19 verbose headers 'set-cookie':
19 verbose headers [ '__cfduid=d444f8e02507b1b763f553f140ac310491576781002; expires=Sat, 18-Jan-20 18:43:22 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
19 verbose headers 'cf-ray': '547b8593b9307890-LAX',
19 verbose headers age: '6540',
19 verbose headers 'cache-control': 'public, max-age=300',
19 verbose headers etag: 'W/"17231a2a0e5f04d5583ec157d40f32dd"',
19 verbose headers 'last-modified': 'Wed, 03 Apr 2019 22:09:04 GMT',
19 verbose headers vary: 'accept-encoding, accept',
19 verbose headers 'cf-cache-status': 'HIT',
19 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
19 verbose headers server: 'cloudflare',
19 verbose headers 'content-encoding': 'gzip' }
20 silly get cb [ 200,
20 silly get { date: 'Thu, 19 Dec 2019 18:43:22 GMT',
20 silly get 'content-type': 'application/json',
20 silly get 'transfer-encoding': 'chunked',
20 silly get connection: 'keep-alive',
20 silly get 'set-cookie':
20 silly get [ '__cfduid=d444f8e02507b1b763f553f140ac310491576781002; expires=Sat, 18-Jan-20 18:43:22 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
20 silly get 'cf-ray': '547b8593b9307890-LAX',
20 silly get age: '6540',
20 silly get 'cache-control': 'public, max-age=300',
20 silly get etag: 'W/"17231a2a0e5f04d5583ec157d40f32dd"',
20 silly get 'last-modified': 'Wed, 03 Apr 2019 22:09:04 GMT',
20 silly get vary: 'accept-encoding, accept',
20 silly get 'cf-cache-status': 'HIT',
20 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
20 silly get server: 'cloudflare',
20 silly get 'content-encoding': 'gzip' } ]
21 verbose get saving forever to /root/.npm/registry.npmjs.org/forever/.cache.json
22 verbose makeDirectory /root/.npm creation not in flight; initializing
23 silly makeDirectory /root/.npm uid: 1000 gid: 1000
24 silly install normalizeTree
25 silly loadCurrentTree Finishing
26 silly loadIdealTree Starting
27 silly install loadIdealTree
28 silly cloneCurrentTree Starting
29 silly install cloneCurrentTreeToIdealTree
30 silly cloneCurrentTree Finishing
31 silly loadShrinkwrap Starting
32 silly install loadShrinkwrap
33 silly loadShrinkwrap Finishing
34 silly loadAllDepsIntoIdealTree Starting
35 silly install loadAllDepsIntoIdealTree
36 silly resolveWithNewModule forever@1.0.0 checking installable status
37 silly cache add args [ 'forever', null ]
38 verbose cache add spec forever
39 silly cache add parsed spec Result {
39 silly cache add raw: 'forever',
39 silly cache add scope: null,
39 silly cache add name: 'forever',
39 silly cache add rawSpec: '',
39 silly cache add spec: 'latest',
39 silly cache add type: 'tag' }
40 silly addNamed forever@latest
41 verbose addNamed "latest" is being treated as a dist-tag for forever
42 info addNameTag [ 'forever', 'latest' ]
43 silly mapToRegistry name forever
44 silly mapToRegistry using default registry
45 silly mapToRegistry registry https://registry.npmjs.org/
46 silly mapToRegistry uri https://registry.npmjs.org/forever
47 verbose addNameTag registry:https://registry.npmjs.org/forever not in flight; fetching
48 verbose get https://registry.npmjs.org/forever not expired, no request
49 silly addNameTag next cb for forever with tag latest
50 silly addNamed forever@1.0.0
51 verbose addNamed "1.0.0" is a plain semver version for forever
52 silly mapToRegistry name forever
53 silly mapToRegistry using default registry
54 silly mapToRegistry registry https://registry.npmjs.org/
55 silly mapToRegistry uri https://registry.npmjs.org/forever
56 verbose addRemoteTarball https://registry.npmjs.org/forever/-/forever-1.0.0.tgz not in flight; adding
57 verbose addRemoteTarball [ 'https://registry.npmjs.org/forever/-/forever-1.0.0.tgz',
57 verbose addRemoteTarball 'd6dc092da8e44da838318fabe45205b191f2a094' ]
58 info retry fetch attempt 1 at 10:43:22 AM
59 info attempt registry request try #1 at 10:43:22 AM
60 http fetch GET https://registry.npmjs.org/forever/-/forever-1.0.0.tgz
61 http fetch 200 https://registry.npmjs.org/forever/-/forever-1.0.0.tgz
62 silly fetchAndShaCheck shasum d6dc092da8e44da838318fabe45205b191f2a094
63 verbose addTmpTarball /tmp/npm-13392-3460090f/registry.npmjs.org/forever/-/forever-1.0.0.tgz not in flight; adding
64 verbose addTmpTarball already have metadata; skipping unpack for forever@1.0.0
65 silly cache afterAdd forever@1.0.0
66 verbose afterAdd /root/.npm/forever/1.0.0/package/package.json not in flight; writing
67 verbose afterAdd /root/.npm/forever/1.0.0/package/package.json written
68 silly fetchNamedPackageData async
69 silly mapToRegistry name async
70 silly mapToRegistry using default registry
71 silly mapToRegistry registry https://registry.npmjs.org/
72 silly mapToRegistry uri https://registry.npmjs.org/async
73 silly fetchNamedPackageData cliff
74 silly mapToRegistry name cliff
75 silly mapToRegistry using default registry
76 silly mapToRegistry registry https://registry.npmjs.org/
77 silly mapToRegistry uri https://registry.npmjs.org/cliff
78 silly fetchNamedPackageData clone
79 silly mapToRegistry name clone
80 silly mapToRegistry using default registry
81 silly mapToRegistry registry https://registry.npmjs.org/
82 silly mapToRegistry uri https://registry.npmjs.org/clone
83 silly fetchNamedPackageData colors
84 silly mapToRegistry name colors
85 silly mapToRegistry using default registry
86 silly mapToRegistry registry https://registry.npmjs.org/
87 silly mapToRegistry uri https://registry.npmjs.org/colors
88 silly fetchNamedPackageData flatiron
89 silly mapToRegistry name flatiron
90 silly mapToRegistry using default registry
91 silly mapToRegistry registry https://registry.npmjs.org/
92 silly mapToRegistry uri https://registry.npmjs.org/flatiron
93 silly fetchNamedPackageData forever-monitor
94 silly mapToRegistry name forever-monitor
95 silly mapToRegistry using default registry
96 silly mapToRegistry registry https://registry.npmjs.org/
97 silly mapToRegistry uri https://registry.npmjs.org/forever-monitor
98 silly fetchNamedPackageData nconf
99 silly mapToRegistry name nconf
100 silly mapToRegistry using default registry
101 silly mapToRegistry registry https://registry.npmjs.org/
102 silly mapToRegistry uri https://registry.npmjs.org/nconf
103 silly fetchNamedPackageData mkdirp
104 silly mapToRegistry name mkdirp
105 silly mapToRegistry using default registry
106 silly mapToRegistry registry https://registry.npmjs.org/
107 silly mapToRegistry uri https://registry.npmjs.org/mkdirp
108 silly fetchNamedPackageData nssocket
109 silly mapToRegistry name nssocket
110 silly mapToRegistry using default registry
111 silly mapToRegistry registry https://registry.npmjs.org/
112 silly mapToRegistry uri https://registry.npmjs.org/nssocket
113 silly fetchNamedPackageData object-assign
114 silly mapToRegistry name object-assign
115 silly mapToRegistry using default registry
116 silly mapToRegistry registry https://registry.npmjs.org/
117 silly mapToRegistry uri https://registry.npmjs.org/object-assign
118 silly fetchNamedPackageData optimist
119 silly mapToRegistry name optimist
120 silly mapToRegistry using default registry
121 silly mapToRegistry registry https://registry.npmjs.org/
122 silly mapToRegistry uri https://registry.npmjs.org/optimist
123 silly fetchNamedPackageData path-is-absolute
124 silly mapToRegistry name path-is-absolute
125 silly mapToRegistry using default registry
126 silly mapToRegistry registry https://registry.npmjs.org/
127 silly mapToRegistry uri https://registry.npmjs.org/path-is-absolute
128 silly fetchNamedPackageData prettyjson
129 silly mapToRegistry name prettyjson
130 silly mapToRegistry using default registry
131 silly mapToRegistry registry https://registry.npmjs.org/
132 silly mapToRegistry uri https://registry.npmjs.org/prettyjson
133 silly fetchNamedPackageData shush
134 silly mapToRegistry name shush
135 silly mapToRegistry using default registry
136 silly mapToRegistry registry https://registry.npmjs.org/
137 silly mapToRegistry uri https://registry.npmjs.org/shush
138 silly fetchNamedPackageData utile
139 silly mapToRegistry name utile
140 silly mapToRegistry using default registry
141 silly mapToRegistry registry https://registry.npmjs.org/
142 silly mapToRegistry uri https://registry.npmjs.org/utile
143 silly fetchNamedPackageData winston
144 silly mapToRegistry name winston
145 silly mapToRegistry using default registry
146 silly mapToRegistry registry https://registry.npmjs.org/
147 silly mapToRegistry uri https://registry.npmjs.org/winston
148 verbose request uri https://registry.npmjs.org/async
149 verbose request no auth needed
150 info attempt registry request try #1 at 10:43:23 AM
151 http request GET https://registry.npmjs.org/async
152 verbose request uri https://registry.npmjs.org/cliff
153 verbose request no auth needed
154 info attempt registry request try #1 at 10:43:23 AM
155 http request GET https://registry.npmjs.org/cliff
156 verbose request uri https://registry.npmjs.org/clone
157 verbose request no auth needed
158 info attempt registry request try #1 at 10:43:23 AM
159 http request GET https://registry.npmjs.org/clone
160 verbose request uri https://registry.npmjs.org/colors
161 verbose request no auth needed
162 info attempt registry request try #1 at 10:43:23 AM
163 http request GET https://registry.npmjs.org/colors
164 verbose request uri https://registry.npmjs.org/flatiron
165 verbose request no auth needed
166 info attempt registry request try #1 at 10:43:23 AM
167 http request GET https://registry.npmjs.org/flatiron
168 verbose request uri https://registry.npmjs.org/forever-monitor
169 verbose request no auth needed
170 info attempt registry request try #1 at 10:43:23 AM
171 http request GET https://registry.npmjs.org/forever-monitor
172 verbose request uri https://registry.npmjs.org/nconf
173 verbose request no auth needed
174 info attempt registry request try #1 at 10:43:23 AM
175 http request GET https://registry.npmjs.org/nconf
176 verbose request uri https://registry.npmjs.org/mkdirp
177 verbose request no auth needed
178 info attempt registry request try #1 at 10:43:23 AM
179 http request GET https://registry.npmjs.org/mkdirp
180 verbose request uri https://registry.npmjs.org/nssocket
181 verbose request no auth needed
182 info attempt registry request try #1 at 10:43:23 AM
183 http request GET https://registry.npmjs.org/nssocket
184 verbose request uri https://registry.npmjs.org/object-assign
185 verbose request no auth needed
186 info attempt registry request try #1 at 10:43:23 AM
187 http request GET https://registry.npmjs.org/object-assign
188 verbose request uri https://registry.npmjs.org/optimist
189 verbose request no auth needed
190 info attempt registry request try #1 at 10:43:23 AM
191 http request GET https://registry.npmjs.org/optimist
192 verbose request uri https://registry.npmjs.org/path-is-absolute
193 verbose request no auth needed
194 info attempt registry request try #1 at 10:43:23 AM
195 http request GET https://registry.npmjs.org/path-is-absolute
196 verbose request uri https://registry.npmjs.org/prettyjson
197 verbose request no auth needed
198 info attempt registry request try #1 at 10:43:23 AM
199 http request GET https://registry.npmjs.org/prettyjson
200 verbose request uri https://registry.npmjs.org/shush
201 verbose request no auth needed
202 info attempt registry request try #1 at 10:43:23 AM
203 http request GET https://registry.npmjs.org/shush
204 verbose request uri https://registry.npmjs.org/utile
205 verbose request no auth needed
206 info attempt registry request try #1 at 10:43:23 AM
207 http request GET https://registry.npmjs.org/utile
208 verbose request uri https://registry.npmjs.org/winston
209 verbose request no auth needed
210 info attempt registry request try #1 at 10:43:23 AM
211 http request GET https://registry.npmjs.org/winston
212 http 200 https://registry.npmjs.org/async
213 verbose headers { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
213 verbose headers 'content-type': 'application/json',
213 verbose headers 'transfer-encoding': 'chunked',
213 verbose headers connection: 'keep-alive',
213 verbose headers 'set-cookie':
213 verbose headers [ '__cfduid=da57599c6f9ea744ce8e1386644e87b0c1576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
213 verbose headers 'cf-ray': '547b859519df7890-LAX',
213 verbose headers age: '1982',
213 verbose headers 'cache-control': 'public, max-age=300',
213 verbose headers etag: 'W/"ff94a965a5ddd7db176030febf3bef3b"',
213 verbose headers 'last-modified': 'Wed, 17 Jul 2019 17:44:33 GMT',
213 verbose headers vary: 'accept-encoding, accept',
213 verbose headers 'cf-cache-status': 'HIT',
213 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
213 verbose headers server: 'cloudflare',
213 verbose headers 'content-encoding': 'gzip' }
214 silly get cb [ 200,
214 silly get { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
214 silly get 'content-type': 'application/json',
214 silly get 'transfer-encoding': 'chunked',
214 silly get connection: 'keep-alive',
214 silly get 'set-cookie':
214 silly get [ '__cfduid=da57599c6f9ea744ce8e1386644e87b0c1576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
214 silly get 'cf-ray': '547b859519df7890-LAX',
214 silly get age: '1982',
214 silly get 'cache-control': 'public, max-age=300',
214 silly get etag: 'W/"ff94a965a5ddd7db176030febf3bef3b"',
214 silly get 'last-modified': 'Wed, 17 Jul 2019 17:44:33 GMT',
214 silly get vary: 'accept-encoding, accept',
214 silly get 'cf-cache-status': 'HIT',
214 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
214 silly get server: 'cloudflare',
214 silly get 'content-encoding': 'gzip' } ]
215 verbose get saving async to /root/.npm/registry.npmjs.org/async/.cache.json
216 silly resolveWithNewModule async@0.2.10 checking installable status
217 silly cache add args [ 'async@~0.2.9', null ]
218 verbose cache add spec async@~0.2.9
219 silly cache add parsed spec Result {
219 silly cache add raw: 'async@~0.2.9',
219 silly cache add scope: null,
219 silly cache add name: 'async',
219 silly cache add rawSpec: '~0.2.9',
219 silly cache add spec: '>=0.2.9 <0.3.0',
219 silly cache add type: 'range' }
220 silly addNamed async@>=0.2.9 <0.3.0
221 verbose addNamed ">=0.2.9 <0.3.0" is a valid semver range for async
222 silly addNameRange { name: 'async', range: '>=0.2.9 <0.3.0', hasData: false }
223 silly mapToRegistry name async
224 silly mapToRegistry using default registry
225 silly mapToRegistry registry https://registry.npmjs.org/
226 silly mapToRegistry uri https://registry.npmjs.org/async
227 verbose addNameRange registry:https://registry.npmjs.org/async not in flight; fetching
228 verbose get https://registry.npmjs.org/async not expired, no request
229 silly addNameRange number 2 { name: 'async', range: '>=0.2.9 <0.3.0', hasData: true }
230 silly addNameRange versions [ 'async',
230 silly addNameRange [ '0.1.0',
230 silly addNameRange '0.1.1',
230 silly addNameRange '0.1.2',
230 silly addNameRange '0.1.3',
230 silly addNameRange '0.1.4',
230 silly addNameRange '0.1.5',
230 silly addNameRange '0.1.6',
230 silly addNameRange '0.1.7',
230 silly addNameRange '0.1.8',
230 silly addNameRange '0.1.9',
230 silly addNameRange '0.1.10',
230 silly addNameRange '0.1.11',
230 silly addNameRange '0.1.12',
230 silly addNameRange '0.1.13',
230 silly addNameRange '0.1.14',
230 silly addNameRange '0.1.15',
230 silly addNameRange '0.1.16',
230 silly addNameRange '0.1.17',
230 silly addNameRange '0.1.18',
230 silly addNameRange '0.1.19',
230 silly addNameRange '0.1.20',
230 silly addNameRange '0.1.21',
230 silly addNameRange '0.1.22',
230 silly addNameRange '0.2.0',
230 silly addNameRange '0.2.1',
230 silly addNameRange '0.2.2',
230 silly addNameRange '0.2.3',
230 silly addNameRange '0.2.4',
230 silly addNameRange '0.2.5',
230 silly addNameRange '0.2.6',
230 silly addNameRange '0.2.7',
230 silly addNameRange '0.2.8',
230 silly addNameRange '0.2.9',
230 silly addNameRange '0.2.10',
230 silly addNameRange '0.3.0',
230 silly addNameRange '0.4.0',
230 silly addNameRange '0.4.1',
230 silly addNameRange '0.5.0',
230 silly addNameRange '0.6.0',
230 silly addNameRange '0.6.1',
230 silly addNameRange '0.6.2',
230 silly addNameRange '0.7.0',
230 silly addNameRange '0.8.0',
230 silly addNameRange '0.9.0',
230 silly addNameRange '0.9.2',
230 silly addNameRange '1.0.0',
230 silly addNameRange '1.1.0',
230 silly addNameRange '1.2.0',
230 silly addNameRange '1.1.1',
230 silly addNameRange '1.2.1',
230 silly addNameRange '1.3.0',
230 silly addNameRange '1.4.0',
230 silly addNameRange '1.4.1',
230 silly addNameRange '1.4.2',
230 silly addNameRange '1.5.0',
230 silly addNameRange '1.5.1',
230 silly addNameRange '1.5.2',
230 silly addNameRange '2.0.0-alpha.0',
230 silly addNameRange '2.0.0-rc.1',
230 silly addNameRange '2.0.0-rc.2',
230 silly addNameRange '2.0.0-rc.3',
230 silly addNameRange '2.0.0-rc.4',
230 silly addNameRange '2.0.0-rc.5',
230 silly addNameRange '2.0.0-rc.6',
230 silly addNameRange '2.0.0',
230 silly addNameRange '2.0.1',
230 silly addNameRange '2.1.0',
230 silly addNameRange '2.1.1',
230 silly addNameRange '2.1.2',
230 silly addNameRange '2.1.4',
230 silly addNameRange '2.1.5',
230 silly addNameRange '2.2.0',
230 silly addNameRange '2.3.0',
230 silly addNameRange '2.4.0',
230 silly addNameRange '2.4.1',
230 silly addNameRange '2.5.0',
230 silly addNameRange '2.6.0',
230 silly addNameRange '2.6.1',
230 silly addNameRange '3.0.1-0',
230 silly addNameRange '2.6.2',
230 silly addNameRange '3.0.0',
230 silly addNameRange '3.0.1',
230 silly addNameRange '3.1.0',
230 silly addNameRange '2.6.3' ] ]
231 silly addNamed async@0.2.10
232 verbose addNamed "0.2.10" is a plain semver version for async
233 silly mapToRegistry name async
234 silly mapToRegistry using default registry
235 silly mapToRegistry registry https://registry.npmjs.org/
236 silly mapToRegistry uri https://registry.npmjs.org/async
237 verbose addRemoteTarball https://registry.npmjs.org/async/-/async-0.2.10.tgz not in flight; adding
238 verbose addRemoteTarball [ 'https://registry.npmjs.org/async/-/async-0.2.10.tgz',
238 verbose addRemoteTarball 'b6bbe0b0674b9d719708ca38de8c237cb526c3d1' ]
239 info retry fetch attempt 1 at 10:43:23 AM
240 info attempt registry request try #1 at 10:43:23 AM
241 http fetch GET https://registry.npmjs.org/async/-/async-0.2.10.tgz
242 http 200 https://registry.npmjs.org/flatiron
243 verbose headers { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
243 verbose headers 'content-type': 'application/json; charset=UTF-8',
243 verbose headers 'transfer-encoding': 'chunked',
243 verbose headers connection: 'keep-alive',
243 verbose headers 'set-cookie':
243 verbose headers [ '__cfduid=d77b947ec7e5de9369288d9686bbda6681576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
243 verbose headers 'cf-ray': '547b85956e857872-LAX',
243 verbose headers age: '21',
243 verbose headers 'cache-control': 'public, max-age=300',
243 verbose headers etag: 'W/"f03f5abcf8251b2916c2c26d39cba68f"',
243 verbose headers 'last-modified': 'Sun, 27 May 2018 00:52:32 GMT',
243 verbose headers vary: 'accept-encoding, accept',
243 verbose headers 'cf-cache-status': 'HIT',
243 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
243 verbose headers server: 'cloudflare',
243 verbose headers 'content-encoding': 'gzip' }
244 silly get cb [ 200,
244 silly get { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
244 silly get 'content-type': 'application/json; charset=UTF-8',
244 silly get 'transfer-encoding': 'chunked',
244 silly get connection: 'keep-alive',
244 silly get 'set-cookie':
244 silly get [ '__cfduid=d77b947ec7e5de9369288d9686bbda6681576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
244 silly get 'cf-ray': '547b85956e857872-LAX',
244 silly get age: '21',
244 silly get 'cache-control': 'public, max-age=300',
244 silly get etag: 'W/"f03f5abcf8251b2916c2c26d39cba68f"',
244 silly get 'last-modified': 'Sun, 27 May 2018 00:52:32 GMT',
244 silly get vary: 'accept-encoding, accept',
244 silly get 'cf-cache-status': 'HIT',
244 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
244 silly get server: 'cloudflare',
244 silly get 'content-encoding': 'gzip' } ]
245 verbose get saving flatiron to /root/.npm/registry.npmjs.org/flatiron/.cache.json
246 http 200 https://registry.npmjs.org/path-is-absolute
247 verbose headers { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
247 verbose headers 'content-type': 'application/json',
247 verbose headers 'transfer-encoding': 'chunked',
247 verbose headers connection: 'keep-alive',
247 verbose headers 'set-cookie':
247 verbose headers [ '__cfduid=d339385f7c924559c22fec56fd7eab8f11576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
247 verbose headers 'cf-ray': '547b859579dee7e9-LAX',
247 verbose headers age: '6627',
247 verbose headers 'cache-control': 'public, max-age=300',
247 verbose headers etag: 'W/"25aaada20f078477a61dfb4673202332"',
247 verbose headers 'last-modified': 'Sat, 05 Jan 2019 02:56:57 GMT',
247 verbose headers vary: 'accept-encoding, accept',
247 verbose headers 'cf-cache-status': 'HIT',
247 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
247 verbose headers server: 'cloudflare',
247 verbose headers 'content-encoding': 'gzip' }
248 silly get cb [ 200,
248 silly get { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
248 silly get 'content-type': 'application/json',
248 silly get 'transfer-encoding': 'chunked',
248 silly get connection: 'keep-alive',
248 silly get 'set-cookie':
248 silly get [ '__cfduid=d339385f7c924559c22fec56fd7eab8f11576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
248 silly get 'cf-ray': '547b859579dee7e9-LAX',
248 silly get age: '6627',
248 silly get 'cache-control': 'public, max-age=300',
248 silly get etag: 'W/"25aaada20f078477a61dfb4673202332"',
248 silly get 'last-modified': 'Sat, 05 Jan 2019 02:56:57 GMT',
248 silly get vary: 'accept-encoding, accept',
248 silly get 'cf-cache-status': 'HIT',
248 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
248 silly get server: 'cloudflare',
248 silly get 'content-encoding': 'gzip' } ]
249 verbose get saving path-is-absolute to /root/.npm/registry.npmjs.org/path-is-absolute/.cache.json
250 http 200 https://registry.npmjs.org/utile
251 verbose headers { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
251 verbose headers 'content-type': 'application/json; charset=UTF-8',
251 verbose headers 'transfer-encoding': 'chunked',
251 verbose headers connection: 'keep-alive',
251 verbose headers 'set-cookie':
251 verbose headers [ '__cfduid=d3845f8933ccd0c10f8b6e36dc3fe58dc1576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
251 verbose headers 'cf-ray': '547b859568de996b-LAX',
251 verbose headers age: '6134',
251 verbose headers 'cache-control': 'public, max-age=300',
251 verbose headers etag: 'W/"4164d38dc81cc18f7b1c8e8ca81bdac5"',
251 verbose headers 'last-modified': 'Sun, 27 May 2018 20:38:43 GMT',
251 verbose headers vary: 'accept-encoding, accept',
251 verbose headers 'cf-cache-status': 'HIT',
251 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
251 verbose headers server: 'cloudflare',
251 verbose headers 'content-encoding': 'gzip' }
252 silly get cb [ 200,
252 silly get { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
252 silly get 'content-type': 'application/json; charset=UTF-8',
252 silly get 'transfer-encoding': 'chunked',
252 silly get connection: 'keep-alive',
252 silly get 'set-cookie':
252 silly get [ '__cfduid=d3845f8933ccd0c10f8b6e36dc3fe58dc1576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
252 silly get 'cf-ray': '547b859568de996b-LAX',
252 silly get age: '6134',
252 silly get 'cache-control': 'public, max-age=300',
252 silly get etag: 'W/"4164d38dc81cc18f7b1c8e8ca81bdac5"',
252 silly get 'last-modified': 'Sun, 27 May 2018 20:38:43 GMT',
252 silly get vary: 'accept-encoding, accept',
252 silly get 'cf-cache-status': 'HIT',
252 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
252 silly get server: 'cloudflare',
252 silly get 'content-encoding': 'gzip' } ]
253 verbose get saving utile to /root/.npm/registry.npmjs.org/utile/.cache.json
254 http 200 https://registry.npmjs.org/shush
255 verbose headers { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
255 verbose headers 'content-type': 'application/json; charset=UTF-8',
255 verbose headers 'transfer-encoding': 'chunked',
255 verbose headers connection: 'keep-alive',
255 verbose headers 'set-cookie':
255 verbose headers [ '__cfduid=d5485e8f7350a6fd15443c75e2755836e1576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
255 verbose headers 'cf-ray': '547b85956d5678f0-LAX',
255 verbose headers age: '6538',
255 verbose headers 'cache-control': 'public, max-age=300',
255 verbose headers etag: 'W/"03817860120a941db98e20219b704ec5"',
255 verbose headers 'last-modified': 'Sun, 27 May 2018 17:15:33 GMT',
255 verbose headers vary: 'accept-encoding, accept',
255 verbose headers 'cf-cache-status': 'HIT',
255 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
255 verbose headers server: 'cloudflare',
255 verbose headers 'content-encoding': 'gzip' }
256 silly get cb [ 200,
256 silly get { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
256 silly get 'content-type': 'application/json; charset=UTF-8',
256 silly get 'transfer-encoding': 'chunked',
256 silly get connection: 'keep-alive',
256 silly get 'set-cookie':
256 silly get [ '__cfduid=d5485e8f7350a6fd15443c75e2755836e1576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
256 silly get 'cf-ray': '547b85956d5678f0-LAX',
256 silly get age: '6538',
256 silly get 'cache-control': 'public, max-age=300',
256 silly get etag: 'W/"03817860120a941db98e20219b704ec5"',
256 silly get 'last-modified': 'Sun, 27 May 2018 17:15:33 GMT',
256 silly get vary: 'accept-encoding, accept',
256 silly get 'cf-cache-status': 'HIT',
256 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
256 silly get server: 'cloudflare',
256 silly get 'content-encoding': 'gzip' } ]
257 verbose get saving shush to /root/.npm/registry.npmjs.org/shush/.cache.json
258 http 200 https://registry.npmjs.org/object-assign
259 verbose headers { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
259 verbose headers 'content-type': 'application/json; charset=UTF-8',
259 verbose headers 'transfer-encoding': 'chunked',
259 verbose headers connection: 'keep-alive',
259 verbose headers 'set-cookie':
259 verbose headers [ '__cfduid=d76ee2ed155cf0b90da6b693bbffcb2fa1576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
259 verbose headers 'cf-ray': '547b85957bd9e7a0-LAX',
259 verbose headers age: '3407',
259 verbose headers 'cache-control': 'public, max-age=300',
259 verbose headers etag: 'W/"d7609bf70dc4cde24cf456be05d80a7c"',
259 verbose headers 'last-modified': 'Sun, 27 May 2018 10:57:26 GMT',
259 verbose headers vary: 'accept-encoding, accept',
259 verbose headers 'cf-cache-status': 'HIT',
259 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
259 verbose headers server: 'cloudflare',
259 verbose headers 'content-encoding': 'gzip' }
260 silly get cb [ 200,
260 silly get { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
260 silly get 'content-type': 'application/json; charset=UTF-8',
260 silly get 'transfer-encoding': 'chunked',
260 silly get connection: 'keep-alive',
260 silly get 'set-cookie':
260 silly get [ '__cfduid=d76ee2ed155cf0b90da6b693bbffcb2fa1576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
260 silly get 'cf-ray': '547b85957bd9e7a0-LAX',
260 silly get age: '3407',
260 silly get 'cache-control': 'public, max-age=300',
260 silly get etag: 'W/"d7609bf70dc4cde24cf456be05d80a7c"',
260 silly get 'last-modified': 'Sun, 27 May 2018 10:57:26 GMT',
260 silly get vary: 'accept-encoding, accept',
260 silly get 'cf-cache-status': 'HIT',
260 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
260 silly get server: 'cloudflare',
260 silly get 'content-encoding': 'gzip' } ]
261 verbose get saving object-assign to /root/.npm/registry.npmjs.org/object-assign/.cache.json
262 http 200 https://registry.npmjs.org/mkdirp
263 verbose headers { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
263 verbose headers 'content-type': 'application/json',
263 verbose headers 'transfer-encoding': 'chunked',
263 verbose headers connection: 'keep-alive',
263 verbose headers 'set-cookie':
263 verbose headers [ '__cfduid=d6879f253e99905af3dd7d06a3094fb681576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
263 verbose headers 'cf-ray': '547b85957a65eef6-LAX',
263 verbose headers age: '2975',
263 verbose headers 'cache-control': 'public, max-age=300',
263 verbose headers etag: 'W/"8fdcd09d1fddb060f7769b36566bce53"',
263 verbose headers 'last-modified': 'Fri, 12 Jul 2019 00:12:42 GMT',
263 verbose headers vary: 'accept-encoding, accept',
263 verbose headers 'cf-cache-status': 'HIT',
263 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
263 verbose headers server: 'cloudflare',
263 verbose headers 'content-encoding': 'gzip' }
264 silly get cb [ 200,
264 silly get { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
264 silly get 'content-type': 'application/json',
264 silly get 'transfer-encoding': 'chunked',
264 silly get connection: 'keep-alive',
264 silly get 'set-cookie':
264 silly get [ '__cfduid=d6879f253e99905af3dd7d06a3094fb681576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
264 silly get 'cf-ray': '547b85957a65eef6-LAX',
264 silly get age: '2975',
264 silly get 'cache-control': 'public, max-age=300',
264 silly get etag: 'W/"8fdcd09d1fddb060f7769b36566bce53"',
264 silly get 'last-modified': 'Fri, 12 Jul 2019 00:12:42 GMT',
264 silly get vary: 'accept-encoding, accept',
264 silly get 'cf-cache-status': 'HIT',
264 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
264 silly get server: 'cloudflare',
264 silly get 'content-encoding': 'gzip' } ]
265 verbose get saving mkdirp to /root/.npm/registry.npmjs.org/mkdirp/.cache.json
266 http 200 https://registry.npmjs.org/prettyjson
267 verbose headers { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
267 verbose headers 'content-type': 'application/json; charset=UTF-8',
267 verbose headers 'transfer-encoding': 'chunked',
267 verbose headers connection: 'keep-alive',
267 verbose headers 'set-cookie':
267 verbose headers [ '__cfduid=d5fc15a6112d8e3ec1cdb60e36fdc5da61576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
267 verbose headers 'cf-ray': '547b85956ee9e7ed-LAX',
267 verbose headers age: '1625',
267 verbose headers 'cache-control': 'public, max-age=300',
267 verbose headers etag: 'W/"d377cecd1f6278fbb18032552a30371b"',
267 verbose headers 'last-modified': 'Sun, 27 May 2018 12:47:21 GMT',
267 verbose headers vary: 'accept-encoding, accept',
267 verbose headers 'cf-cache-status': 'HIT',
267 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
267 verbose headers server: 'cloudflare',
267 verbose headers 'content-encoding': 'gzip' }
268 silly get cb [ 200,
268 silly get { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
268 silly get 'content-type': 'application/json; charset=UTF-8',
268 silly get 'transfer-encoding': 'chunked',
268 silly get connection: 'keep-alive',
268 silly get 'set-cookie':
268 silly get [ '__cfduid=d5fc15a6112d8e3ec1cdb60e36fdc5da61576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
268 silly get 'cf-ray': '547b85956ee9e7ed-LAX',
268 silly get age: '1625',
268 silly get 'cache-control': 'public, max-age=300',
268 silly get etag: 'W/"d377cecd1f6278fbb18032552a30371b"',
268 silly get 'last-modified': 'Sun, 27 May 2018 12:47:21 GMT',
268 silly get vary: 'accept-encoding, accept',
268 silly get 'cf-cache-status': 'HIT',
268 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
268 silly get server: 'cloudflare',
268 silly get 'content-encoding': 'gzip' } ]
269 verbose get saving prettyjson to /root/.npm/registry.npmjs.org/prettyjson/.cache.json
270 http 200 https://registry.npmjs.org/nconf
271 verbose headers { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
271 verbose headers 'content-type': 'application/json; charset=UTF-8',
271 verbose headers 'transfer-encoding': 'chunked',
271 verbose headers connection: 'keep-alive',
271 verbose headers 'set-cookie':
271 verbose headers [ '__cfduid=dd0fe249bcb9dea2ef0d6f9aec41c12171576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
271 verbose headers 'cf-ray': '547b85957c35eaf0-LAX',
271 verbose headers age: '7185',
271 verbose headers 'cache-control': 'public, max-age=300',
271 verbose headers etag: 'W/"799672a76e3a2d5f50d9956278e51b4c"',
271 verbose headers 'last-modified': 'Fri, 03 Aug 2018 00:32:39 GMT',
271 verbose headers vary: 'accept-encoding, accept',
271 verbose headers 'cf-cache-status': 'HIT',
271 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
271 verbose headers server: 'cloudflare',
271 verbose headers 'content-encoding': 'gzip' }
272 silly get cb [ 200,
272 silly get { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
272 silly get 'content-type': 'application/json; charset=UTF-8',
272 silly get 'transfer-encoding': 'chunked',
272 silly get connection: 'keep-alive',
272 silly get 'set-cookie':
272 silly get [ '__cfduid=dd0fe249bcb9dea2ef0d6f9aec41c12171576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
272 silly get 'cf-ray': '547b85957c35eaf0-LAX',
272 silly get age: '7185',
272 silly get 'cache-control': 'public, max-age=300',
272 silly get etag: 'W/"799672a76e3a2d5f50d9956278e51b4c"',
272 silly get 'last-modified': 'Fri, 03 Aug 2018 00:32:39 GMT',
272 silly get vary: 'accept-encoding, accept',
272 silly get 'cf-cache-status': 'HIT',
272 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
272 silly get server: 'cloudflare',
272 silly get 'content-encoding': 'gzip' } ]
273 verbose get saving nconf to /root/.npm/registry.npmjs.org/nconf/.cache.json
274 http 200 https://registry.npmjs.org/colors
275 verbose headers { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
275 verbose headers 'content-type': 'application/json',
275 verbose headers 'transfer-encoding': 'chunked',
275 verbose headers connection: 'keep-alive',
275 verbose headers 'set-cookie':
275 verbose headers [ '__cfduid=d14b6d7c50ee130e0006f65d6096384e21576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
275 verbose headers 'cf-ray': '547b85957a51d362-LAX',
275 verbose headers age: '3814',
275 verbose headers 'cache-control': 'public, max-age=300',
275 verbose headers etag: 'W/"64409f180c5fe836269a137c233ef66d"',
275 verbose headers 'last-modified': 'Sun, 22 Sep 2019 23:46:11 GMT',
275 verbose headers vary: 'accept-encoding, accept',
275 verbose headers 'cf-cache-status': 'HIT',
275 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
275 verbose headers server: 'cloudflare',
275 verbose headers 'content-encoding': 'gzip' }
276 silly get cb [ 200,
276 silly get { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
276 silly get 'content-type': 'application/json',
276 silly get 'transfer-encoding': 'chunked',
276 silly get connection: 'keep-alive',
276 silly get 'set-cookie':
276 silly get [ '__cfduid=d14b6d7c50ee130e0006f65d6096384e21576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
276 silly get 'cf-ray': '547b85957a51d362-LAX',
276 silly get age: '3814',
276 silly get 'cache-control': 'public, max-age=300',
276 silly get etag: 'W/"64409f180c5fe836269a137c233ef66d"',
276 silly get 'last-modified': 'Sun, 22 Sep 2019 23:46:11 GMT',
276 silly get vary: 'accept-encoding, accept',
276 silly get 'cf-cache-status': 'HIT',
276 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
276 silly get server: 'cloudflare',
276 silly get 'content-encoding': 'gzip' } ]
277 verbose get saving colors to /root/.npm/registry.npmjs.org/colors/.cache.json
278 http fetch 200 https://registry.npmjs.org/async/-/async-0.2.10.tgz
279 silly resolveWithNewModule flatiron@0.4.3 checking installable status
280 silly cache add args [ 'flatiron@~0.4.2', null ]
281 verbose cache add spec flatiron@~0.4.2
282 silly cache add parsed spec Result {
282 silly cache add raw: 'flatiron@~0.4.2',
282 silly cache add scope: null,
282 silly cache add name: 'flatiron',
282 silly cache add rawSpec: '~0.4.2',
282 silly cache add spec: '>=0.4.2 <0.5.0',
282 silly cache add type: 'range' }
283 silly addNamed flatiron@>=0.4.2 <0.5.0
284 verbose addNamed ">=0.4.2 <0.5.0" is a valid semver range for flatiron
285 silly addNameRange { name: 'flatiron', range: '>=0.4.2 <0.5.0', hasData: false }
286 silly mapToRegistry name flatiron
287 silly mapToRegistry using default registry
288 silly mapToRegistry registry https://registry.npmjs.org/
289 silly mapToRegistry uri https://registry.npmjs.org/flatiron
290 verbose addNameRange registry:https://registry.npmjs.org/flatiron not in flight; fetching
291 silly resolveWithNewModule path-is-absolute@1.0.1 checking installable status
292 silly cache add args [ 'path-is-absolute@~1.0.0', null ]
293 verbose cache add spec path-is-absolute@~1.0.0
294 silly cache add parsed spec Result {
294 silly cache add raw: 'path-is-absolute@~1.0.0',
294 silly cache add scope: null,
294 silly cache add name: 'path-is-absolute',
294 silly cache add rawSpec: '~1.0.0',
294 silly cache add spec: '>=1.0.0 <1.1.0',
294 silly cache add type: 'range' }
295 silly addNamed path-is-absolute@>=1.0.0 <1.1.0
296 verbose addNamed ">=1.0.0 <1.1.0" is a valid semver range for path-is-absolute
297 silly addNameRange { name: 'path-is-absolute',
297 silly addNameRange range: '>=1.0.0 <1.1.0',
297 silly addNameRange hasData: false }
298 silly mapToRegistry name path-is-absolute
299 silly mapToRegistry using default registry
300 silly mapToRegistry registry https://registry.npmjs.org/
301 silly mapToRegistry uri https://registry.npmjs.org/path-is-absolute
302 verbose addNameRange registry:https://registry.npmjs.org/path-is-absolute not in flight; fetching
303 silly resolveWithNewModule utile@0.3.0 checking installable status
304 silly cache add args [ 'utile@~0.3.0', null ]
305 verbose cache add spec utile@~0.3.0
306 silly cache add parsed spec Result {
306 silly cache add raw: 'utile@~0.3.0',
306 silly cache add scope: null,
306 silly cache add name: 'utile',
306 silly cache add rawSpec: '~0.3.0',
306 silly cache add spec: '>=0.3.0 <0.4.0',
306 silly cache add type: 'range' }
307 silly addNamed utile@>=0.3.0 <0.4.0
308 verbose addNamed ">=0.3.0 <0.4.0" is a valid semver range for utile
309 silly addNameRange { name: 'utile', range: '>=0.3.0 <0.4.0', hasData: false }
310 silly mapToRegistry name utile
311 silly mapToRegistry using default registry
312 silly mapToRegistry registry https://registry.npmjs.org/
313 silly mapToRegistry uri https://registry.npmjs.org/utile
314 verbose addNameRange registry:https://registry.npmjs.org/utile not in flight; fetching
315 http 200 https://registry.npmjs.org/clone
316 verbose headers { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
316 verbose headers 'content-type': 'application/json; charset=UTF-8',
316 verbose headers 'transfer-encoding': 'chunked',
316 verbose headers connection: 'keep-alive',
316 verbose headers 'set-cookie':
316 verbose headers [ '__cfduid=df4987f22fa3e48ae819da3eeb865a83b1576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
316 verbose headers 'cf-ray': '547b859589c399d1-LAX',
316 verbose headers age: '1069',
316 verbose headers 'cache-control': 'public, max-age=300',
316 verbose headers etag: 'W/"e7f514de950dc8f5a0f30b1fd58d0420"',
316 verbose headers 'last-modified': 'Wed, 01 Aug 2018 22:56:48 GMT',
316 verbose headers vary: 'accept-encoding, accept',
316 verbose headers 'cf-cache-status': 'HIT',
316 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
316 verbose headers server: 'cloudflare',
316 verbose headers 'content-encoding': 'gzip' }
317 silly get cb [ 200,
317 silly get { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
317 silly get 'content-type': 'application/json; charset=UTF-8',
317 silly get 'transfer-encoding': 'chunked',
317 silly get connection: 'keep-alive',
317 silly get 'set-cookie':
317 silly get [ '__cfduid=df4987f22fa3e48ae819da3eeb865a83b1576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
317 silly get 'cf-ray': '547b859589c399d1-LAX',
317 silly get age: '1069',
317 silly get 'cache-control': 'public, max-age=300',
317 silly get etag: 'W/"e7f514de950dc8f5a0f30b1fd58d0420"',
317 silly get 'last-modified': 'Wed, 01 Aug 2018 22:56:48 GMT',
317 silly get vary: 'accept-encoding, accept',
317 silly get 'cf-cache-status': 'HIT',
317 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
317 silly get server: 'cloudflare',
317 silly get 'content-encoding': 'gzip' } ]
318 verbose get saving clone to /root/.npm/registry.npmjs.org/clone/.cache.json
319 http 200 https://registry.npmjs.org/nssocket
320 verbose headers { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
320 verbose headers 'content-type': 'application/json; charset=UTF-8',
320 verbose headers 'transfer-encoding': 'chunked',
320 verbose headers connection: 'keep-alive',
320 verbose headers 'set-cookie':
320 verbose headers [ '__cfduid=d92aed994edd6138c60a88c07309d50171576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
320 verbose headers 'cf-ray': '547b85956923d396-LAX',
320 verbose headers age: '4288',
320 verbose headers 'cache-control': 'public, max-age=300',
320 verbose headers etag: 'W/"246bea063178d7d89a92b461bc105707"',
320 verbose headers 'last-modified': 'Sun, 27 May 2018 10:48:26 GMT',
320 verbose headers vary: 'accept-encoding, accept',
320 verbose headers 'cf-cache-status': 'HIT',
320 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
320 verbose headers server: 'cloudflare',
320 verbose headers 'content-encoding': 'gzip' }
321 silly get cb [ 200,
321 silly get { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
321 silly get 'content-type': 'application/json; charset=UTF-8',
321 silly get 'transfer-encoding': 'chunked',
321 silly get connection: 'keep-alive',
321 silly get 'set-cookie':
321 silly get [ '__cfduid=d92aed994edd6138c60a88c07309d50171576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
321 silly get 'cf-ray': '547b85956923d396-LAX',
321 silly get age: '4288',
321 silly get 'cache-control': 'public, max-age=300',
321 silly get etag: 'W/"246bea063178d7d89a92b461bc105707"',
321 silly get 'last-modified': 'Sun, 27 May 2018 10:48:26 GMT',
321 silly get vary: 'accept-encoding, accept',
321 silly get 'cf-cache-status': 'HIT',
321 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
321 silly get server: 'cloudflare',
321 silly get 'content-encoding': 'gzip' } ]
322 verbose get saving nssocket to /root/.npm/registry.npmjs.org/nssocket/.cache.json
323 silly fetchAndShaCheck shasum b6bbe0b0674b9d719708ca38de8c237cb526c3d1
324 silly resolveWithNewModule shush@1.0.0 checking installable status
325 silly cache add args [ 'shush@^1.0.0', null ]
326 verbose cache add spec shush@^1.0.0
327 silly cache add parsed spec Result {
327 silly cache add raw: 'shush@^1.0.0',
327 silly cache add scope: null,
327 silly cache add name: 'shush',
327 silly cache add rawSpec: '^1.0.0',
327 silly cache add spec: '>=1.0.0 <2.0.0',
327 silly cache add type: 'range' }
328 silly addNamed shush@>=1.0.0 <2.0.0
329 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for shush
330 silly addNameRange { name: 'shush', range: '>=1.0.0 <2.0.0', hasData: false }
331 silly mapToRegistry name shush
332 silly mapToRegistry using default registry
333 silly mapToRegistry registry https://registry.npmjs.org/
334 silly mapToRegistry uri https://registry.npmjs.org/shush
335 verbose addNameRange registry:https://registry.npmjs.org/shush not in flight; fetching
336 http 200 https://registry.npmjs.org/winston
337 verbose headers { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
337 verbose headers 'content-type': 'application/json',
337 verbose headers 'transfer-encoding': 'chunked',
337 verbose headers connection: 'keep-alive',
337 verbose headers 'set-cookie':
337 verbose headers [ '__cfduid=df7e3016751653d44697e5ea6d29a0a5c1576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
337 verbose headers 'cf-ray': '547b85958d33e7f5-LAX',
337 verbose headers age: '3894',
337 verbose headers 'cache-control': 'public, max-age=300',
337 verbose headers etag: 'W/"7a1b1dda6b43f23234d3e6a6afe909f5"',
337 verbose headers 'last-modified': 'Thu, 27 Jun 2019 07:19:58 GMT',
337 verbose headers vary: 'accept-encoding, accept',
337 verbose headers 'cf-cache-status': 'HIT',
337 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
337 verbose headers server: 'cloudflare',
337 verbose headers 'content-encoding': 'gzip' }
338 silly get cb [ 200,
338 silly get { date: 'Thu, 19 Dec 2019 18:43:23 GMT',
338 silly get 'content-type': 'application/json',
338 silly get 'transfer-encoding': 'chunked',
338 silly get connection: 'keep-alive',
338 silly get 'set-cookie':
338 silly get [ '__cfduid=df7e3016751653d44697e5ea6d29a0a5c1576781003; expires=Sat, 18-Jan-20 18:43:23 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
338 silly get 'cf-ray': '547b85958d33e7f5-LAX',
338 silly get age: '3894',
338 silly get 'cache-control': 'public, max-age=300',
338 silly get etag: 'W/"7a1b1dda6b43f23234d3e6a6afe909f5"',
338 silly get 'last-modified': 'Thu, 27 Jun 2019 07:19:58 GMT',
338 silly get vary: 'accept-encoding, accept',
338 silly get 'cf-cache-status': 'HIT',
338 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
338 silly get server: 'cloudflare',
338 silly get 'content-encoding': 'gzip' } ]
339 verbose get saving winston to /root/.npm/registry.npmjs.org/winston/.cache.json
340 silly resolveWithNewModule object-assign@3.0.0 checking installable status
341 silly cache add args [ 'object-assign@^3.0.0', null ]
342 verbose cache add spec object-assign@^3.0.0
343 silly cache add parsed spec Result {
343 silly cache add raw: 'object-assign@^3.0.0',
343 silly cache add scope: null,
343 silly cache add name: 'object-assign',
343 silly cache add rawSpec: '^3.0.0',
343 silly cache add spec: '>=3.0.0 <4.0.0',
343 silly cache add type: 'range' }
344 silly addNamed object-assign@>=3.0.0 <4.0.0
345 verbose addNamed ">=3.0.0 <4.0.0" is a valid semver range for object-assign
346 silly addNameRange { name: 'object-assign',
346 silly addNameRange range: '>=3.0.0 <4.0.0',
346 silly addNameRange hasData: false }
347 silly mapToRegistry name object-assign
348 silly mapToRegistry using default registry
349 silly mapToRegistry registry https://registry.npmjs.org/
350 silly mapToRegistry uri https://registry.npmjs.org/object-assign
351 verbose addNameRange registry:https://registry.npmjs.org/object-assign not in flight; fetching
352 silly resolveWithNewModule mkdirp@0.5.1 checking installable status
353 silly cache add args [ 'mkdirp@0.x.x', null ]
354 verbose cache add spec mkdirp@0.x.x
355 silly cache add parsed spec Result {
355 silly cache add raw: 'mkdirp@0.x.x',
355 silly cache add scope: null,
355 silly cache add name: 'mkdirp',
355 silly cache add rawSpec: '0.x.x',
355 silly cache add spec: '>=0.0.0 <1.0.0',
355 silly cache add type: 'range' }
356 silly addNamed mkdirp@>=0.0.0 <1.0.0
357 verbose addNamed ">=0.0.0 <1.0.0" is a valid semver range for mkdirp
358 silly addNameRange { name: 'mkdirp', range: '>=0.0.0 <1.0.0', hasData: false }
359 silly mapToRegistry name mkdirp
360 silly mapToRegistry using default registry
361 silly mapToRegistry registry https://registry.npmjs.org/
362 silly mapToRegistry uri https://registry.npmjs.org/mkdirp
363 verbose addNameRange registry:https://registry.npmjs.org/mkdirp not in flight; fetching
364 verbose get https://registry.npmjs.org/flatiron not expired, no request
365 silly addNameRange number 2 { name: 'flatiron', range: '>=0.4.2 <0.5.0', hasData: true }
366 silly addNameRange versions [ 'flatiron',
366 silly addNameRange [ '0.1.2',
366 silly addNameRange '0.1.3',
366 silly addNameRange '0.1.4',
366 silly addNameRange '0.1.5',
366 silly addNameRange '0.1.5-1',
366 silly addNameRange '0.1.6',
366 silly addNameRange '0.1.7',
366 silly addNameRange '0.1.7-1',
366 silly addNameRange '0.1.8',
366 silly addNameRange '0.1.9',
366 silly addNameRange '0.1.10',
366 silly addNameRange '0.1.11',
366 silly addNameRange '0.1.12',
366 silly addNameRange '0.1.12-1',
366 silly addNameRange '0.1.13',
366 silly addNameRange '0.1.14',
366 silly addNameRange '0.1.15',
366 silly addNameRange '0.1.16',
366 silly addNameRange '0.1.17',
366 silly addNameRange '0.2.0',
366 silly addNameRange '0.2.1',
366 silly addNameRange '0.2.2',
366 silly addNameRange '0.2.3',
366 silly addNameRange '0.2.4',
366 silly addNameRange '0.2.5',
366 silly addNameRange '0.2.6',
366 silly addNameRange '0.2.7',
366 silly addNameRange '0.2.8',
366 silly addNameRange '0.3.0',
366 silly addNameRange '0.3.2',
366 silly addNameRange '0.3.3',
366 silly addNameRange '0.3.4',
366 silly addNameRange '0.3.5',
366 silly addNameRange '0.3.6',
366 silly addNameRange '0.3.7',
366 silly addNameRange '0.3.8',
366 silly addNameRange '0.3.9',
366 silly addNameRange '0.3.10',
366 silly addNameRange '0.3.11',
366 silly addNameRange '0.4.0',
366 silly addNameRange '0.4.1',
366 silly addNameRange '0.4.2',
366 silly addNameRange '0.4.3' ] ]
367 silly addNamed flatiron@0.4.3
368 verbose addNamed "0.4.3" is a plain semver version for flatiron
369 verbose get https://registry.npmjs.org/path-is-absolute not expired, no request
370 silly addNameRange number 2 { name: 'path-is-absolute',
370 silly addNameRange range: '>=1.0.0 <1.1.0',
370 silly addNameRange hasData: true }
371 silly addNameRange versions [ 'path-is-absolute', [ '1.0.0', '1.0.1', '2.0.0' ] ]
372 silly addNamed path-is-absolute@1.0.1
373 verbose addNamed "1.0.1" is a plain semver version for path-is-absolute
374 verbose get https://registry.npmjs.org/utile not expired, no request
375 silly addNameRange number 2 { name: 'utile', range: '>=0.3.0 <0.4.0', hasData: true }
376 silly addNameRange versions [ 'utile',
376 silly addNameRange [ '0.0.1',
376 silly addNameRange '0.0.2',
376 silly addNameRange '0.0.3',
376 silly addNameRange '0.0.4',
376 silly addNameRange '0.0.5',
376 silly addNameRange '0.0.6',