-
Notifications
You must be signed in to change notification settings - Fork 0
/
npm-debug.log
13640 lines (13640 loc) · 835 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 '-g',
1 verbose cli 'purescript' ]
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 purescript
8 silly fetchNamedPackageData purescript
9 silly mapToRegistry name purescript
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry uri https://registry.npmjs.org/purescript
13 verbose request uri https://registry.npmjs.org/purescript
14 verbose request no auth needed
15 info attempt registry request try #1 at 13:05:58
16 verbose request id 2b94b68c179bea52
17 verbose etag W/"1c758fa665e08dfcdfa6f89bcea207d7"
18 verbose lastModified Thu, 06 Jun 2019 10:12:43 GMT
19 http request GET https://registry.npmjs.org/purescript
20 http 304 https://registry.npmjs.org/purescript
21 verbose headers { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
21 verbose headers connection: 'keep-alive',
21 verbose headers 'set-cookie': [ '__cfduid=debcb36ab27dfa4ebbdccddf4d594d4581561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
21 verbose headers 'cf-cache-status': 'HIT',
21 verbose headers 'cache-control': 'max-age=300',
21 verbose headers 'cf-ray': '4ecf0d70be91ce17-LHR',
21 verbose headers age: '37',
21 verbose headers etag: '"1c758fa665e08dfcdfa6f89bcea207d7"',
21 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
21 verbose headers 'last-modified': 'Thu, 06 Jun 2019 10:12:43 GMT',
21 verbose headers vary: 'accept-encoding, accept',
21 verbose headers 'x-amz-meta-rev': '121-a59a55ed6472a34919b46a99aa370d67',
21 verbose headers server: 'cloudflare' }
22 silly get cb [ 304,
22 silly get { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
22 silly get connection: 'keep-alive',
22 silly get 'set-cookie': [ '__cfduid=debcb36ab27dfa4ebbdccddf4d594d4581561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
22 silly get 'cf-cache-status': 'HIT',
22 silly get 'cache-control': 'max-age=300',
22 silly get 'cf-ray': '4ecf0d70be91ce17-LHR',
22 silly get age: '37',
22 silly get etag: '"1c758fa665e08dfcdfa6f89bcea207d7"',
22 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
22 silly get 'last-modified': 'Thu, 06 Jun 2019 10:12:43 GMT',
22 silly get vary: 'accept-encoding, accept',
22 silly get 'x-amz-meta-rev': '121-a59a55ed6472a34919b46a99aa370d67',
22 silly get server: 'cloudflare' } ]
23 verbose etag https://registry.npmjs.org/purescript from cache
24 verbose get saving purescript to /home/daniel/.npm/registry.npmjs.org/purescript/.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 [ 'purescript', null ]
39 verbose cache add spec purescript
40 silly cache add parsed spec Result {
40 silly cache add raw: 'purescript',
40 silly cache add scope: null,
40 silly cache add name: 'purescript',
40 silly cache add rawSpec: '',
40 silly cache add spec: 'latest',
40 silly cache add type: 'tag' }
41 silly addNamed purescript@latest
42 verbose addNamed "latest" is being treated as a dist-tag for purescript
43 info addNameTag [ 'purescript', 'latest' ]
44 silly mapToRegistry name purescript
45 silly mapToRegistry using default registry
46 silly mapToRegistry registry https://registry.npmjs.org/
47 silly mapToRegistry uri https://registry.npmjs.org/purescript
48 verbose addNameTag registry:https://registry.npmjs.org/purescript not in flight; fetching
49 verbose get https://registry.npmjs.org/purescript not expired, no request
50 silly addNameTag next cb for purescript with tag latest
51 silly addNamed [email protected]
52 verbose addNamed "0.13.0" is a plain semver version for purescript
53 silly cache afterAdd [email protected]
54 verbose afterAdd /home/daniel/.npm/purescript/0.13.0/package/package.json not in flight; writing
55 verbose afterAdd /home/daniel/.npm/purescript/0.13.0/package/package.json written
56 silly fetchNamedPackageData install-purescript-cli
57 silly mapToRegistry name install-purescript-cli
58 silly mapToRegistry using default registry
59 silly mapToRegistry registry https://registry.npmjs.org/
60 silly mapToRegistry uri https://registry.npmjs.org/install-purescript-cli
61 verbose request uri https://registry.npmjs.org/install-purescript-cli
62 verbose request no auth needed
63 info attempt registry request try #1 at 13:05:58
64 verbose etag W/"980e6ec6d452732727e0647725afb9a4"
65 verbose lastModified Tue, 04 Jun 2019 03:04:34 GMT
66 http request GET https://registry.npmjs.org/install-purescript-cli
67 http 304 https://registry.npmjs.org/install-purescript-cli
68 verbose headers { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
68 verbose headers connection: 'keep-alive',
68 verbose headers 'set-cookie': [ '__cfduid=d2851650428571ab362288e1bba66bdf71561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
68 verbose headers 'cf-cache-status': 'HIT',
68 verbose headers 'cache-control': 'max-age=300',
68 verbose headers 'cf-ray': '4ecf0d715a01ce5b-LHR',
68 verbose headers age: '36',
68 verbose headers etag: '"980e6ec6d452732727e0647725afb9a4"',
68 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
68 verbose headers 'last-modified': 'Tue, 04 Jun 2019 03:04:34 GMT',
68 verbose headers vary: 'accept-encoding, accept',
68 verbose headers 'x-amz-meta-rev': '18-40d81a784b1810212a9d70c7471379d6',
68 verbose headers server: 'cloudflare' }
69 silly get cb [ 304,
69 silly get { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
69 silly get connection: 'keep-alive',
69 silly get 'set-cookie': [ '__cfduid=d2851650428571ab362288e1bba66bdf71561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
69 silly get 'cf-cache-status': 'HIT',
69 silly get 'cache-control': 'max-age=300',
69 silly get 'cf-ray': '4ecf0d715a01ce5b-LHR',
69 silly get age: '36',
69 silly get etag: '"980e6ec6d452732727e0647725afb9a4"',
69 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
69 silly get 'last-modified': 'Tue, 04 Jun 2019 03:04:34 GMT',
69 silly get vary: 'accept-encoding, accept',
69 silly get 'x-amz-meta-rev': '18-40d81a784b1810212a9d70c7471379d6',
69 silly get server: 'cloudflare' } ]
70 verbose etag https://registry.npmjs.org/install-purescript-cli from cache
71 verbose get saving install-purescript-cli to /home/daniel/.npm/registry.npmjs.org/install-purescript-cli/.cache.json
72 silly resolveWithNewModule [email protected] checking installable status
73 silly cache add args [ 'install-purescript-cli@^0.5.0', null ]
74 verbose cache add spec install-purescript-cli@^0.5.0
75 silly cache add parsed spec Result {
75 silly cache add raw: 'install-purescript-cli@^0.5.0',
75 silly cache add scope: null,
75 silly cache add name: 'install-purescript-cli',
75 silly cache add rawSpec: '^0.5.0',
75 silly cache add spec: '>=0.5.0 <0.6.0',
75 silly cache add type: 'range' }
76 silly addNamed install-purescript-cli@>=0.5.0 <0.6.0
77 verbose addNamed ">=0.5.0 <0.6.0" is a valid semver range for install-purescript-cli
78 silly addNameRange { name: 'install-purescript-cli',
78 silly addNameRange range: '>=0.5.0 <0.6.0',
78 silly addNameRange hasData: false }
79 silly mapToRegistry name install-purescript-cli
80 silly mapToRegistry using default registry
81 silly mapToRegistry registry https://registry.npmjs.org/
82 silly mapToRegistry uri https://registry.npmjs.org/install-purescript-cli
83 verbose addNameRange registry:https://registry.npmjs.org/install-purescript-cli not in flight; fetching
84 verbose get https://registry.npmjs.org/install-purescript-cli not expired, no request
85 silly addNameRange number 2 { name: 'install-purescript-cli',
85 silly addNameRange range: '>=0.5.0 <0.6.0',
85 silly addNameRange hasData: true }
86 silly addNameRange versions [ 'install-purescript-cli',
86 silly addNameRange [ '0.0.0-0',
86 silly addNameRange '0.0.0-2',
86 silly addNameRange '0.0.0-3',
86 silly addNameRange '0.0.0-4',
86 silly addNameRange '0.0.0-5',
86 silly addNameRange '0.1.0',
86 silly addNameRange '0.2.0',
86 silly addNameRange '0.2.1',
86 silly addNameRange '0.3.0-0',
86 silly addNameRange '0.3.0-1',
86 silly addNameRange '0.3.0',
86 silly addNameRange '0.4.0-0',
86 silly addNameRange '0.4.0',
86 silly addNameRange '0.4.1',
86 silly addNameRange '0.4.2',
86 silly addNameRange '0.5.0-0',
86 silly addNameRange '0.5.0-1',
86 silly addNameRange '0.5.0' ] ]
87 silly addNamed [email protected]
88 verbose addNamed "0.5.0" is a plain semver version for install-purescript-cli
89 silly cache afterAdd [email protected]
90 verbose afterAdd /home/daniel/.npm/install-purescript-cli/0.5.0/package/package.json not in flight; writing
91 verbose afterAdd /home/daniel/.npm/install-purescript-cli/0.5.0/package/package.json written
92 silly fetchNamedPackageData chalk
93 silly mapToRegistry name chalk
94 silly mapToRegistry using default registry
95 silly mapToRegistry registry https://registry.npmjs.org/
96 silly mapToRegistry uri https://registry.npmjs.org/chalk
97 silly fetchNamedPackageData filesize
98 silly mapToRegistry name filesize
99 silly mapToRegistry using default registry
100 silly mapToRegistry registry https://registry.npmjs.org/
101 silly mapToRegistry uri https://registry.npmjs.org/filesize
102 silly fetchNamedPackageData install-purescript
103 silly mapToRegistry name install-purescript
104 silly mapToRegistry using default registry
105 silly mapToRegistry registry https://registry.npmjs.org/
106 silly mapToRegistry uri https://registry.npmjs.org/install-purescript
107 silly fetchNamedPackageData log-symbols
108 silly mapToRegistry name log-symbols
109 silly mapToRegistry using default registry
110 silly mapToRegistry registry https://registry.npmjs.org/
111 silly mapToRegistry uri https://registry.npmjs.org/log-symbols
112 silly fetchNamedPackageData log-update
113 silly mapToRegistry name log-update
114 silly mapToRegistry using default registry
115 silly mapToRegistry registry https://registry.npmjs.org/
116 silly mapToRegistry uri https://registry.npmjs.org/log-update
117 silly fetchNamedPackageData minimist
118 silly mapToRegistry name minimist
119 silly mapToRegistry using default registry
120 silly mapToRegistry registry https://registry.npmjs.org/
121 silly mapToRegistry uri https://registry.npmjs.org/minimist
122 silly fetchNamedPackageData ms
123 silly mapToRegistry name ms
124 silly mapToRegistry using default registry
125 silly mapToRegistry registry https://registry.npmjs.org/
126 silly mapToRegistry uri https://registry.npmjs.org/ms
127 silly fetchNamedPackageData neat-stack
128 silly mapToRegistry name neat-stack
129 silly mapToRegistry using default registry
130 silly mapToRegistry registry https://registry.npmjs.org/
131 silly mapToRegistry uri https://registry.npmjs.org/neat-stack
132 silly fetchNamedPackageData npcache
133 silly mapToRegistry name npcache
134 silly mapToRegistry using default registry
135 silly mapToRegistry registry https://registry.npmjs.org/
136 silly mapToRegistry uri https://registry.npmjs.org/npcache
137 silly fetchNamedPackageData once
138 silly mapToRegistry name once
139 silly mapToRegistry using default registry
140 silly mapToRegistry registry https://registry.npmjs.org/
141 silly mapToRegistry uri https://registry.npmjs.org/once
142 silly fetchNamedPackageData platform-name
143 silly mapToRegistry name platform-name
144 silly mapToRegistry using default registry
145 silly mapToRegistry registry https://registry.npmjs.org/
146 silly mapToRegistry uri https://registry.npmjs.org/platform-name
147 silly fetchNamedPackageData size-rate
148 silly mapToRegistry name size-rate
149 silly mapToRegistry using default registry
150 silly mapToRegistry registry https://registry.npmjs.org/
151 silly mapToRegistry uri https://registry.npmjs.org/size-rate
152 silly fetchNamedPackageData tilde-path
153 silly mapToRegistry name tilde-path
154 silly mapToRegistry using default registry
155 silly mapToRegistry registry https://registry.npmjs.org/
156 silly mapToRegistry uri https://registry.npmjs.org/tilde-path
157 silly fetchNamedPackageData tty-truncate
158 silly mapToRegistry name tty-truncate
159 silly mapToRegistry using default registry
160 silly mapToRegistry registry https://registry.npmjs.org/
161 silly mapToRegistry uri https://registry.npmjs.org/tty-truncate
162 silly fetchNamedPackageData tty-width-frame
163 silly mapToRegistry name tty-width-frame
164 silly mapToRegistry using default registry
165 silly mapToRegistry registry https://registry.npmjs.org/
166 silly mapToRegistry uri https://registry.npmjs.org/tty-width-frame
167 silly fetchNamedPackageData vertical-meter
168 silly mapToRegistry name vertical-meter
169 silly mapToRegistry using default registry
170 silly mapToRegistry registry https://registry.npmjs.org/
171 silly mapToRegistry uri https://registry.npmjs.org/vertical-meter
172 verbose request uri https://registry.npmjs.org/chalk
173 verbose request no auth needed
174 info attempt registry request try #1 at 13:05:58
175 verbose etag W/"57b0c57e0f1946126bd3a7061ddf30b7"
176 verbose lastModified Tue, 30 Apr 2019 02:24:40 GMT
177 http request GET https://registry.npmjs.org/chalk
178 verbose request uri https://registry.npmjs.org/filesize
179 verbose request no auth needed
180 info attempt registry request try #1 at 13:05:58
181 verbose etag W/"120ddf94a5703021a03aab6e86ec6182"
182 verbose lastModified Fri, 15 Feb 2019 13:51:50 GMT
183 http request GET https://registry.npmjs.org/filesize
184 verbose request uri https://registry.npmjs.org/log-symbols
185 verbose request no auth needed
186 info attempt registry request try #1 at 13:05:58
187 verbose etag W/"77b04891e942b6c5948ac3ffa69f913f"
188 verbose lastModified Wed, 17 Apr 2019 15:47:00 GMT
189 http request GET https://registry.npmjs.org/log-symbols
190 verbose request uri https://registry.npmjs.org/minimist
191 verbose request no auth needed
192 info attempt registry request try #1 at 13:05:58
193 verbose etag W/"217450f74c228520bf67887ecf26ed36"
194 verbose lastModified Fri, 24 May 2019 09:36:38 GMT
195 http request GET https://registry.npmjs.org/minimist
196 verbose request uri https://registry.npmjs.org/log-update
197 verbose request no auth needed
198 info attempt registry request try #1 at 13:05:58
199 verbose etag W/"c544f209ee110862074cd0ee05a8c78f"
200 verbose lastModified Mon, 01 Apr 2019 08:43:38 GMT
201 http request GET https://registry.npmjs.org/log-update
202 verbose request uri https://registry.npmjs.org/install-purescript
203 verbose request no auth needed
204 info attempt registry request try #1 at 13:05:58
205 verbose etag W/"bad4ce72d8372d592aa6ef8608f361a2"
206 verbose lastModified Tue, 04 Jun 2019 01:33:11 GMT
207 http request GET https://registry.npmjs.org/install-purescript
208 verbose request uri https://registry.npmjs.org/npcache
209 verbose request no auth needed
210 info attempt registry request try #1 at 13:05:58
211 verbose etag W/"12f9c0ae116d4f73754f440748c41f86"
212 verbose lastModified Fri, 07 Jun 2019 12:37:36 GMT
213 http request GET https://registry.npmjs.org/npcache
214 verbose request uri https://registry.npmjs.org/neat-stack
215 verbose request no auth needed
216 info attempt registry request try #1 at 13:05:58
217 verbose etag W/"8a9db02546c65e298e37125ce133a1db"
218 verbose lastModified Fri, 04 Jan 2019 21:33:24 GMT
219 http request GET https://registry.npmjs.org/neat-stack
220 verbose request uri https://registry.npmjs.org/ms
221 verbose request no auth needed
222 info attempt registry request try #1 at 13:05:58
223 verbose etag W/"54b6e0d9751ec6aacfd0953ff9cde65c"
224 verbose lastModified Wed, 26 Jun 2019 04:59:33 GMT
225 http request GET https://registry.npmjs.org/ms
226 verbose request uri https://registry.npmjs.org/once
227 verbose request no auth needed
228 info attempt registry request try #1 at 13:05:58
229 verbose etag W/"edc9f495d2deed74e80dc05995dc33c2"
230 verbose lastModified Sun, 27 May 2018 11:11:26 GMT
231 http request GET https://registry.npmjs.org/once
232 verbose request uri https://registry.npmjs.org/platform-name
233 verbose request no auth needed
234 info attempt registry request try #1 at 13:05:58
235 verbose etag W/"d741731cc554c183283bf16078cd891f"
236 verbose lastModified Sun, 27 May 2018 12:23:43 GMT
237 http request GET https://registry.npmjs.org/platform-name
238 verbose request uri https://registry.npmjs.org/size-rate
239 verbose request no auth needed
240 info attempt registry request try #1 at 13:05:58
241 verbose etag W/"b2a2f3fc2c30d9ed2550607790376357"
242 verbose lastModified Sun, 17 Mar 2019 23:56:30 GMT
243 http request GET https://registry.npmjs.org/size-rate
244 verbose request uri https://registry.npmjs.org/tilde-path
245 verbose request no auth needed
246 info attempt registry request try #1 at 13:05:58
247 verbose etag W/"08a6403e0da3fe98a9e6bdf8db399f20"
248 verbose lastModified Mon, 18 Jun 2018 00:39:55 GMT
249 http request GET https://registry.npmjs.org/tilde-path
250 verbose request uri https://registry.npmjs.org/tty-truncate
251 verbose request no auth needed
252 info attempt registry request try #1 at 13:05:58
253 verbose etag W/"dd348b3a8c3e2e9da9429c374395c864"
254 verbose lastModified Sat, 05 Jan 2019 16:31:48 GMT
255 http request GET https://registry.npmjs.org/tty-truncate
256 verbose request uri https://registry.npmjs.org/tty-width-frame
257 verbose request no auth needed
258 info attempt registry request try #1 at 13:05:58
259 verbose etag W/"85099c5d6c8f9498c49f062f55ef4cd7"
260 verbose lastModified Fri, 08 Mar 2019 13:49:04 GMT
261 http request GET https://registry.npmjs.org/tty-width-frame
262 verbose request uri https://registry.npmjs.org/vertical-meter
263 verbose request no auth needed
264 info attempt registry request try #1 at 13:05:58
265 verbose etag W/"343647becb7cc3f0ae1785a8f2eb4e31"
266 verbose lastModified Sun, 27 May 2018 20:50:56 GMT
267 http request GET https://registry.npmjs.org/vertical-meter
268 http 304 https://registry.npmjs.org/log-symbols
269 verbose headers { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
269 verbose headers connection: 'keep-alive',
269 verbose headers 'set-cookie': [ '__cfduid=dd607d1d391ed0e994ea94139d73aba4a1561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
269 verbose headers 'cf-cache-status': 'HIT',
269 verbose headers 'cache-control': 'max-age=300',
269 verbose headers 'cf-ray': '4ecf0d71dc8ace37-LHR',
269 verbose headers age: '1910',
269 verbose headers etag: '"77b04891e942b6c5948ac3ffa69f913f"',
269 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
269 verbose headers 'last-modified': 'Wed, 17 Apr 2019 15:47:00 GMT',
269 verbose headers vary: 'accept-encoding, accept',
269 verbose headers 'x-amz-meta-rev': '45-8d0c1ac44849f65ac2e178b93ec59943',
269 verbose headers server: 'cloudflare' }
270 silly get cb [ 304,
270 silly get { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
270 silly get connection: 'keep-alive',
270 silly get 'set-cookie': [ '__cfduid=dd607d1d391ed0e994ea94139d73aba4a1561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
270 silly get 'cf-cache-status': 'HIT',
270 silly get 'cache-control': 'max-age=300',
270 silly get 'cf-ray': '4ecf0d71dc8ace37-LHR',
270 silly get age: '1910',
270 silly get etag: '"77b04891e942b6c5948ac3ffa69f913f"',
270 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
270 silly get 'last-modified': 'Wed, 17 Apr 2019 15:47:00 GMT',
270 silly get vary: 'accept-encoding, accept',
270 silly get 'x-amz-meta-rev': '45-8d0c1ac44849f65ac2e178b93ec59943',
270 silly get server: 'cloudflare' } ]
271 verbose etag https://registry.npmjs.org/log-symbols from cache
272 verbose get saving log-symbols to /home/daniel/.npm/registry.npmjs.org/log-symbols/.cache.json
273 http 304 https://registry.npmjs.org/npcache
274 verbose headers { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
274 verbose headers connection: 'keep-alive',
274 verbose headers 'set-cookie': [ '__cfduid=d59cdb86d74bd10379bd035e6241841331561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
274 verbose headers 'cf-cache-status': 'HIT',
274 verbose headers 'cache-control': 'max-age=300',
274 verbose headers 'cf-ray': '4ecf0d71dddd6a5f-LHR',
274 verbose headers age: '35',
274 verbose headers etag: '"12f9c0ae116d4f73754f440748c41f86"',
274 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
274 verbose headers 'last-modified': 'Fri, 07 Jun 2019 12:37:36 GMT',
274 verbose headers vary: 'accept-encoding, accept',
274 verbose headers 'x-amz-meta-rev': '4-b34b9b6b183cf01b58764bb48fb251b8',
274 verbose headers server: 'cloudflare' }
275 silly get cb [ 304,
275 silly get { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
275 silly get connection: 'keep-alive',
275 silly get 'set-cookie': [ '__cfduid=d59cdb86d74bd10379bd035e6241841331561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
275 silly get 'cf-cache-status': 'HIT',
275 silly get 'cache-control': 'max-age=300',
275 silly get 'cf-ray': '4ecf0d71dddd6a5f-LHR',
275 silly get age: '35',
275 silly get etag: '"12f9c0ae116d4f73754f440748c41f86"',
275 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
275 silly get 'last-modified': 'Fri, 07 Jun 2019 12:37:36 GMT',
275 silly get vary: 'accept-encoding, accept',
275 silly get 'x-amz-meta-rev': '4-b34b9b6b183cf01b58764bb48fb251b8',
275 silly get server: 'cloudflare' } ]
276 verbose etag https://registry.npmjs.org/npcache from cache
277 verbose get saving npcache to /home/daniel/.npm/registry.npmjs.org/npcache/.cache.json
278 silly resolveWithNewModule [email protected] checking installable status
279 silly cache add args [ 'log-symbols@^3.0.0', null ]
280 verbose cache add spec log-symbols@^3.0.0
281 silly cache add parsed spec Result {
281 silly cache add raw: 'log-symbols@^3.0.0',
281 silly cache add scope: null,
281 silly cache add name: 'log-symbols',
281 silly cache add rawSpec: '^3.0.0',
281 silly cache add spec: '>=3.0.0 <4.0.0',
281 silly cache add type: 'range' }
282 silly addNamed log-symbols@>=3.0.0 <4.0.0
283 verbose addNamed ">=3.0.0 <4.0.0" is a valid semver range for log-symbols
284 silly addNameRange { name: 'log-symbols', range: '>=3.0.0 <4.0.0', hasData: false }
285 silly mapToRegistry name log-symbols
286 silly mapToRegistry using default registry
287 silly mapToRegistry registry https://registry.npmjs.org/
288 silly mapToRegistry uri https://registry.npmjs.org/log-symbols
289 verbose addNameRange registry:https://registry.npmjs.org/log-symbols not in flight; fetching
290 silly resolveWithNewModule [email protected] checking installable status
291 silly cache add args [ 'npcache@^1.0.2', null ]
292 verbose cache add spec npcache@^1.0.2
293 silly cache add parsed spec Result {
293 silly cache add raw: 'npcache@^1.0.2',
293 silly cache add scope: null,
293 silly cache add name: 'npcache',
293 silly cache add rawSpec: '^1.0.2',
293 silly cache add spec: '>=1.0.2 <2.0.0',
293 silly cache add type: 'range' }
294 silly addNamed npcache@>=1.0.2 <2.0.0
295 verbose addNamed ">=1.0.2 <2.0.0" is a valid semver range for npcache
296 silly addNameRange { name: 'npcache', range: '>=1.0.2 <2.0.0', hasData: false }
297 silly mapToRegistry name npcache
298 silly mapToRegistry using default registry
299 silly mapToRegistry registry https://registry.npmjs.org/
300 silly mapToRegistry uri https://registry.npmjs.org/npcache
301 verbose addNameRange registry:https://registry.npmjs.org/npcache not in flight; fetching
302 http 304 https://registry.npmjs.org/ms
303 verbose headers { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
303 verbose headers connection: 'keep-alive',
303 verbose headers 'set-cookie': [ '__cfduid=dc6895210f14a071412f99f9953f907e71561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
303 verbose headers 'cf-cache-status': 'HIT',
303 verbose headers 'cache-control': 'max-age=300',
303 verbose headers 'cf-ray': '4ecf0d71de47ce3b-LHR',
303 verbose headers age: '3670',
303 verbose headers etag: '"54b6e0d9751ec6aacfd0953ff9cde65c"',
303 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
303 verbose headers 'last-modified': 'Wed, 26 Jun 2019 04:59:33 GMT',
303 verbose headers vary: 'accept-encoding, accept',
303 verbose headers 'x-amz-meta-rev': '157-de27b06c94919e1734f76057acc6091a',
303 verbose headers server: 'cloudflare' }
304 silly get cb [ 304,
304 silly get { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
304 silly get connection: 'keep-alive',
304 silly get 'set-cookie': [ '__cfduid=dc6895210f14a071412f99f9953f907e71561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
304 silly get 'cf-cache-status': 'HIT',
304 silly get 'cache-control': 'max-age=300',
304 silly get 'cf-ray': '4ecf0d71de47ce3b-LHR',
304 silly get age: '3670',
304 silly get etag: '"54b6e0d9751ec6aacfd0953ff9cde65c"',
304 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
304 silly get 'last-modified': 'Wed, 26 Jun 2019 04:59:33 GMT',
304 silly get vary: 'accept-encoding, accept',
304 silly get 'x-amz-meta-rev': '157-de27b06c94919e1734f76057acc6091a',
304 silly get server: 'cloudflare' } ]
305 verbose etag https://registry.npmjs.org/ms from cache
306 verbose get saving ms to /home/daniel/.npm/registry.npmjs.org/ms/.cache.json
307 http 304 https://registry.npmjs.org/log-update
308 verbose headers { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
308 verbose headers connection: 'keep-alive',
308 verbose headers 'set-cookie': [ '__cfduid=d69dd9af3c4d16e7c260d39c2c4c5063f1561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
308 verbose headers 'cf-cache-status': 'HIT',
308 verbose headers 'cache-control': 'max-age=300',
308 verbose headers 'cf-ray': '4ecf0d71dcf9ce7b-LHR',
308 verbose headers age: '192',
308 verbose headers etag: '"c544f209ee110862074cd0ee05a8c78f"',
308 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
308 verbose headers 'last-modified': 'Mon, 01 Apr 2019 08:43:38 GMT',
308 verbose headers vary: 'accept-encoding, accept',
308 verbose headers 'x-amz-meta-rev': '44-0f3344887ff786ffee71e40d98d0bddf',
308 verbose headers server: 'cloudflare' }
309 silly get cb [ 304,
309 silly get { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
309 silly get connection: 'keep-alive',
309 silly get 'set-cookie': [ '__cfduid=d69dd9af3c4d16e7c260d39c2c4c5063f1561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
309 silly get 'cf-cache-status': 'HIT',
309 silly get 'cache-control': 'max-age=300',
309 silly get 'cf-ray': '4ecf0d71dcf9ce7b-LHR',
309 silly get age: '192',
309 silly get etag: '"c544f209ee110862074cd0ee05a8c78f"',
309 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
309 silly get 'last-modified': 'Mon, 01 Apr 2019 08:43:38 GMT',
309 silly get vary: 'accept-encoding, accept',
309 silly get 'x-amz-meta-rev': '44-0f3344887ff786ffee71e40d98d0bddf',
309 silly get server: 'cloudflare' } ]
310 verbose etag https://registry.npmjs.org/log-update from cache
311 verbose get saving log-update to /home/daniel/.npm/registry.npmjs.org/log-update/.cache.json
312 http 304 https://registry.npmjs.org/minimist
313 verbose headers { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
313 verbose headers connection: 'keep-alive',
313 verbose headers 'set-cookie': [ '__cfduid=d7f2090feebd564cab441373a2cc390c61561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
313 verbose headers 'cf-cache-status': 'HIT',
313 verbose headers 'cache-control': 'max-age=300',
313 verbose headers 'cf-ray': '4ecf0d71dc923468-LHR',
313 verbose headers age: '5483',
313 verbose headers etag: '"217450f74c228520bf67887ecf26ed36"',
313 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
313 verbose headers 'last-modified': 'Fri, 24 May 2019 09:36:38 GMT',
313 verbose headers vary: 'accept-encoding, accept',
313 verbose headers 'x-amz-meta-rev': '554-5098d09fd2ef2e15516c00d6277edd84',
313 verbose headers server: 'cloudflare' }
314 silly get cb [ 304,
314 silly get { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
314 silly get connection: 'keep-alive',
314 silly get 'set-cookie': [ '__cfduid=d7f2090feebd564cab441373a2cc390c61561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
314 silly get 'cf-cache-status': 'HIT',
314 silly get 'cache-control': 'max-age=300',
314 silly get 'cf-ray': '4ecf0d71dc923468-LHR',
314 silly get age: '5483',
314 silly get etag: '"217450f74c228520bf67887ecf26ed36"',
314 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
314 silly get 'last-modified': 'Fri, 24 May 2019 09:36:38 GMT',
314 silly get vary: 'accept-encoding, accept',
314 silly get 'x-amz-meta-rev': '554-5098d09fd2ef2e15516c00d6277edd84',
314 silly get server: 'cloudflare' } ]
315 verbose etag https://registry.npmjs.org/minimist from cache
316 verbose get saving minimist to /home/daniel/.npm/registry.npmjs.org/minimist/.cache.json
317 http 304 https://registry.npmjs.org/tilde-path
318 verbose headers { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
318 verbose headers connection: 'keep-alive',
318 verbose headers 'set-cookie': [ '__cfduid=d8ae1a29d32ce53ace8214d878f4073c71561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
318 verbose headers 'cf-cache-status': 'HIT',
318 verbose headers 'cache-control': 'max-age=300',
318 verbose headers 'cf-ray': '4ecf0d71ecf06a4d-LHR',
318 verbose headers age: '35',
318 verbose headers etag: '"08a6403e0da3fe98a9e6bdf8db399f20"',
318 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
318 verbose headers 'last-modified': 'Mon, 18 Jun 2018 00:39:55 GMT',
318 verbose headers vary: 'accept-encoding, accept',
318 verbose headers server: 'cloudflare' }
319 silly get cb [ 304,
319 silly get { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
319 silly get connection: 'keep-alive',
319 silly get 'set-cookie': [ '__cfduid=d8ae1a29d32ce53ace8214d878f4073c71561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
319 silly get 'cf-cache-status': 'HIT',
319 silly get 'cache-control': 'max-age=300',
319 silly get 'cf-ray': '4ecf0d71ecf06a4d-LHR',
319 silly get age: '35',
319 silly get etag: '"08a6403e0da3fe98a9e6bdf8db399f20"',
319 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
319 silly get 'last-modified': 'Mon, 18 Jun 2018 00:39:55 GMT',
319 silly get vary: 'accept-encoding, accept',
319 silly get server: 'cloudflare' } ]
320 verbose etag https://registry.npmjs.org/tilde-path from cache
321 verbose get saving tilde-path to /home/daniel/.npm/registry.npmjs.org/tilde-path/.cache.json
322 verbose get https://registry.npmjs.org/log-symbols not expired, no request
323 silly addNameRange number 2 { name: 'log-symbols', range: '>=3.0.0 <4.0.0', hasData: true }
324 silly addNameRange versions [ 'log-symbols',
324 silly addNameRange [ '1.0.0', '1.0.1', '1.0.2', '2.0.0', '2.1.0', '2.2.0', '3.0.0' ] ]
325 silly addNamed [email protected]
326 verbose addNamed "3.0.0" is a plain semver version for log-symbols
327 verbose get https://registry.npmjs.org/npcache not expired, no request
328 silly addNameRange number 2 { name: 'npcache', range: '>=1.0.2 <2.0.0', hasData: true }
329 silly addNameRange versions [ 'npcache', [ '0.0.0', '1.0.0', '1.0.2', '2.0.0-0' ] ]
330 silly addNamed [email protected]
331 verbose addNamed "1.0.2" is a plain semver version for npcache
332 silly resolveWithNewModule [email protected] checking installable status
333 silly cache add args [ 'log-update@^3.2.0', null ]
334 verbose cache add spec log-update@^3.2.0
335 silly cache add parsed spec Result {
335 silly cache add raw: 'log-update@^3.2.0',
335 silly cache add scope: null,
335 silly cache add name: 'log-update',
335 silly cache add rawSpec: '^3.2.0',
335 silly cache add spec: '>=3.2.0 <4.0.0',
335 silly cache add type: 'range' }
336 silly addNamed log-update@>=3.2.0 <4.0.0
337 verbose addNamed ">=3.2.0 <4.0.0" is a valid semver range for log-update
338 silly addNameRange { name: 'log-update', range: '>=3.2.0 <4.0.0', hasData: false }
339 silly mapToRegistry name log-update
340 silly mapToRegistry using default registry
341 silly mapToRegistry registry https://registry.npmjs.org/
342 silly mapToRegistry uri https://registry.npmjs.org/log-update
343 verbose addNameRange registry:https://registry.npmjs.org/log-update not in flight; fetching
344 silly resolveWithNewModule [email protected] checking installable status
345 silly cache add args [ 'ms@^2.1.1', null ]
346 verbose cache add spec ms@^2.1.1
347 silly cache add parsed spec Result {
347 silly cache add raw: 'ms@^2.1.1',
347 silly cache add scope: null,
347 silly cache add name: 'ms',
347 silly cache add rawSpec: '^2.1.1',
347 silly cache add spec: '>=2.1.1 <3.0.0',
347 silly cache add type: 'range' }
348 silly addNamed ms@>=2.1.1 <3.0.0
349 verbose addNamed ">=2.1.1 <3.0.0" is a valid semver range for ms
350 silly addNameRange { name: 'ms', range: '>=2.1.1 <3.0.0', hasData: false }
351 silly mapToRegistry name ms
352 silly mapToRegistry using default registry
353 silly mapToRegistry registry https://registry.npmjs.org/
354 silly mapToRegistry uri https://registry.npmjs.org/ms
355 verbose addNameRange registry:https://registry.npmjs.org/ms not in flight; fetching
356 silly cache afterAdd [email protected]
357 verbose afterAdd /home/daniel/.npm/log-symbols/3.0.0/package/package.json not in flight; writing
358 silly resolveWithNewModule [email protected] checking installable status
359 silly cache add args [ 'minimist@^1.2.0', null ]
360 verbose cache add spec minimist@^1.2.0
361 silly cache add parsed spec Result {
361 silly cache add raw: 'minimist@^1.2.0',
361 silly cache add scope: null,
361 silly cache add name: 'minimist',
361 silly cache add rawSpec: '^1.2.0',
361 silly cache add spec: '>=1.2.0 <2.0.0',
361 silly cache add type: 'range' }
362 silly addNamed minimist@>=1.2.0 <2.0.0
363 verbose addNamed ">=1.2.0 <2.0.0" is a valid semver range for minimist
364 silly addNameRange { name: 'minimist', range: '>=1.2.0 <2.0.0', hasData: false }
365 silly mapToRegistry name minimist
366 silly mapToRegistry using default registry
367 silly mapToRegistry registry https://registry.npmjs.org/
368 silly mapToRegistry uri https://registry.npmjs.org/minimist
369 verbose addNameRange registry:https://registry.npmjs.org/minimist not in flight; fetching
370 silly cache afterAdd [email protected]
371 verbose afterAdd /home/daniel/.npm/npcache/1.0.2/package/package.json not in flight; writing
372 silly resolveWithNewModule [email protected] checking installable status
373 silly cache add args [ 'tilde-path@^3.0.0', null ]
374 verbose cache add spec tilde-path@^3.0.0
375 silly cache add parsed spec Result {
375 silly cache add raw: 'tilde-path@^3.0.0',
375 silly cache add scope: null,
375 silly cache add name: 'tilde-path',
375 silly cache add rawSpec: '^3.0.0',
375 silly cache add spec: '>=3.0.0 <4.0.0',
375 silly cache add type: 'range' }
376 silly addNamed tilde-path@>=3.0.0 <4.0.0
377 verbose addNamed ">=3.0.0 <4.0.0" is a valid semver range for tilde-path
378 silly addNameRange { name: 'tilde-path', range: '>=3.0.0 <4.0.0', hasData: false }
379 silly mapToRegistry name tilde-path
380 silly mapToRegistry using default registry
381 silly mapToRegistry registry https://registry.npmjs.org/
382 silly mapToRegistry uri https://registry.npmjs.org/tilde-path
383 verbose addNameRange registry:https://registry.npmjs.org/tilde-path not in flight; fetching
384 http 304 https://registry.npmjs.org/neat-stack
385 verbose headers { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
385 verbose headers connection: 'keep-alive',
385 verbose headers 'set-cookie': [ '__cfduid=db2c824ad7cb825f4b03455b983a8f99a1561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
385 verbose headers 'cf-cache-status': 'HIT',
385 verbose headers 'cache-control': 'max-age=300',
385 verbose headers 'cf-ray': '4ecf0d71e9c8ce47-LHR',
385 verbose headers age: '35',
385 verbose headers etag: '"8a9db02546c65e298e37125ce133a1db"',
385 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
385 verbose headers 'last-modified': 'Fri, 04 Jan 2019 21:33:24 GMT',
385 verbose headers vary: 'accept-encoding, accept',
385 verbose headers 'x-amz-meta-rev': '8-456650a0435132ae2f21ec33f8b38287',
385 verbose headers server: 'cloudflare' }
386 silly get cb [ 304,
386 silly get { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
386 silly get connection: 'keep-alive',
386 silly get 'set-cookie': [ '__cfduid=db2c824ad7cb825f4b03455b983a8f99a1561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
386 silly get 'cf-cache-status': 'HIT',
386 silly get 'cache-control': 'max-age=300',
386 silly get 'cf-ray': '4ecf0d71e9c8ce47-LHR',
386 silly get age: '35',
386 silly get etag: '"8a9db02546c65e298e37125ce133a1db"',
386 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
386 silly get 'last-modified': 'Fri, 04 Jan 2019 21:33:24 GMT',
386 silly get vary: 'accept-encoding, accept',
386 silly get 'x-amz-meta-rev': '8-456650a0435132ae2f21ec33f8b38287',
386 silly get server: 'cloudflare' } ]
387 verbose etag https://registry.npmjs.org/neat-stack from cache
388 verbose get saving neat-stack to /home/daniel/.npm/registry.npmjs.org/neat-stack/.cache.json
389 http 304 https://registry.npmjs.org/filesize
390 verbose headers { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
390 verbose headers connection: 'keep-alive',
390 verbose headers 'set-cookie': [ '__cfduid=dd484ecfeffb27b5475c1db8f6b306ba71561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
390 verbose headers 'cf-cache-status': 'HIT',
390 verbose headers 'cache-control': 'max-age=300',
390 verbose headers 'cf-ray': '4ecf0d71dca8ce2f-LHR',
390 verbose headers age: '6491',
390 verbose headers etag: '"120ddf94a5703021a03aab6e86ec6182"',
390 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
390 verbose headers 'last-modified': 'Fri, 15 Feb 2019 13:51:50 GMT',
390 verbose headers vary: 'accept-encoding, accept',
390 verbose headers 'x-amz-meta-rev': '170-74f0d88bf437d831689d82223cc0f30a',
390 verbose headers server: 'cloudflare' }
391 silly get cb [ 304,
391 silly get { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
391 silly get connection: 'keep-alive',
391 silly get 'set-cookie': [ '__cfduid=dd484ecfeffb27b5475c1db8f6b306ba71561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
391 silly get 'cf-cache-status': 'HIT',
391 silly get 'cache-control': 'max-age=300',
391 silly get 'cf-ray': '4ecf0d71dca8ce2f-LHR',
391 silly get age: '6491',
391 silly get etag: '"120ddf94a5703021a03aab6e86ec6182"',
391 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
391 silly get 'last-modified': 'Fri, 15 Feb 2019 13:51:50 GMT',
391 silly get vary: 'accept-encoding, accept',
391 silly get 'x-amz-meta-rev': '170-74f0d88bf437d831689d82223cc0f30a',
391 silly get server: 'cloudflare' } ]
392 verbose etag https://registry.npmjs.org/filesize from cache
393 verbose get saving filesize to /home/daniel/.npm/registry.npmjs.org/filesize/.cache.json
394 http 304 https://registry.npmjs.org/tty-width-frame
395 verbose headers { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
395 verbose headers connection: 'keep-alive',
395 verbose headers 'set-cookie': [ '__cfduid=d4029d4fb9644f393e220826af348f4591561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
395 verbose headers 'cf-cache-status': 'HIT',
395 verbose headers 'cache-control': 'max-age=300',
395 verbose headers 'cf-ray': '4ecf0d71e84ace63-LHR',
395 verbose headers age: '35',
395 verbose headers etag: '"85099c5d6c8f9498c49f062f55ef4cd7"',
395 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
395 verbose headers 'last-modified': 'Fri, 08 Mar 2019 13:49:04 GMT',
395 verbose headers vary: 'accept-encoding, accept',
395 verbose headers 'x-amz-meta-rev': '5-2367a485ee80d132bc6c93aadbc38264',
395 verbose headers server: 'cloudflare' }
396 silly get cb [ 304,
396 silly get { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
396 silly get connection: 'keep-alive',
396 silly get 'set-cookie': [ '__cfduid=d4029d4fb9644f393e220826af348f4591561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
396 silly get 'cf-cache-status': 'HIT',
396 silly get 'cache-control': 'max-age=300',
396 silly get 'cf-ray': '4ecf0d71e84ace63-LHR',
396 silly get age: '35',
396 silly get etag: '"85099c5d6c8f9498c49f062f55ef4cd7"',
396 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
396 silly get 'last-modified': 'Fri, 08 Mar 2019 13:49:04 GMT',
396 silly get vary: 'accept-encoding, accept',
396 silly get 'x-amz-meta-rev': '5-2367a485ee80d132bc6c93aadbc38264',
396 silly get server: 'cloudflare' } ]
397 verbose etag https://registry.npmjs.org/tty-width-frame from cache
398 verbose get saving tty-width-frame to /home/daniel/.npm/registry.npmjs.org/tty-width-frame/.cache.json
399 http 304 https://registry.npmjs.org/vertical-meter
400 verbose headers { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
400 verbose headers connection: 'keep-alive',
400 verbose headers 'set-cookie': [ '__cfduid=d8ae1a29d32ce53ace8214d878f4073c71561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
400 verbose headers 'cf-cache-status': 'HIT',
400 verbose headers 'cache-control': 'max-age=300',
400 verbose headers 'cf-ray': '4ecf0d71fd096a4d-LHR',
400 verbose headers age: '35',
400 verbose headers etag: '"343647becb7cc3f0ae1785a8f2eb4e31"',
400 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
400 verbose headers 'last-modified': 'Sun, 27 May 2018 20:50:56 GMT',
400 verbose headers vary: 'accept-encoding, accept',
400 verbose headers server: 'cloudflare' }
401 silly get cb [ 304,
401 silly get { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
401 silly get connection: 'keep-alive',
401 silly get 'set-cookie': [ '__cfduid=d8ae1a29d32ce53ace8214d878f4073c71561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
401 silly get 'cf-cache-status': 'HIT',
401 silly get 'cache-control': 'max-age=300',
401 silly get 'cf-ray': '4ecf0d71fd096a4d-LHR',
401 silly get age: '35',
401 silly get etag: '"343647becb7cc3f0ae1785a8f2eb4e31"',
401 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
401 silly get 'last-modified': 'Sun, 27 May 2018 20:50:56 GMT',
401 silly get vary: 'accept-encoding, accept',
401 silly get server: 'cloudflare' } ]
402 verbose etag https://registry.npmjs.org/vertical-meter from cache
403 verbose get saving vertical-meter to /home/daniel/.npm/registry.npmjs.org/vertical-meter/.cache.json
404 verbose get https://registry.npmjs.org/log-update not expired, no request
405 silly addNameRange number 2 { name: 'log-update', range: '>=3.2.0 <4.0.0', hasData: true }
406 silly addNameRange versions [ 'log-update',
406 silly addNameRange [ '1.0.0',
406 silly addNameRange '1.0.1',
406 silly addNameRange '1.0.2',
406 silly addNameRange '2.0.0',
406 silly addNameRange '2.1.0',
406 silly addNameRange '2.2.0',
406 silly addNameRange '2.3.0',
406 silly addNameRange '3.0.0',
406 silly addNameRange '3.1.0',
406 silly addNameRange '3.1.1',
406 silly addNameRange '3.2.0' ] ]
407 silly addNamed [email protected]
408 verbose addNamed "3.2.0" is a plain semver version for log-update
409 verbose get https://registry.npmjs.org/ms not expired, no request
410 silly addNameRange number 2 { name: 'ms', range: '>=2.1.1 <3.0.0', hasData: true }
411 silly addNameRange versions [ 'ms',
411 silly addNameRange [ '0.1.0',
411 silly addNameRange '0.2.0',
411 silly addNameRange '0.3.0',
411 silly addNameRange '0.4.0',
411 silly addNameRange '0.5.0',
411 silly addNameRange '0.5.1',
411 silly addNameRange '0.6.0',
411 silly addNameRange '0.6.1',
411 silly addNameRange '0.6.2',
411 silly addNameRange '0.7.0',
411 silly addNameRange '0.7.1',
411 silly addNameRange '0.7.2',
411 silly addNameRange '0.7.3',
411 silly addNameRange '1.0.0',
411 silly addNameRange '2.0.0',
411 silly addNameRange '2.1.0',
411 silly addNameRange '2.1.1',
411 silly addNameRange '2.1.2' ] ]
412 silly addNamed [email protected]
413 verbose addNamed "2.1.2" is a plain semver version for ms
414 http 304 https://registry.npmjs.org/tty-truncate
415 verbose headers { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
415 verbose headers connection: 'keep-alive',
415 verbose headers 'set-cookie': [ '__cfduid=d9c57c239a60916837e7ac238703404381561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
415 verbose headers 'cf-cache-status': 'HIT',
415 verbose headers 'cache-control': 'max-age=300',
415 verbose headers 'cf-ray': '4ecf0d71ea28ce27-LHR',
415 verbose headers age: '35',
415 verbose headers etag: '"dd348b3a8c3e2e9da9429c374395c864"',
415 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
415 verbose headers 'last-modified': 'Sat, 05 Jan 2019 16:31:48 GMT',
415 verbose headers vary: 'accept-encoding, accept',
415 verbose headers 'x-amz-meta-rev': '10-b32ecbaccd6f96d63dd507990732e01b',
415 verbose headers server: 'cloudflare' }
416 silly get cb [ 304,
416 silly get { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
416 silly get connection: 'keep-alive',
416 silly get 'set-cookie': [ '__cfduid=d9c57c239a60916837e7ac238703404381561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
416 silly get 'cf-cache-status': 'HIT',
416 silly get 'cache-control': 'max-age=300',
416 silly get 'cf-ray': '4ecf0d71ea28ce27-LHR',
416 silly get age: '35',
416 silly get etag: '"dd348b3a8c3e2e9da9429c374395c864"',
416 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
416 silly get 'last-modified': 'Sat, 05 Jan 2019 16:31:48 GMT',
416 silly get vary: 'accept-encoding, accept',
416 silly get 'x-amz-meta-rev': '10-b32ecbaccd6f96d63dd507990732e01b',
416 silly get server: 'cloudflare' } ]
417 verbose etag https://registry.npmjs.org/tty-truncate from cache
418 verbose get saving tty-truncate to /home/daniel/.npm/registry.npmjs.org/tty-truncate/.cache.json
419 verbose get https://registry.npmjs.org/minimist not expired, no request
420 silly addNameRange number 2 { name: 'minimist', range: '>=1.2.0 <2.0.0', hasData: true }
421 silly addNameRange versions [ 'minimist',
421 silly addNameRange [ '0.0.0',
421 silly addNameRange '0.0.1',
421 silly addNameRange '0.0.2',
421 silly addNameRange '0.0.3',
421 silly addNameRange '0.0.4',
421 silly addNameRange '0.0.5',
421 silly addNameRange '0.0.6',
421 silly addNameRange '0.0.7',
421 silly addNameRange '0.0.8',
421 silly addNameRange '0.0.9',
421 silly addNameRange '0.0.10',
421 silly addNameRange '0.1.0',
421 silly addNameRange '0.2.0',
421 silly addNameRange '1.0.0',
421 silly addNameRange '1.1.0',
421 silly addNameRange '1.1.1',
421 silly addNameRange '1.1.2',
421 silly addNameRange '1.1.3',
421 silly addNameRange '1.2.0' ] ]
422 silly addNamed [email protected]
423 verbose addNamed "1.2.0" is a plain semver version for minimist
424 verbose get https://registry.npmjs.org/tilde-path not expired, no request
425 silly addNameRange number 2 { name: 'tilde-path', range: '>=3.0.0 <4.0.0', hasData: true }
426 silly addNameRange versions [ 'tilde-path',
426 silly addNameRange [ '0.0.0', '0.0.1', '0.1.0', '0.2.0', '1.0.0', '2.0.0', '3.0.0' ] ]
427 silly addNamed [email protected]
428 verbose addNamed "3.0.0" is a plain semver version for tilde-path
429 verbose afterAdd /home/daniel/.npm/npcache/1.0.2/package/package.json written
430 verbose afterAdd /home/daniel/.npm/log-symbols/3.0.0/package/package.json written
431 http 304 https://registry.npmjs.org/size-rate
432 verbose headers { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
432 verbose headers connection: 'keep-alive',
432 verbose headers 'set-cookie': [ '__cfduid=d156304b10064ddd7ad9661284f8a5e381561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
432 verbose headers 'cf-cache-status': 'HIT',
432 verbose headers 'cache-control': 'max-age=300',
432 verbose headers 'cf-ray': '4ecf0d71fae0bbe2-LHR',
432 verbose headers age: '35',
432 verbose headers etag: '"b2a2f3fc2c30d9ed2550607790376357"',
432 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
432 verbose headers 'last-modified': 'Sun, 17 Mar 2019 23:56:30 GMT',
432 verbose headers vary: 'accept-encoding, accept',
432 verbose headers 'x-amz-meta-rev': '7-e5b9037c8e1332c95679389bc789275a',
432 verbose headers server: 'cloudflare' }
433 silly get cb [ 304,
433 silly get { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
433 silly get connection: 'keep-alive',
433 silly get 'set-cookie': [ '__cfduid=d156304b10064ddd7ad9661284f8a5e381561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
433 silly get 'cf-cache-status': 'HIT',
433 silly get 'cache-control': 'max-age=300',
433 silly get 'cf-ray': '4ecf0d71fae0bbe2-LHR',
433 silly get age: '35',
433 silly get etag: '"b2a2f3fc2c30d9ed2550607790376357"',
433 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
433 silly get 'last-modified': 'Sun, 17 Mar 2019 23:56:30 GMT',
433 silly get vary: 'accept-encoding, accept',
433 silly get 'x-amz-meta-rev': '7-e5b9037c8e1332c95679389bc789275a',
433 silly get server: 'cloudflare' } ]
434 verbose etag https://registry.npmjs.org/size-rate from cache
435 verbose get saving size-rate to /home/daniel/.npm/registry.npmjs.org/size-rate/.cache.json
436 silly resolveWithNewModule [email protected] checking installable status
437 silly cache add args [ 'tty-width-frame@^1.0.2', null ]
438 verbose cache add spec tty-width-frame@^1.0.2
439 silly cache add parsed spec Result {
439 silly cache add raw: 'tty-width-frame@^1.0.2',
439 silly cache add scope: null,
439 silly cache add name: 'tty-width-frame',
439 silly cache add rawSpec: '^1.0.2',
439 silly cache add spec: '>=1.0.2 <2.0.0',
439 silly cache add type: 'range' }
440 silly addNamed tty-width-frame@>=1.0.2 <2.0.0
441 verbose addNamed ">=1.0.2 <2.0.0" is a valid semver range for tty-width-frame
442 silly addNameRange { name: 'tty-width-frame',
442 silly addNameRange range: '>=1.0.2 <2.0.0',
442 silly addNameRange hasData: false }
443 silly mapToRegistry name tty-width-frame
444 silly mapToRegistry using default registry
445 silly mapToRegistry registry https://registry.npmjs.org/
446 silly mapToRegistry uri https://registry.npmjs.org/tty-width-frame
447 verbose addNameRange registry:https://registry.npmjs.org/tty-width-frame not in flight; fetching
448 silly resolveWithNewModule [email protected] checking installable status
449 silly cache add args [ 'neat-stack@^1.0.1', null ]
450 verbose cache add spec neat-stack@^1.0.1
451 silly cache add parsed spec Result {
451 silly cache add raw: 'neat-stack@^1.0.1',
451 silly cache add scope: null,
451 silly cache add name: 'neat-stack',
451 silly cache add rawSpec: '^1.0.1',
451 silly cache add spec: '>=1.0.1 <2.0.0',
451 silly cache add type: 'range' }
452 silly addNamed neat-stack@>=1.0.1 <2.0.0
453 verbose addNamed ">=1.0.1 <2.0.0" is a valid semver range for neat-stack
454 silly addNameRange { name: 'neat-stack', range: '>=1.0.1 <2.0.0', hasData: false }
455 silly mapToRegistry name neat-stack
456 silly mapToRegistry using default registry
457 silly mapToRegistry registry https://registry.npmjs.org/
458 silly mapToRegistry uri https://registry.npmjs.org/neat-stack
459 verbose addNameRange registry:https://registry.npmjs.org/neat-stack not in flight; fetching
460 silly resolveWithNewModule [email protected] checking installable status
461 silly cache add args [ 'filesize@^4.1.2', null ]
462 verbose cache add spec filesize@^4.1.2
463 silly cache add parsed spec Result {
463 silly cache add raw: 'filesize@^4.1.2',
463 silly cache add scope: null,
463 silly cache add name: 'filesize',
463 silly cache add rawSpec: '^4.1.2',
463 silly cache add spec: '>=4.1.2 <5.0.0',
463 silly cache add type: 'range' }
464 silly addNamed filesize@>=4.1.2 <5.0.0
465 verbose addNamed ">=4.1.2 <5.0.0" is a valid semver range for filesize
466 silly addNameRange { name: 'filesize', range: '>=4.1.2 <5.0.0', hasData: false }
467 silly mapToRegistry name filesize
468 silly mapToRegistry using default registry
469 silly mapToRegistry registry https://registry.npmjs.org/
470 silly mapToRegistry uri https://registry.npmjs.org/filesize
471 verbose addNameRange registry:https://registry.npmjs.org/filesize not in flight; fetching
472 silly cache afterAdd [email protected]
473 verbose afterAdd /home/daniel/.npm/log-update/3.2.0/package/package.json not in flight; writing
474 silly cache afterAdd [email protected]
475 verbose afterAdd /home/daniel/.npm/ms/2.1.2/package/package.json not in flight; writing
476 silly resolveWithNewModule [email protected] checking installable status
477 silly cache add args [ 'vertical-meter@^1.0.0', null ]
478 verbose cache add spec vertical-meter@^1.0.0
479 silly cache add parsed spec Result {
479 silly cache add raw: 'vertical-meter@^1.0.0',
479 silly cache add scope: null,
479 silly cache add name: 'vertical-meter',
479 silly cache add rawSpec: '^1.0.0',
479 silly cache add spec: '>=1.0.0 <2.0.0',
479 silly cache add type: 'range' }
480 silly addNamed vertical-meter@>=1.0.0 <2.0.0
481 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for vertical-meter
482 silly addNameRange { name: 'vertical-meter',
482 silly addNameRange range: '>=1.0.0 <2.0.0',
482 silly addNameRange hasData: false }
483 silly mapToRegistry name vertical-meter
484 silly mapToRegistry using default registry
485 silly mapToRegistry registry https://registry.npmjs.org/
486 silly mapToRegistry uri https://registry.npmjs.org/vertical-meter
487 verbose addNameRange registry:https://registry.npmjs.org/vertical-meter not in flight; fetching
488 http 304 https://registry.npmjs.org/install-purescript
489 verbose headers { date: 'Wed, 26 Jun 2019 12:05:58 GMT',
489 verbose headers connection: 'keep-alive',
489 verbose headers 'set-cookie': [ '__cfduid=d5475f6148f22c51c074ccde0596591481561550758; expires=Thu, 25-Jun-20 12:05:58 GMT; path=/; domain=.npmjs.org; HttpOnly' ],
489 verbose headers 'cf-cache-status': 'HIT',
489 verbose headers 'cache-control': 'max-age=300',
489 verbose headers 'cf-ray': '4ecf0d71da983606-LHR',
489 verbose headers age: '35',
489 verbose headers etag: '"bad4ce72d8372d592aa6ef8608f361a2"',
489 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
489 verbose headers 'last-modified': 'Tue, 04 Jun 2019 01:33:11 GMT',
489 verbose headers vary: 'accept-encoding, accept',
489 verbose headers 'x-amz-meta-rev': '32-cdde88e30423e163c5e754bf57a0cfc4',
489 verbose headers server: 'cloudflare' }