This repository has been archived by the owner on Mar 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
npm-debug.log
6001 lines (6001 loc) · 326 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/node', '/usr/bin/npm', 'install', '-g', 'less' ]
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 less
8 silly fetchNamedPackageData less
9 silly mapToRegistry name less
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry uri https://registry.npmjs.org/less
13 verbose request uri https://registry.npmjs.org/less
14 verbose request no auth needed
15 info attempt registry request try #1 at 13:48:56
16 verbose request id a4b6025c8aea6240
17 http request GET https://registry.npmjs.org/less
18 http 200 https://registry.npmjs.org/less
19 verbose headers { date: 'Fri, 22 May 2020 11:48:56 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=d617ade07ecf1d2217c245d16895bbe0b1590148136; expires=Sun, 21-Jun-20 11:48:56 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
19 verbose headers 'cf-ray': '59764f9dd951dfc7-FRA',
19 verbose headers age: '4984',
19 verbose headers 'cache-control': 'public, max-age=300',
19 verbose headers etag: 'W/"a9190f37b834d4c1d31bac3321453584"',
19 verbose headers 'last-modified': 'Tue, 11 Feb 2020 05:58:33 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',
19 verbose headers 'cf-request-id': '02ddd016a30000dfc72a85c200000001' }
20 silly get cb [ 200,
20 silly get { date: 'Fri, 22 May 2020 11:48:56 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=d617ade07ecf1d2217c245d16895bbe0b1590148136; expires=Sun, 21-Jun-20 11:48:56 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
20 silly get 'cf-ray': '59764f9dd951dfc7-FRA',
20 silly get age: '4984',
20 silly get 'cache-control': 'public, max-age=300',
20 silly get etag: 'W/"a9190f37b834d4c1d31bac3321453584"',
20 silly get 'last-modified': 'Tue, 11 Feb 2020 05:58:33 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',
20 silly get 'cf-request-id': '02ddd016a30000dfc72a85c200000001' } ]
21 verbose get saving less to /home/christine/.npm/registry.npmjs.org/less/.cache.json
22 silly install normalizeTree
23 silly loadCurrentTree Finishing
24 silly loadIdealTree Starting
25 silly install loadIdealTree
26 silly cloneCurrentTree Starting
27 silly install cloneCurrentTreeToIdealTree
28 silly cloneCurrentTree Finishing
29 silly loadShrinkwrap Starting
30 silly install loadShrinkwrap
31 silly loadShrinkwrap Finishing
32 silly loadAllDepsIntoIdealTree Starting
33 silly install loadAllDepsIntoIdealTree
34 silly resolveWithNewModule [email protected] checking installable status
35 silly cache add args [ 'less', null ]
36 verbose cache add spec less
37 silly cache add parsed spec Result {
37 silly cache add raw: 'less',
37 silly cache add scope: null,
37 silly cache add name: 'less',
37 silly cache add rawSpec: '',
37 silly cache add spec: 'latest',
37 silly cache add type: 'tag' }
38 silly addNamed less@latest
39 verbose addNamed "latest" is being treated as a dist-tag for less
40 info addNameTag [ 'less', 'latest' ]
41 silly mapToRegistry name less
42 silly mapToRegistry using default registry
43 silly mapToRegistry registry https://registry.npmjs.org/
44 silly mapToRegistry uri https://registry.npmjs.org/less
45 verbose addNameTag registry:https://registry.npmjs.org/less not in flight; fetching
46 verbose get https://registry.npmjs.org/less not expired, no request
47 silly addNameTag next cb for less with tag latest
48 silly addNamed [email protected]
49 verbose addNamed "3.11.1" is a plain semver version for less
50 silly mapToRegistry name less
51 silly mapToRegistry using default registry
52 silly mapToRegistry registry https://registry.npmjs.org/
53 silly mapToRegistry uri https://registry.npmjs.org/less
54 verbose addRemoteTarball https://registry.npmjs.org/less/-/less-3.11.1.tgz not in flight; adding
55 verbose addRemoteTarball [ 'https://registry.npmjs.org/less/-/less-3.11.1.tgz',
55 verbose addRemoteTarball 'c6bf08e39e02404fe6b307a3dfffafdc55bd36e2' ]
56 info retry fetch attempt 1 at 13:48:56
57 info attempt registry request try #1 at 13:48:56
58 http fetch GET https://registry.npmjs.org/less/-/less-3.11.1.tgz
59 http fetch 200 https://registry.npmjs.org/less/-/less-3.11.1.tgz
60 silly fetchAndShaCheck shasum c6bf08e39e02404fe6b307a3dfffafdc55bd36e2
61 verbose addTmpTarball /tmp/npm-5369-43d945e1/registry.npmjs.org/less/-/less-3.11.1.tgz not in flight; adding
62 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
63 silly cache afterAdd [email protected]
64 verbose afterAdd /home/christine/.npm/less/3.11.1/package/package.json not in flight; writing
65 verbose afterAdd /home/christine/.npm/less/3.11.1/package/package.json written
66 silly fetchNamedPackageData clone
67 silly mapToRegistry name clone
68 silly mapToRegistry using default registry
69 silly mapToRegistry registry https://registry.npmjs.org/
70 silly mapToRegistry uri https://registry.npmjs.org/clone
71 silly fetchNamedPackageData tslib
72 silly mapToRegistry name tslib
73 silly mapToRegistry using default registry
74 silly mapToRegistry registry https://registry.npmjs.org/
75 silly mapToRegistry uri https://registry.npmjs.org/tslib
76 silly fetchNamedPackageData errno
77 silly mapToRegistry name errno
78 silly mapToRegistry using default registry
79 silly mapToRegistry registry https://registry.npmjs.org/
80 silly mapToRegistry uri https://registry.npmjs.org/errno
81 silly fetchNamedPackageData graceful-fs
82 silly mapToRegistry name graceful-fs
83 silly mapToRegistry using default registry
84 silly mapToRegistry registry https://registry.npmjs.org/
85 silly mapToRegistry uri https://registry.npmjs.org/graceful-fs
86 silly fetchNamedPackageData image-size
87 silly mapToRegistry name image-size
88 silly mapToRegistry using default registry
89 silly mapToRegistry registry https://registry.npmjs.org/
90 silly mapToRegistry uri https://registry.npmjs.org/image-size
91 silly fetchNamedPackageData mime
92 silly mapToRegistry name mime
93 silly mapToRegistry using default registry
94 silly mapToRegistry registry https://registry.npmjs.org/
95 silly mapToRegistry uri https://registry.npmjs.org/mime
96 silly fetchNamedPackageData mkdirp
97 silly mapToRegistry name mkdirp
98 silly mapToRegistry using default registry
99 silly mapToRegistry registry https://registry.npmjs.org/
100 silly mapToRegistry uri https://registry.npmjs.org/mkdirp
101 silly fetchNamedPackageData promise
102 silly mapToRegistry name promise
103 silly mapToRegistry using default registry
104 silly mapToRegistry registry https://registry.npmjs.org/
105 silly mapToRegistry uri https://registry.npmjs.org/promise
106 silly fetchNamedPackageData request
107 silly mapToRegistry name request
108 silly mapToRegistry using default registry
109 silly mapToRegistry registry https://registry.npmjs.org/
110 silly mapToRegistry uri https://registry.npmjs.org/request
111 silly fetchNamedPackageData source-map
112 silly mapToRegistry name source-map
113 silly mapToRegistry using default registry
114 silly mapToRegistry registry https://registry.npmjs.org/
115 silly mapToRegistry uri https://registry.npmjs.org/source-map
116 verbose request uri https://registry.npmjs.org/clone
117 verbose request no auth needed
118 info attempt registry request try #1 at 13:48:57
119 http request GET https://registry.npmjs.org/clone
120 verbose request uri https://registry.npmjs.org/image-size
121 verbose request no auth needed
122 info attempt registry request try #1 at 13:48:57
123 http request GET https://registry.npmjs.org/image-size
124 verbose request uri https://registry.npmjs.org/mime
125 verbose request no auth needed
126 info attempt registry request try #1 at 13:48:57
127 http request GET https://registry.npmjs.org/mime
128 verbose request uri https://registry.npmjs.org/promise
129 verbose request no auth needed
130 info attempt registry request try #1 at 13:48:57
131 http request GET https://registry.npmjs.org/promise
132 verbose request uri https://registry.npmjs.org/graceful-fs
133 verbose request no auth needed
134 info attempt registry request try #1 at 13:48:57
135 verbose etag W/"1c460ab789b9e8543b95c4b5a6c375f3"
136 verbose lastModified Wed, 23 Oct 2019 22:53:09 GMT
137 http request GET https://registry.npmjs.org/graceful-fs
138 verbose request uri https://registry.npmjs.org/tslib
139 verbose request no auth needed
140 info attempt registry request try #1 at 13:48:57
141 verbose etag W/"b925b4fe86c5df36369bde3707715b35"
142 verbose lastModified Thu, 27 Feb 2020 19:32:28 GMT
143 http request GET https://registry.npmjs.org/tslib
144 verbose request uri https://registry.npmjs.org/errno
145 verbose request no auth needed
146 info attempt registry request try #1 at 13:48:57
147 verbose etag W/"93d3c79a655f99137298121fc95d36c6"
148 verbose lastModified Sat, 26 May 2018 23:40:24 GMT
149 http request GET https://registry.npmjs.org/errno
150 verbose request uri https://registry.npmjs.org/mkdirp
151 verbose request no auth needed
152 info attempt registry request try #1 at 13:48:57
153 verbose etag W/"d524362c92a3b75a83d0bed6625f637f"
154 verbose lastModified Fri, 24 Jan 2020 21:00:58 GMT
155 http request GET https://registry.npmjs.org/mkdirp
156 verbose request uri https://registry.npmjs.org/request
157 verbose request no auth needed
158 info attempt registry request try #1 at 13:48:57
159 verbose etag W/"c566e68fc36cacf0ca652754877088f1"
160 verbose lastModified Fri, 11 Oct 2019 09:45:45 GMT
161 http request GET https://registry.npmjs.org/request
162 verbose request uri https://registry.npmjs.org/source-map
163 verbose request no auth needed
164 info attempt registry request try #1 at 13:48:57
165 verbose etag W/"07eab35bfd437f0fa78a36e45ec561e4"
166 verbose lastModified Wed, 03 Jul 2019 00:29:13 GMT
167 http request GET https://registry.npmjs.org/source-map
168 http 200 https://registry.npmjs.org/clone
169 verbose headers { date: 'Fri, 22 May 2020 11:48:57 GMT',
169 verbose headers 'content-type': 'application/json; charset=UTF-8',
169 verbose headers 'transfer-encoding': 'chunked',
169 verbose headers connection: 'keep-alive',
169 verbose headers 'set-cookie':
169 verbose headers [ '__cfduid=d3adb321249b44604682ca627e182cc9b1590148137; expires=Sun, 21-Jun-20 11:48:57 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
169 verbose headers 'cf-ray': '59764fa18be1dfc7-FRA',
169 verbose headers age: '5315',
169 verbose headers 'cache-control': 'public, max-age=300',
169 verbose headers etag: 'W/"e7f514de950dc8f5a0f30b1fd58d0420"',
169 verbose headers 'last-modified': 'Wed, 01 Aug 2018 22:56:48 GMT',
169 verbose headers vary: 'accept-encoding, accept',
169 verbose headers 'cf-cache-status': 'HIT',
169 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
169 verbose headers server: 'cloudflare',
169 verbose headers 'content-encoding': 'gzip',
169 verbose headers 'cf-request-id': '02ddd018f30000dfc72a87f200000001' }
170 silly get cb [ 200,
170 silly get { date: 'Fri, 22 May 2020 11:48:57 GMT',
170 silly get 'content-type': 'application/json; charset=UTF-8',
170 silly get 'transfer-encoding': 'chunked',
170 silly get connection: 'keep-alive',
170 silly get 'set-cookie':
170 silly get [ '__cfduid=d3adb321249b44604682ca627e182cc9b1590148137; expires=Sun, 21-Jun-20 11:48:57 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
170 silly get 'cf-ray': '59764fa18be1dfc7-FRA',
170 silly get age: '5315',
170 silly get 'cache-control': 'public, max-age=300',
170 silly get etag: 'W/"e7f514de950dc8f5a0f30b1fd58d0420"',
170 silly get 'last-modified': 'Wed, 01 Aug 2018 22:56:48 GMT',
170 silly get vary: 'accept-encoding, accept',
170 silly get 'cf-cache-status': 'HIT',
170 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
170 silly get server: 'cloudflare',
170 silly get 'content-encoding': 'gzip',
170 silly get 'cf-request-id': '02ddd018f30000dfc72a87f200000001' } ]
171 verbose get saving clone to /home/christine/.npm/registry.npmjs.org/clone/.cache.json
172 silly resolveWithNewModule [email protected] checking installable status
173 silly cache add args [ 'clone@^2.1.2', null ]
174 verbose cache add spec clone@^2.1.2
175 silly cache add parsed spec Result {
175 silly cache add raw: 'clone@^2.1.2',
175 silly cache add scope: null,
175 silly cache add name: 'clone',
175 silly cache add rawSpec: '^2.1.2',
175 silly cache add spec: '>=2.1.2 <3.0.0',
175 silly cache add type: 'range' }
176 silly addNamed clone@>=2.1.2 <3.0.0
177 verbose addNamed ">=2.1.2 <3.0.0" is a valid semver range for clone
178 silly addNameRange { name: 'clone', range: '>=2.1.2 <3.0.0', hasData: false }
179 silly mapToRegistry name clone
180 silly mapToRegistry using default registry
181 silly mapToRegistry registry https://registry.npmjs.org/
182 silly mapToRegistry uri https://registry.npmjs.org/clone
183 verbose addNameRange registry:https://registry.npmjs.org/clone not in flight; fetching
184 verbose get https://registry.npmjs.org/clone not expired, no request
185 silly addNameRange number 2 { name: 'clone', range: '>=2.1.2 <3.0.0', hasData: true }
186 silly addNameRange versions [ 'clone',
186 silly addNameRange [ '0.0.0',
186 silly addNameRange '0.0.1',
186 silly addNameRange '0.0.2',
186 silly addNameRange '0.0.3',
186 silly addNameRange '0.0.4',
186 silly addNameRange '0.0.5',
186 silly addNameRange '0.0.6',
186 silly addNameRange '0.0.7',
186 silly addNameRange '0.1.0',
186 silly addNameRange '0.1.1',
186 silly addNameRange '0.1.2',
186 silly addNameRange '0.1.3',
186 silly addNameRange '0.1.4',
186 silly addNameRange '0.1.5',
186 silly addNameRange '0.1.6',
186 silly addNameRange '0.1.7',
186 silly addNameRange '0.1.8',
186 silly addNameRange '0.1.9',
186 silly addNameRange '0.1.10',
186 silly addNameRange '0.1.11',
186 silly addNameRange '0.1.12',
186 silly addNameRange '0.1.13',
186 silly addNameRange '0.1.14',
186 silly addNameRange '0.1.15',
186 silly addNameRange '0.1.16',
186 silly addNameRange '0.1.17',
186 silly addNameRange '0.1.18',
186 silly addNameRange '0.2.0',
186 silly addNameRange '0.1.19',
186 silly addNameRange '1.0.0',
186 silly addNameRange '1.0.1',
186 silly addNameRange '1.0.2',
186 silly addNameRange '2.0.0',
186 silly addNameRange '2.1.0',
186 silly addNameRange '2.1.1',
186 silly addNameRange '1.0.3',
186 silly addNameRange '2.1.2',
186 silly addNameRange '1.0.4' ] ]
187 silly addNamed [email protected]
188 verbose addNamed "2.1.2" is a plain semver version for clone
189 silly mapToRegistry name clone
190 silly mapToRegistry using default registry
191 silly mapToRegistry registry https://registry.npmjs.org/
192 silly mapToRegistry uri https://registry.npmjs.org/clone
193 verbose addRemoteTarball https://registry.npmjs.org/clone/-/clone-2.1.2.tgz not in flight; adding
194 verbose addRemoteTarball [ 'https://registry.npmjs.org/clone/-/clone-2.1.2.tgz',
194 verbose addRemoteTarball '1b7f4b9f591f1e8f83670401600345a02887435f' ]
195 info retry fetch attempt 1 at 13:48:57
196 info attempt registry request try #1 at 13:48:57
197 http fetch GET https://registry.npmjs.org/clone/-/clone-2.1.2.tgz
198 http fetch 200 https://registry.npmjs.org/clone/-/clone-2.1.2.tgz
199 silly fetchAndShaCheck shasum 1b7f4b9f591f1e8f83670401600345a02887435f
200 verbose addTmpTarball /tmp/npm-5369-43d945e1/registry.npmjs.org/clone/-/clone-2.1.2.tgz not in flight; adding
201 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
202 http 200 https://registry.npmjs.org/mime
203 verbose headers { date: 'Fri, 22 May 2020 11:48:57 GMT',
203 verbose headers 'content-type': 'application/json',
203 verbose headers 'transfer-encoding': 'chunked',
203 verbose headers connection: 'keep-alive',
203 verbose headers 'set-cookie':
203 verbose headers [ '__cfduid=d2f816bc144e9d07683b5f46095af6dd51590148137; expires=Sun, 21-Jun-20 11:48:57 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
203 verbose headers 'cf-ray': '59764fa1caba6347-FRA',
203 verbose headers age: '5658',
203 verbose headers 'cache-control': 'public, max-age=300',
203 verbose headers etag: 'W/"06d541b2c21df82e268be063f8846ba5"',
203 verbose headers 'last-modified': 'Fri, 01 May 2020 23:10:52 GMT',
203 verbose headers vary: 'accept-encoding, accept',
203 verbose headers 'cf-cache-status': 'HIT',
203 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
203 verbose headers server: 'cloudflare',
203 verbose headers 'content-encoding': 'gzip',
203 verbose headers 'cf-request-id': '02ddd0192000006347e8890200000001' }
204 silly get cb [ 200,
204 silly get { date: 'Fri, 22 May 2020 11:48:57 GMT',
204 silly get 'content-type': 'application/json',
204 silly get 'transfer-encoding': 'chunked',
204 silly get connection: 'keep-alive',
204 silly get 'set-cookie':
204 silly get [ '__cfduid=d2f816bc144e9d07683b5f46095af6dd51590148137; expires=Sun, 21-Jun-20 11:48:57 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
204 silly get 'cf-ray': '59764fa1caba6347-FRA',
204 silly get age: '5658',
204 silly get 'cache-control': 'public, max-age=300',
204 silly get etag: 'W/"06d541b2c21df82e268be063f8846ba5"',
204 silly get 'last-modified': 'Fri, 01 May 2020 23:10:52 GMT',
204 silly get vary: 'accept-encoding, accept',
204 silly get 'cf-cache-status': 'HIT',
204 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
204 silly get server: 'cloudflare',
204 silly get 'content-encoding': 'gzip',
204 silly get 'cf-request-id': '02ddd0192000006347e8890200000001' } ]
205 verbose get saving mime to /home/christine/.npm/registry.npmjs.org/mime/.cache.json
206 http 304 https://registry.npmjs.org/errno
207 verbose headers { date: 'Fri, 22 May 2020 11:48:57 GMT',
207 verbose headers connection: 'keep-alive',
207 verbose headers 'set-cookie':
207 verbose headers [ '__cfduid=d6501da2c31d6ed13bf98ae2d437c1a051590148137; expires=Sun, 21-Jun-20 11:48:57 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
207 verbose headers 'cf-ray': '59764fa1ddccd6e9-FRA',
207 verbose headers age: '5629',
207 verbose headers 'cache-control': 'public, max-age=300',
207 verbose headers etag: '"93d3c79a655f99137298121fc95d36c6"',
207 verbose headers 'last-modified': 'Sat, 26 May 2018 23:40:24 GMT',
207 verbose headers vary: 'Accept-Encoding',
207 verbose headers 'cf-cache-status': 'HIT',
207 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
207 verbose headers server: 'cloudflare',
207 verbose headers 'cf-request-id': '02ddd019240000d6e975b00200000001' }
208 silly get cb [ 304,
208 silly get { date: 'Fri, 22 May 2020 11:48:57 GMT',
208 silly get connection: 'keep-alive',
208 silly get 'set-cookie':
208 silly get [ '__cfduid=d6501da2c31d6ed13bf98ae2d437c1a051590148137; expires=Sun, 21-Jun-20 11:48:57 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
208 silly get 'cf-ray': '59764fa1ddccd6e9-FRA',
208 silly get age: '5629',
208 silly get 'cache-control': 'public, max-age=300',
208 silly get etag: '"93d3c79a655f99137298121fc95d36c6"',
208 silly get 'last-modified': 'Sat, 26 May 2018 23:40:24 GMT',
208 silly get vary: 'Accept-Encoding',
208 silly get 'cf-cache-status': 'HIT',
208 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
208 silly get server: 'cloudflare',
208 silly get 'cf-request-id': '02ddd019240000d6e975b00200000001' } ]
209 verbose etag https://registry.npmjs.org/errno from cache
210 verbose get saving errno to /home/christine/.npm/registry.npmjs.org/errno/.cache.json
211 http 200 https://registry.npmjs.org/promise
212 verbose headers { date: 'Fri, 22 May 2020 11:48:57 GMT',
212 verbose headers 'content-type': 'application/json',
212 verbose headers 'transfer-encoding': 'chunked',
212 verbose headers connection: 'keep-alive',
212 verbose headers 'set-cookie':
212 verbose headers [ '__cfduid=d0651730248de197cc0bf9e0b3e6fc5ab1590148137; expires=Sun, 21-Jun-20 11:48:57 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
212 verbose headers 'cf-ray': '59764fa1c9c76413-FRA',
212 verbose headers age: '5628',
212 verbose headers 'cache-control': 'public, max-age=300',
212 verbose headers etag: 'W/"0560bb757d840a7a46bf8d008bc75194"',
212 verbose headers 'last-modified': 'Mon, 02 Mar 2020 10:57:46 GMT',
212 verbose headers vary: 'accept-encoding, accept',
212 verbose headers 'cf-cache-status': 'HIT',
212 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
212 verbose headers server: 'cloudflare',
212 verbose headers 'content-encoding': 'gzip',
212 verbose headers 'cf-request-id': '02ddd01920000064135f8cb200000001' }
213 silly get cb [ 200,
213 silly get { date: 'Fri, 22 May 2020 11:48:57 GMT',
213 silly get 'content-type': 'application/json',
213 silly get 'transfer-encoding': 'chunked',
213 silly get connection: 'keep-alive',
213 silly get 'set-cookie':
213 silly get [ '__cfduid=d0651730248de197cc0bf9e0b3e6fc5ab1590148137; expires=Sun, 21-Jun-20 11:48:57 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
213 silly get 'cf-ray': '59764fa1c9c76413-FRA',
213 silly get age: '5628',
213 silly get 'cache-control': 'public, max-age=300',
213 silly get etag: 'W/"0560bb757d840a7a46bf8d008bc75194"',
213 silly get 'last-modified': 'Mon, 02 Mar 2020 10:57:46 GMT',
213 silly get vary: 'accept-encoding, accept',
213 silly get 'cf-cache-status': 'HIT',
213 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
213 silly get server: 'cloudflare',
213 silly get 'content-encoding': 'gzip',
213 silly get 'cf-request-id': '02ddd01920000064135f8cb200000001' } ]
214 verbose get saving promise to /home/christine/.npm/registry.npmjs.org/promise/.cache.json
215 http 200 https://registry.npmjs.org/graceful-fs
216 verbose headers { date: 'Fri, 22 May 2020 11:48:57 GMT',
216 verbose headers 'content-type': 'application/json',
216 verbose headers 'transfer-encoding': 'chunked',
216 verbose headers connection: 'keep-alive',
216 verbose headers 'set-cookie':
216 verbose headers [ '__cfduid=d1ba0ebb5b0def6eb801cd0e2e5f4b1541590148137; expires=Sun, 21-Jun-20 11:48:57 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
216 verbose headers 'cf-ray': '59764fa1da22325c-FRA',
216 verbose headers age: '5345',
216 verbose headers 'cache-control': 'public, max-age=300',
216 verbose headers etag: 'W/"84e1c483529d18a582ac0265096141af"',
216 verbose headers 'last-modified': 'Tue, 28 Apr 2020 15:14:15 GMT',
216 verbose headers vary: 'accept-encoding, accept',
216 verbose headers 'cf-cache-status': 'HIT',
216 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
216 verbose headers server: 'cloudflare',
216 verbose headers 'content-encoding': 'gzip',
216 verbose headers 'cf-request-id': '02ddd019250000325c4cbef200000001' }
217 silly get cb [ 200,
217 silly get { date: 'Fri, 22 May 2020 11:48:57 GMT',
217 silly get 'content-type': 'application/json',
217 silly get 'transfer-encoding': 'chunked',
217 silly get connection: 'keep-alive',
217 silly get 'set-cookie':
217 silly get [ '__cfduid=d1ba0ebb5b0def6eb801cd0e2e5f4b1541590148137; expires=Sun, 21-Jun-20 11:48:57 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
217 silly get 'cf-ray': '59764fa1da22325c-FRA',
217 silly get age: '5345',
217 silly get 'cache-control': 'public, max-age=300',
217 silly get etag: 'W/"84e1c483529d18a582ac0265096141af"',
217 silly get 'last-modified': 'Tue, 28 Apr 2020 15:14:15 GMT',
217 silly get vary: 'accept-encoding, accept',
217 silly get 'cf-cache-status': 'HIT',
217 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
217 silly get server: 'cloudflare',
217 silly get 'content-encoding': 'gzip',
217 silly get 'cf-request-id': '02ddd019250000325c4cbef200000001' } ]
218 verbose get saving graceful-fs to /home/christine/.npm/registry.npmjs.org/graceful-fs/.cache.json
219 silly resolveWithNewModule [email protected] checking installable status
220 silly cache add args [ 'errno@^0.1.1', null ]
221 verbose cache add spec errno@^0.1.1
222 silly cache add parsed spec Result {
222 silly cache add raw: 'errno@^0.1.1',
222 silly cache add scope: null,
222 silly cache add name: 'errno',
222 silly cache add rawSpec: '^0.1.1',
222 silly cache add spec: '>=0.1.1 <0.2.0',
222 silly cache add type: 'range' }
223 silly addNamed errno@>=0.1.1 <0.2.0
224 verbose addNamed ">=0.1.1 <0.2.0" is a valid semver range for errno
225 silly addNameRange { name: 'errno', range: '>=0.1.1 <0.2.0', hasData: false }
226 silly mapToRegistry name errno
227 silly mapToRegistry using default registry
228 silly mapToRegistry registry https://registry.npmjs.org/
229 silly mapToRegistry uri https://registry.npmjs.org/errno
230 verbose addNameRange registry:https://registry.npmjs.org/errno not in flight; fetching
231 silly resolveWithNewModule [email protected] checking installable status
232 silly cache add args [ 'mime@^1.4.1', null ]
233 verbose cache add spec mime@^1.4.1
234 silly cache add parsed spec Result {
234 silly cache add raw: 'mime@^1.4.1',
234 silly cache add scope: null,
234 silly cache add name: 'mime',
234 silly cache add rawSpec: '^1.4.1',
234 silly cache add spec: '>=1.4.1 <2.0.0',
234 silly cache add type: 'range' }
235 silly addNamed mime@>=1.4.1 <2.0.0
236 verbose addNamed ">=1.4.1 <2.0.0" is a valid semver range for mime
237 silly addNameRange { name: 'mime', range: '>=1.4.1 <2.0.0', hasData: false }
238 silly mapToRegistry name mime
239 silly mapToRegistry using default registry
240 silly mapToRegistry registry https://registry.npmjs.org/
241 silly mapToRegistry uri https://registry.npmjs.org/mime
242 verbose addNameRange registry:https://registry.npmjs.org/mime not in flight; fetching
243 http 200 https://registry.npmjs.org/tslib
244 verbose headers { date: 'Fri, 22 May 2020 11:48:57 GMT',
244 verbose headers 'content-type': 'application/json',
244 verbose headers 'transfer-encoding': 'chunked',
244 verbose headers connection: 'keep-alive',
244 verbose headers 'set-cookie':
244 verbose headers [ '__cfduid=de2f13b30bfc4f0fe2c257a08857023531590148137; expires=Sun, 21-Jun-20 11:48:57 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
244 verbose headers 'cf-ray': '59764fa1d9e7d715-FRA',
244 verbose headers age: '5299',
244 verbose headers 'cache-control': 'public, max-age=300',
244 verbose headers etag: 'W/"2b86a514bc0f750da0d0f62d3dbfde51"',
244 verbose headers 'last-modified': 'Wed, 13 May 2020 23:18:43 GMT',
244 verbose headers vary: 'accept-encoding, accept',
244 verbose headers 'cf-cache-status': 'HIT',
244 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
244 verbose headers server: 'cloudflare',
244 verbose headers 'content-encoding': 'gzip',
244 verbose headers 'cf-request-id': '02ddd019240000d715c11d3200000001' }
245 silly get cb [ 200,
245 silly get { date: 'Fri, 22 May 2020 11:48:57 GMT',
245 silly get 'content-type': 'application/json',
245 silly get 'transfer-encoding': 'chunked',
245 silly get connection: 'keep-alive',
245 silly get 'set-cookie':
245 silly get [ '__cfduid=de2f13b30bfc4f0fe2c257a08857023531590148137; expires=Sun, 21-Jun-20 11:48:57 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
245 silly get 'cf-ray': '59764fa1d9e7d715-FRA',
245 silly get age: '5299',
245 silly get 'cache-control': 'public, max-age=300',
245 silly get etag: 'W/"2b86a514bc0f750da0d0f62d3dbfde51"',
245 silly get 'last-modified': 'Wed, 13 May 2020 23:18:43 GMT',
245 silly get vary: 'accept-encoding, accept',
245 silly get 'cf-cache-status': 'HIT',
245 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
245 silly get server: 'cloudflare',
245 silly get 'content-encoding': 'gzip',
245 silly get 'cf-request-id': '02ddd019240000d715c11d3200000001' } ]
246 verbose get saving tslib to /home/christine/.npm/registry.npmjs.org/tslib/.cache.json
247 verbose get https://registry.npmjs.org/errno not expired, no request
248 silly addNameRange number 2 { name: 'errno', range: '>=0.1.1 <0.2.0', hasData: true }
249 silly addNameRange versions [ 'errno',
249 silly addNameRange [ '0.0.1',
249 silly addNameRange '0.0.2',
249 silly addNameRange '0.0.3',
249 silly addNameRange '0.0.4',
249 silly addNameRange '0.0.5',
249 silly addNameRange '0.1.0',
249 silly addNameRange '0.1.1',
249 silly addNameRange '0.1.2',
249 silly addNameRange '0.1.3',
249 silly addNameRange '0.1.4',
249 silly addNameRange '0.1.5',
249 silly addNameRange '0.1.6',
249 silly addNameRange '0.1.7' ] ]
250 silly addNamed [email protected]
251 verbose addNamed "0.1.7" is a plain semver version for errno
252 verbose get https://registry.npmjs.org/mime not expired, no request
253 silly addNameRange number 2 { name: 'mime', range: '>=1.4.1 <2.0.0', hasData: true }
254 silly addNameRange versions [ 'mime',
254 silly addNameRange [ '1.0.0',
254 silly addNameRange '1.1.0',
254 silly addNameRange '1.2.1',
254 silly addNameRange '1.2.2',
254 silly addNameRange '1.2.3',
254 silly addNameRange '1.2.4',
254 silly addNameRange '1.2.5',
254 silly addNameRange '1.2.6',
254 silly addNameRange '1.2.7',
254 silly addNameRange '1.2.8',
254 silly addNameRange '1.2.9',
254 silly addNameRange '1.2.10',
254 silly addNameRange '1.2.11',
254 silly addNameRange '1.3.0',
254 silly addNameRange '1.3.2',
254 silly addNameRange '1.3.3',
254 silly addNameRange '1.3.4',
254 silly addNameRange '1.3.5',
254 silly addNameRange '1.3.6',
254 silly addNameRange '1.4.0',
254 silly addNameRange '2.0.0',
254 silly addNameRange '2.0.1',
254 silly addNameRange '2.0.2',
254 silly addNameRange '1.4.1',
254 silly addNameRange '2.0.3',
254 silly addNameRange '1.5.0',
254 silly addNameRange '1.6.0',
254 silly addNameRange '2.0.5',
254 silly addNameRange '2.1.0',
254 silly addNameRange '2.2.0',
254 silly addNameRange '2.2.1',
254 silly addNameRange '2.2.2',
254 silly addNameRange '2.3.0',
254 silly addNameRange '2.3.1',
254 silly addNameRange '2.4.0',
254 silly addNameRange '2.4.1',
254 silly addNameRange '2.4.2',
254 silly addNameRange '2.4.3',
254 silly addNameRange '2.4.4',
254 silly addNameRange '2.4.5' ] ]
255 silly addNamed [email protected]
256 verbose addNamed "1.6.0" is a plain semver version for mime
257 silly cache afterAdd [email protected]
258 verbose afterAdd /home/christine/.npm/clone/2.1.2/package/package.json not in flight; writing
259 silly mapToRegistry name mime
260 silly mapToRegistry using default registry
261 silly mapToRegistry registry https://registry.npmjs.org/
262 silly mapToRegistry uri https://registry.npmjs.org/mime
263 verbose addRemoteTarball https://registry.npmjs.org/mime/-/mime-1.6.0.tgz not in flight; adding
264 verbose addRemoteTarball [ 'https://registry.npmjs.org/mime/-/mime-1.6.0.tgz',
264 verbose addRemoteTarball '32cd9e5c64553bd58d19a568af452acff04981b1' ]
265 http 200 https://registry.npmjs.org/mkdirp
266 verbose headers { date: 'Fri, 22 May 2020 11:48:57 GMT',
266 verbose headers 'content-type': 'application/json',
266 verbose headers 'transfer-encoding': 'chunked',
266 verbose headers connection: 'keep-alive',
266 verbose headers 'set-cookie':
266 verbose headers [ '__cfduid=d29dbbf504bb01fed0e3216d3e4c64fcc1590148137; expires=Sun, 21-Jun-20 11:48:57 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
266 verbose headers 'cf-ray': '59764fa1fe51175a-FRA',
266 verbose headers age: '5346',
266 verbose headers 'cache-control': 'public, max-age=300',
266 verbose headers etag: 'W/"0730d9c43c136c318d8e19c69cbd72aa"',
266 verbose headers 'last-modified': 'Wed, 22 Apr 2020 06:03:24 GMT',
266 verbose headers vary: 'accept-encoding, accept',
266 verbose headers 'cf-cache-status': 'HIT',
266 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
266 verbose headers server: 'cloudflare',
266 verbose headers 'content-encoding': 'gzip',
266 verbose headers 'cf-request-id': '02ddd019380000175a1e1e7200000001' }
267 silly get cb [ 200,
267 silly get { date: 'Fri, 22 May 2020 11:48:57 GMT',
267 silly get 'content-type': 'application/json',
267 silly get 'transfer-encoding': 'chunked',
267 silly get connection: 'keep-alive',
267 silly get 'set-cookie':
267 silly get [ '__cfduid=d29dbbf504bb01fed0e3216d3e4c64fcc1590148137; expires=Sun, 21-Jun-20 11:48:57 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
267 silly get 'cf-ray': '59764fa1fe51175a-FRA',
267 silly get age: '5346',
267 silly get 'cache-control': 'public, max-age=300',
267 silly get etag: 'W/"0730d9c43c136c318d8e19c69cbd72aa"',
267 silly get 'last-modified': 'Wed, 22 Apr 2020 06:03:24 GMT',
267 silly get vary: 'accept-encoding, accept',
267 silly get 'cf-cache-status': 'HIT',
267 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
267 silly get server: 'cloudflare',
267 silly get 'content-encoding': 'gzip',
267 silly get 'cf-request-id': '02ddd019380000175a1e1e7200000001' } ]
268 verbose get saving mkdirp to /home/christine/.npm/registry.npmjs.org/mkdirp/.cache.json
269 silly resolveWithNewModule [email protected] checking installable status
270 silly cache add args [ 'graceful-fs@^4.1.2', null ]
271 verbose cache add spec graceful-fs@^4.1.2
272 silly cache add parsed spec Result {
272 silly cache add raw: 'graceful-fs@^4.1.2',
272 silly cache add scope: null,
272 silly cache add name: 'graceful-fs',
272 silly cache add rawSpec: '^4.1.2',
272 silly cache add spec: '>=4.1.2 <5.0.0',
272 silly cache add type: 'range' }
273 silly addNamed graceful-fs@>=4.1.2 <5.0.0
274 verbose addNamed ">=4.1.2 <5.0.0" is a valid semver range for graceful-fs
275 silly addNameRange { name: 'graceful-fs', range: '>=4.1.2 <5.0.0', hasData: false }
276 silly mapToRegistry name graceful-fs
277 silly mapToRegistry using default registry
278 silly mapToRegistry registry https://registry.npmjs.org/
279 silly mapToRegistry uri https://registry.npmjs.org/graceful-fs
280 verbose addNameRange registry:https://registry.npmjs.org/graceful-fs not in flight; fetching
281 http 200 https://registry.npmjs.org/image-size
282 verbose headers { date: 'Fri, 22 May 2020 11:48:57 GMT',
282 verbose headers 'content-type': 'application/json',
282 verbose headers 'transfer-encoding': 'chunked',
282 verbose headers connection: 'keep-alive',
282 verbose headers 'set-cookie':
282 verbose headers [ '__cfduid=d69b2d3a0ed04b60eed400c38cdaaf9511590148137; expires=Sun, 21-Jun-20 11:48:57 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
282 verbose headers 'cf-ray': '59764fa1cf14648b-FRA',
282 verbose headers age: '4621',
282 verbose headers 'cache-control': 'public, max-age=300',
282 verbose headers etag: 'W/"c223fda42dcf547145c5fcea3c32c5da"',
282 verbose headers 'last-modified': 'Mon, 30 Sep 2019 10:49:43 GMT',
282 verbose headers vary: 'accept-encoding, accept',
282 verbose headers 'cf-cache-status': 'HIT',
282 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
282 verbose headers server: 'cloudflare',
282 verbose headers 'content-encoding': 'gzip',
282 verbose headers 'cf-request-id': '02ddd0191b0000648bda3f1200000001' }
283 silly get cb [ 200,
283 silly get { date: 'Fri, 22 May 2020 11:48:57 GMT',
283 silly get 'content-type': 'application/json',
283 silly get 'transfer-encoding': 'chunked',
283 silly get connection: 'keep-alive',
283 silly get 'set-cookie':
283 silly get [ '__cfduid=d69b2d3a0ed04b60eed400c38cdaaf9511590148137; expires=Sun, 21-Jun-20 11:48:57 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
283 silly get 'cf-ray': '59764fa1cf14648b-FRA',
283 silly get age: '4621',
283 silly get 'cache-control': 'public, max-age=300',
283 silly get etag: 'W/"c223fda42dcf547145c5fcea3c32c5da"',
283 silly get 'last-modified': 'Mon, 30 Sep 2019 10:49:43 GMT',
283 silly get vary: 'accept-encoding, accept',
283 silly get 'cf-cache-status': 'HIT',
283 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
283 silly get server: 'cloudflare',
283 silly get 'content-encoding': 'gzip',
283 silly get 'cf-request-id': '02ddd0191b0000648bda3f1200000001' } ]
284 verbose get saving image-size to /home/christine/.npm/registry.npmjs.org/image-size/.cache.json
285 silly resolveWithNewModule [email protected] checking installable status
286 silly cache add args [ 'promise@^7.1.1', null ]
287 verbose cache add spec promise@^7.1.1
288 silly cache add parsed spec Result {
288 silly cache add raw: 'promise@^7.1.1',
288 silly cache add scope: null,
288 silly cache add name: 'promise',
288 silly cache add rawSpec: '^7.1.1',
288 silly cache add spec: '>=7.1.1 <8.0.0',
288 silly cache add type: 'range' }
289 silly addNamed promise@>=7.1.1 <8.0.0
290 verbose addNamed ">=7.1.1 <8.0.0" is a valid semver range for promise
291 silly addNameRange { name: 'promise', range: '>=7.1.1 <8.0.0', hasData: false }
292 silly mapToRegistry name promise
293 silly mapToRegistry using default registry
294 silly mapToRegistry registry https://registry.npmjs.org/
295 silly mapToRegistry uri https://registry.npmjs.org/promise
296 verbose addNameRange registry:https://registry.npmjs.org/promise not in flight; fetching
297 info retry fetch attempt 1 at 13:48:57
298 info attempt registry request try #1 at 13:48:57
299 http fetch GET https://registry.npmjs.org/mime/-/mime-1.6.0.tgz
300 silly resolveWithNewModule [email protected] checking installable status
301 silly cache add args [ 'tslib@^1.10.0', null ]
302 verbose cache add spec tslib@^1.10.0
303 silly cache add parsed spec Result {
303 silly cache add raw: 'tslib@^1.10.0',
303 silly cache add scope: null,
303 silly cache add name: 'tslib',
303 silly cache add rawSpec: '^1.10.0',
303 silly cache add spec: '>=1.10.0 <2.0.0',
303 silly cache add type: 'range' }
304 silly addNamed tslib@>=1.10.0 <2.0.0
305 verbose addNamed ">=1.10.0 <2.0.0" is a valid semver range for tslib
306 silly addNameRange { name: 'tslib', range: '>=1.10.0 <2.0.0', hasData: false }
307 silly mapToRegistry name tslib
308 silly mapToRegistry using default registry
309 silly mapToRegistry registry https://registry.npmjs.org/
310 silly mapToRegistry uri https://registry.npmjs.org/tslib
311 verbose addNameRange registry:https://registry.npmjs.org/tslib not in flight; fetching
312 verbose afterAdd /home/christine/.npm/clone/2.1.2/package/package.json written
313 verbose get https://registry.npmjs.org/graceful-fs not expired, no request
314 silly addNameRange number 2 { name: 'graceful-fs', range: '>=4.1.2 <5.0.0', hasData: true }
315 silly addNameRange versions [ 'graceful-fs',
315 silly addNameRange [ '1.0.0',
315 silly addNameRange '1.0.1',
315 silly addNameRange '1.0.2',
315 silly addNameRange '1.1.0',
315 silly addNameRange '1.1.1',
315 silly addNameRange '1.1.2',
315 silly addNameRange '1.1.3',
315 silly addNameRange '1.1.4',
315 silly addNameRange '1.1.5',
315 silly addNameRange '1.1.6',
315 silly addNameRange '1.1.7',
315 silly addNameRange '1.1.8',
315 silly addNameRange '1.1.9',
315 silly addNameRange '1.1.10',
315 silly addNameRange '1.1.11',
315 silly addNameRange '1.1.12',
315 silly addNameRange '1.1.13',
315 silly addNameRange '1.1.14',
315 silly addNameRange '1.2.0',
315 silly addNameRange '1.2.1',
315 silly addNameRange '1.2.2',
315 silly addNameRange '1.2.3',
315 silly addNameRange '2.0.0',
315 silly addNameRange '2.0.1',
315 silly addNameRange '2.0.2',
315 silly addNameRange '2.0.3',
315 silly addNameRange '3.0.0',
315 silly addNameRange '3.0.1',
315 silly addNameRange '3.0.2',
315 silly addNameRange '3.0.3',
315 silly addNameRange '3.0.4',
315 silly addNameRange '3.0.5',
315 silly addNameRange '3.0.6',
315 silly addNameRange '3.0.7',
315 silly addNameRange '3.0.8',
315 silly addNameRange '4.1.0',
315 silly addNameRange '4.1.1',
315 silly addNameRange '4.1.2',
315 silly addNameRange '4.1.3',
315 silly addNameRange '4.1.4',
315 silly addNameRange '4.1.5',
315 silly addNameRange '3.0.9',
315 silly addNameRange '4.1.6',
315 silly addNameRange '3.0.10',
315 silly addNameRange '3.0.11',
315 silly addNameRange '4.1.7',
315 silly addNameRange '4.1.8',
315 silly addNameRange '4.1.9',
315 silly addNameRange '4.1.10',
315 silly addNameRange '4.1.11',
315 silly addNameRange '4.1.12',
315 silly addNameRange '4.1.13',
315 silly addNameRange '4.1.14',
315 silly addNameRange '4.1.15',
315 silly addNameRange '4.2.0',
315 silly addNameRange '4.2.1',
315 silly addNameRange '3.0.12',
315 silly addNameRange '4.2.2',
315 silly addNameRange '4.2.3',
315 silly addNameRange '4.2.4' ] ]
316 silly addNamed [email protected]
317 verbose addNamed "4.2.4" is a plain semver version for graceful-fs
318 silly cache afterAdd [email protected]
319 verbose afterAdd /home/christine/.npm/errno/0.1.7/package/package.json not in flight; writing
320 silly mapToRegistry name graceful-fs
321 silly mapToRegistry using default registry
322 silly mapToRegistry registry https://registry.npmjs.org/
323 silly mapToRegistry uri https://registry.npmjs.org/graceful-fs
324 verbose addRemoteTarball https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz not in flight; adding
325 verbose addRemoteTarball [ 'https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz',
325 verbose addRemoteTarball '2256bde14d3632958c465ebc96dc467ca07a29fb' ]
326 verbose get https://registry.npmjs.org/promise not expired, no request
327 silly addNameRange number 2 { name: 'promise', range: '>=7.1.1 <8.0.0', hasData: true }
328 silly addNameRange versions [ 'promise',
328 silly addNameRange [ '1.2.1',
328 silly addNameRange '1.2.2',
328 silly addNameRange '1.3.0',
328 silly addNameRange '2.0.0',
328 silly addNameRange '3.0.0',
328 silly addNameRange '3.0.1',
328 silly addNameRange '3.1.0',
328 silly addNameRange '3.2.0',
328 silly addNameRange '4.0.0',
328 silly addNameRange '5.0.0',
328 silly addNameRange '6.0.0',
328 silly addNameRange '6.0.1',
328 silly addNameRange '6.1.0',
328 silly addNameRange '7.0.0',
328 silly addNameRange '7.0.1',
328 silly addNameRange '7.0.2',
328 silly addNameRange '7.0.3',
328 silly addNameRange '7.0.4',
328 silly addNameRange '7.1.0',
328 silly addNameRange '7.1.1',
328 silly addNameRange '7.2.0',
328 silly addNameRange '7.3.0',
328 silly addNameRange '7.3.1',
328 silly addNameRange '8.0.0',
328 silly addNameRange '8.0.1',
328 silly addNameRange '8.0.2',
328 silly addNameRange '8.0.3',
328 silly addNameRange '8.1.0' ] ]
329 silly addNamed [email protected]
330 verbose addNamed "7.3.1" is a plain semver version for promise
331 verbose get https://registry.npmjs.org/tslib not expired, no request
332 silly addNameRange number 2 { name: 'tslib', range: '>=1.10.0 <2.0.0', hasData: true }
333 silly addNameRange versions [ 'tslib',
333 silly addNameRange [ '0.0.1-security',
333 silly addNameRange '1.0.0',
333 silly addNameRange '1.1.0',
333 silly addNameRange '1.2.0',
333 silly addNameRange '1.3.0',
333 silly addNameRange '1.4.0',
333 silly addNameRange '1.5.0',
333 silly addNameRange '1.6.0',
333 silly addNameRange '1.6.1',
333 silly addNameRange '1.7.0',
333 silly addNameRange '1.7.1',
333 silly addNameRange '1.8.0',
333 silly addNameRange '1.8.1',
333 silly addNameRange '1.9.0',
333 silly addNameRange '1.9.1',
333 silly addNameRange '1.9.2',
333 silly addNameRange '1.9.3',
333 silly addNameRange '1.10.0',
333 silly addNameRange '1.11.0',
333 silly addNameRange '1.11.1',
333 silly addNameRange '1.11.2',
333 silly addNameRange '1.12.0',
333 silly addNameRange '1.13.0',
333 silly addNameRange '2.0.0' ] ]
334 silly addNamed [email protected]
335 verbose addNamed "1.13.0" is a plain semver version for tslib
336 silly mapToRegistry name promise
337 silly mapToRegistry using default registry
338 silly mapToRegistry registry https://registry.npmjs.org/
339 silly mapToRegistry uri https://registry.npmjs.org/promise
340 verbose addRemoteTarball https://registry.npmjs.org/promise/-/promise-7.3.1.tgz not in flight; adding
341 verbose addRemoteTarball [ 'https://registry.npmjs.org/promise/-/promise-7.3.1.tgz',
341 verbose addRemoteTarball '064b72602b18f90f29192b8b1bc418ffd1ebd3bf' ]
342 silly resolveWithNewModule [email protected] checking installable status
343 silly cache add args [ 'mkdirp@^0.5.0', null ]
344 verbose cache add spec mkdirp@^0.5.0
345 silly cache add parsed spec Result {
345 silly cache add raw: 'mkdirp@^0.5.0',
345 silly cache add scope: null,
345 silly cache add name: 'mkdirp',
345 silly cache add rawSpec: '^0.5.0',
345 silly cache add spec: '>=0.5.0 <0.6.0',
345 silly cache add type: 'range' }
346 silly addNamed mkdirp@>=0.5.0 <0.6.0
347 verbose addNamed ">=0.5.0 <0.6.0" is a valid semver range for mkdirp
348 silly addNameRange { name: 'mkdirp', range: '>=0.5.0 <0.6.0', hasData: false }
349 silly mapToRegistry name mkdirp
350 silly mapToRegistry using default registry
351 silly mapToRegistry registry https://registry.npmjs.org/
352 silly mapToRegistry uri https://registry.npmjs.org/mkdirp
353 verbose addNameRange registry:https://registry.npmjs.org/mkdirp not in flight; fetching
354 silly mapToRegistry name tslib
355 silly mapToRegistry using default registry
356 silly mapToRegistry registry https://registry.npmjs.org/
357 silly mapToRegistry uri https://registry.npmjs.org/tslib
358 verbose addRemoteTarball https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz not in flight; adding
359 verbose addRemoteTarball [ 'https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz',
359 verbose addRemoteTarball 'c881e13cc7015894ed914862d276436fa9a47043' ]
360 info retry fetch attempt 1 at 13:48:57
361 info attempt registry request try #1 at 13:48:57
362 http fetch GET https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz
363 info retry fetch attempt 1 at 13:48:57
364 info attempt registry request try #1 at 13:48:57
365 http fetch GET https://registry.npmjs.org/promise/-/promise-7.3.1.tgz
366 http 200 https://registry.npmjs.org/source-map
367 verbose headers { date: 'Fri, 22 May 2020 11:48:57 GMT',
367 verbose headers 'content-type': 'application/json',
367 verbose headers 'transfer-encoding': 'chunked',
367 verbose headers connection: 'keep-alive',
367 verbose headers 'set-cookie':
367 verbose headers [ '__cfduid=d850f5e63141a007f397139d82cf517f01590148137; expires=Sun, 21-Jun-20 11:48:57 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
367 verbose headers 'cf-ray': '59764fa1f8a405fd-FRA',
367 verbose headers age: '5629',
367 verbose headers 'cache-control': 'public, max-age=300',
367 verbose headers etag: 'W/"ed6422e25077febab77501a786cb4bdd"',
367 verbose headers 'last-modified': 'Thu, 07 May 2020 17:23:05 GMT',
367 verbose headers vary: 'accept-encoding, accept',
367 verbose headers 'cf-cache-status': 'HIT',
367 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
367 verbose headers server: 'cloudflare',
367 verbose headers 'content-encoding': 'gzip',
367 verbose headers 'cf-request-id': '02ddd0193d000005fd8da0d200000001' }
368 silly get cb [ 200,
368 silly get { date: 'Fri, 22 May 2020 11:48:57 GMT',
368 silly get 'content-type': 'application/json',
368 silly get 'transfer-encoding': 'chunked',
368 silly get connection: 'keep-alive',
368 silly get 'set-cookie':
368 silly get [ '__cfduid=d850f5e63141a007f397139d82cf517f01590148137; expires=Sun, 21-Jun-20 11:48:57 GMT; path=/; domain=.npmjs.org; HttpOnly; SameSite=Lax' ],
368 silly get 'cf-ray': '59764fa1f8a405fd-FRA',
368 silly get age: '5629',
368 silly get 'cache-control': 'public, max-age=300',
368 silly get etag: 'W/"ed6422e25077febab77501a786cb4bdd"',
368 silly get 'last-modified': 'Thu, 07 May 2020 17:23:05 GMT',
368 silly get vary: 'accept-encoding, accept',
368 silly get 'cf-cache-status': 'HIT',
368 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
368 silly get server: 'cloudflare',
368 silly get 'content-encoding': 'gzip',
368 silly get 'cf-request-id': '02ddd0193d000005fd8da0d200000001' } ]
369 verbose get saving source-map to /home/christine/.npm/registry.npmjs.org/source-map/.cache.json
370 silly resolveWithNewModule [email protected] checking installable status
371 silly cache add args [ 'image-size@~0.5.0', null ]
372 verbose cache add spec image-size@~0.5.0
373 silly cache add parsed spec Result {
373 silly cache add raw: 'image-size@~0.5.0',
373 silly cache add scope: null,
373 silly cache add name: 'image-size',
373 silly cache add rawSpec: '~0.5.0',
373 silly cache add spec: '>=0.5.0 <0.6.0',
373 silly cache add type: 'range' }
374 silly addNamed image-size@>=0.5.0 <0.6.0
375 verbose addNamed ">=0.5.0 <0.6.0" is a valid semver range for image-size
376 silly addNameRange { name: 'image-size', range: '>=0.5.0 <0.6.0', hasData: false }
377 silly mapToRegistry name image-size
378 silly mapToRegistry using default registry
379 silly mapToRegistry registry https://registry.npmjs.org/
380 silly mapToRegistry uri https://registry.npmjs.org/image-size
381 verbose addNameRange registry:https://registry.npmjs.org/image-size not in flight; fetching
382 info retry fetch attempt 1 at 13:48:57
383 info attempt registry request try #1 at 13:48:57
384 http fetch GET https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz
385 verbose afterAdd /home/christine/.npm/errno/0.1.7/package/package.json written
386 verbose get https://registry.npmjs.org/mkdirp not expired, no request
387 silly addNameRange number 2 { name: 'mkdirp', range: '>=0.5.0 <0.6.0', hasData: true }
388 silly addNameRange versions [ 'mkdirp',
388 silly addNameRange [ '0.0.1',
388 silly addNameRange '0.0.2',
388 silly addNameRange '0.0.3',
388 silly addNameRange '0.0.4',
388 silly addNameRange '0.0.5',
388 silly addNameRange '0.0.6',
388 silly addNameRange '0.0.7',
388 silly addNameRange '0.1.0',
388 silly addNameRange '0.2.0',
388 silly addNameRange '0.2.1',
388 silly addNameRange '0.2.2',
388 silly addNameRange '0.3.0',
388 silly addNameRange '0.3.1',
388 silly addNameRange '0.3.2',
388 silly addNameRange '0.3.3',
388 silly addNameRange '0.3.4',
388 silly addNameRange '0.3.5',
388 silly addNameRange '0.4.0',
388 silly addNameRange '0.4.1',
388 silly addNameRange '0.4.2',
388 silly addNameRange '0.5.0',
388 silly addNameRange '0.5.1',
388 silly addNameRange '1.0.0',
388 silly addNameRange '1.0.1',