-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnpm-debug.log
12283 lines (12283 loc) · 810 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
4002 silly addNamed caseless@>=0.12.0 <0.13.0
4003 verbose addNamed ">=0.12.0 <0.13.0" is a valid semver range for caseless
4004 silly addNameRange { name: 'caseless', range: '>=0.12.0 <0.13.0', hasData: false }
4005 silly mapToRegistry name caseless
4006 silly mapToRegistry using default registry
4007 silly mapToRegistry registry https://registry.npmjs.org/
4008 silly mapToRegistry data Result {
4008 silly mapToRegistry raw: 'caseless',
4008 silly mapToRegistry scope: null,
4008 silly mapToRegistry escapedName: 'caseless',
4008 silly mapToRegistry name: 'caseless',
4008 silly mapToRegistry rawSpec: '',
4008 silly mapToRegistry spec: 'latest',
4008 silly mapToRegistry type: 'tag' }
4009 silly mapToRegistry uri https://registry.npmjs.org/caseless
4010 verbose addNameRange registry:https://registry.npmjs.org/caseless not in flight; fetching
4011 silly resolveWithNewModule [email protected] checking installable status
4012 silly cache add args [ 'aws4@^1.8.0', null ]
4013 verbose cache add spec aws4@^1.8.0
4014 silly cache add parsed spec Result {
4014 silly cache add raw: 'aws4@^1.8.0',
4014 silly cache add scope: null,
4014 silly cache add escapedName: 'aws4',
4014 silly cache add name: 'aws4',
4014 silly cache add rawSpec: '^1.8.0',
4014 silly cache add spec: '>=1.8.0 <2.0.0',
4014 silly cache add type: 'range' }
4015 silly addNamed aws4@>=1.8.0 <2.0.0
4016 verbose addNamed ">=1.8.0 <2.0.0" is a valid semver range for aws4
4017 silly addNameRange { name: 'aws4', range: '>=1.8.0 <2.0.0', hasData: false }
4018 silly mapToRegistry name aws4
4019 silly mapToRegistry using default registry
4020 silly mapToRegistry registry https://registry.npmjs.org/
4021 silly mapToRegistry data Result {
4021 silly mapToRegistry raw: 'aws4',
4021 silly mapToRegistry scope: null,
4021 silly mapToRegistry escapedName: 'aws4',
4021 silly mapToRegistry name: 'aws4',
4021 silly mapToRegistry rawSpec: '',
4021 silly mapToRegistry spec: 'latest',
4021 silly mapToRegistry type: 'tag' }
4022 silly mapToRegistry uri https://registry.npmjs.org/aws4
4023 verbose addNameRange registry:https://registry.npmjs.org/aws4 not in flight; fetching
4024 silly resolveWithNewModule [email protected] checking installable status
4025 silly cache add args [ 'combined-stream@~1.0.6', null ]
4026 verbose cache add spec combined-stream@~1.0.6
4027 silly cache add parsed spec Result {
4027 silly cache add raw: 'combined-stream@~1.0.6',
4027 silly cache add scope: null,
4027 silly cache add escapedName: 'combined-stream',
4027 silly cache add name: 'combined-stream',
4027 silly cache add rawSpec: '~1.0.6',
4027 silly cache add spec: '>=1.0.6 <1.1.0',
4027 silly cache add type: 'range' }
4028 silly addNamed combined-stream@>=1.0.6 <1.1.0
4029 verbose addNamed ">=1.0.6 <1.1.0" is a valid semver range for combined-stream
4030 silly addNameRange { name: 'combined-stream',
4030 silly addNameRange range: '>=1.0.6 <1.1.0',
4030 silly addNameRange hasData: false }
4031 silly mapToRegistry name combined-stream
4032 silly mapToRegistry using default registry
4033 silly mapToRegistry registry https://registry.npmjs.org/
4034 silly mapToRegistry data Result {
4034 silly mapToRegistry raw: 'combined-stream',
4034 silly mapToRegistry scope: null,
4034 silly mapToRegistry escapedName: 'combined-stream',
4034 silly mapToRegistry name: 'combined-stream',
4034 silly mapToRegistry rawSpec: '',
4034 silly mapToRegistry spec: 'latest',
4034 silly mapToRegistry type: 'tag' }
4035 silly mapToRegistry uri https://registry.npmjs.org/combined-stream
4036 verbose addNameRange registry:https://registry.npmjs.org/combined-stream not in flight; fetching
4037 http 304 https://registry.npmjs.org/isstream
4038 verbose headers { date: 'Sun, 30 Sep 2018 04:22:57 GMT',
4038 verbose headers connection: 'keep-alive',
4038 verbose headers 'set-cookie': [ '__cfduid=d14eaf37ebe8fd710e492711a7edbda5c1538281377; expires=Mon, 30-Sep-19 04:22:57 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
4038 verbose headers 'cf-cache-status': 'HIT',
4038 verbose headers 'cache-control': 'max-age=300',
4038 verbose headers 'cf-ray': '4623e953ab005a4a-BOS',
4038 verbose headers etag: '"9dc7f37e087df077683bf238c847ad45"',
4038 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
4038 verbose headers 'last-modified': 'Sun, 27 May 2018 05:02:31 GMT',
4038 verbose headers vary: 'accept-encoding, accept',
4038 verbose headers server: 'cloudflare' }
4039 silly get cb [ 304,
4039 silly get { date: 'Sun, 30 Sep 2018 04:22:57 GMT',
4039 silly get connection: 'keep-alive',
4039 silly get 'set-cookie': [ '__cfduid=d14eaf37ebe8fd710e492711a7edbda5c1538281377; expires=Mon, 30-Sep-19 04:22:57 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
4039 silly get 'cf-cache-status': 'HIT',
4039 silly get 'cache-control': 'max-age=300',
4039 silly get 'cf-ray': '4623e953ab005a4a-BOS',
4039 silly get etag: '"9dc7f37e087df077683bf238c847ad45"',
4039 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
4039 silly get 'last-modified': 'Sun, 27 May 2018 05:02:31 GMT',
4039 silly get vary: 'accept-encoding, accept',
4039 silly get server: 'cloudflare' } ]
4040 verbose etag https://registry.npmjs.org/isstream from cache
4041 verbose get saving isstream to C:\Users\ivc\AppData\Roaming\npm-cache\registry.npmjs.org\isstream\.cache.json
4042 verbose correctMkdir C:\Users\ivc\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
4043 http 304 https://registry.npmjs.org/performance-now
4044 verbose headers { date: 'Sun, 30 Sep 2018 04:22:57 GMT',
4044 verbose headers connection: 'keep-alive',
4044 verbose headers 'set-cookie': [ '__cfduid=dc0c3f274dc5aaa9e53921ad45111b83c1538281377; expires=Mon, 30-Sep-19 04:22:57 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
4044 verbose headers 'cf-cache-status': 'HIT',
4044 verbose headers 'cache-control': 'max-age=300',
4044 verbose headers 'cf-ray': '4623e95399ba5a32-BOS',
4044 verbose headers etag: '"5f12ad497b3e39323dcdde75c34f5767"',
4044 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
4044 verbose headers 'last-modified': 'Sun, 27 May 2018 12:05:53 GMT',
4044 verbose headers vary: 'accept-encoding, accept',
4044 verbose headers server: 'cloudflare' }
4045 silly get cb [ 304,
4045 silly get { date: 'Sun, 30 Sep 2018 04:22:57 GMT',
4045 silly get connection: 'keep-alive',
4045 silly get 'set-cookie': [ '__cfduid=dc0c3f274dc5aaa9e53921ad45111b83c1538281377; expires=Mon, 30-Sep-19 04:22:57 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
4045 silly get 'cf-cache-status': 'HIT',
4045 silly get 'cache-control': 'max-age=300',
4045 silly get 'cf-ray': '4623e95399ba5a32-BOS',
4045 silly get etag: '"5f12ad497b3e39323dcdde75c34f5767"',
4045 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
4045 silly get 'last-modified': 'Sun, 27 May 2018 12:05:53 GMT',
4045 silly get vary: 'accept-encoding, accept',
4045 silly get server: 'cloudflare' } ]
4046 verbose etag https://registry.npmjs.org/performance-now from cache
4047 verbose get saving performance-now to C:\Users\ivc\AppData\Roaming\npm-cache\registry.npmjs.org\performance-now\.cache.json
4048 verbose correctMkdir C:\Users\ivc\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
4049 http 304 https://registry.npmjs.org/json-stringify-safe
4050 verbose headers { date: 'Sun, 30 Sep 2018 04:22:57 GMT',
4050 verbose headers connection: 'keep-alive',
4050 verbose headers 'set-cookie': [ '__cfduid=d6fcd53d64e7271de24a1f4ef8aa7aff11538281377; expires=Mon, 30-Sep-19 04:22:57 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
4050 verbose headers 'cf-cache-status': 'HIT',
4050 verbose headers 'cache-control': 'max-age=300',
4050 verbose headers 'cf-ray': '4623e953ab4a5a92-BOS',
4050 verbose headers etag: '"7f39a9aafcaefe8efbf43a9f2e56c4eb"',
4050 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
4050 verbose headers 'last-modified': 'Sun, 27 May 2018 05:41:03 GMT',
4050 verbose headers vary: 'accept-encoding, accept',
4050 verbose headers server: 'cloudflare' }
4051 silly get cb [ 304,
4051 silly get { date: 'Sun, 30 Sep 2018 04:22:57 GMT',
4051 silly get connection: 'keep-alive',
4051 silly get 'set-cookie': [ '__cfduid=d6fcd53d64e7271de24a1f4ef8aa7aff11538281377; expires=Mon, 30-Sep-19 04:22:57 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
4051 silly get 'cf-cache-status': 'HIT',
4051 silly get 'cache-control': 'max-age=300',
4051 silly get 'cf-ray': '4623e953ab4a5a92-BOS',
4051 silly get etag: '"7f39a9aafcaefe8efbf43a9f2e56c4eb"',
4051 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
4051 silly get 'last-modified': 'Sun, 27 May 2018 05:41:03 GMT',
4051 silly get vary: 'accept-encoding, accept',
4051 silly get server: 'cloudflare' } ]
4052 verbose etag https://registry.npmjs.org/json-stringify-safe from cache
4053 verbose get saving json-stringify-safe to C:\Users\ivc\AppData\Roaming\npm-cache\registry.npmjs.org\json-stringify-safe\.cache.json
4054 verbose correctMkdir C:\Users\ivc\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
4055 http 304 https://registry.npmjs.org/oauth-sign
4056 verbose headers { date: 'Sun, 30 Sep 2018 04:22:57 GMT',
4056 verbose headers connection: 'keep-alive',
4056 verbose headers 'set-cookie': [ '__cfduid=d686bf7b4fe099534a92417a9930c1b761538281377; expires=Mon, 30-Sep-19 04:22:57 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
4056 verbose headers 'cf-cache-status': 'HIT',
4056 verbose headers 'cache-control': 'max-age=300',
4056 verbose headers 'cf-ray': '4623e953a8375a2c-BOS',
4056 verbose headers etag: '"3032c1efe9ec61d748d027a1da2bab61"',
4056 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
4056 verbose headers 'last-modified': 'Thu, 02 Aug 2018 18:04:02 GMT',
4056 verbose headers vary: 'accept-encoding, accept',
4056 verbose headers server: 'cloudflare' }
4057 silly get cb [ 304,
4057 silly get { date: 'Sun, 30 Sep 2018 04:22:57 GMT',
4057 silly get connection: 'keep-alive',
4057 silly get 'set-cookie': [ '__cfduid=d686bf7b4fe099534a92417a9930c1b761538281377; expires=Mon, 30-Sep-19 04:22:57 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
4057 silly get 'cf-cache-status': 'HIT',
4057 silly get 'cache-control': 'max-age=300',
4057 silly get 'cf-ray': '4623e953a8375a2c-BOS',
4057 silly get etag: '"3032c1efe9ec61d748d027a1da2bab61"',
4057 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
4057 silly get 'last-modified': 'Thu, 02 Aug 2018 18:04:02 GMT',
4057 silly get vary: 'accept-encoding, accept',
4057 silly get server: 'cloudflare' } ]
4058 verbose etag https://registry.npmjs.org/oauth-sign from cache
4059 verbose get saving oauth-sign to C:\Users\ivc\AppData\Roaming\npm-cache\registry.npmjs.org\oauth-sign\.cache.json
4060 verbose correctMkdir C:\Users\ivc\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
4061 silly resolveWithNewModule [email protected] checking installable status
4062 silly cache add args [ 'http-signature@~1.2.0', null ]
4063 verbose cache add spec http-signature@~1.2.0
4064 silly cache add parsed spec Result {
4064 silly cache add raw: 'http-signature@~1.2.0',
4064 silly cache add scope: null,
4064 silly cache add escapedName: 'http-signature',
4064 silly cache add name: 'http-signature',
4064 silly cache add rawSpec: '~1.2.0',
4064 silly cache add spec: '>=1.2.0 <1.3.0',
4064 silly cache add type: 'range' }
4065 silly addNamed http-signature@>=1.2.0 <1.3.0
4066 verbose addNamed ">=1.2.0 <1.3.0" is a valid semver range for http-signature
4067 silly addNameRange { name: 'http-signature',
4067 silly addNameRange range: '>=1.2.0 <1.3.0',
4067 silly addNameRange hasData: false }
4068 silly mapToRegistry name http-signature
4069 silly mapToRegistry using default registry
4070 silly mapToRegistry registry https://registry.npmjs.org/
4071 silly mapToRegistry data Result {
4071 silly mapToRegistry raw: 'http-signature',
4071 silly mapToRegistry scope: null,
4071 silly mapToRegistry escapedName: 'http-signature',
4071 silly mapToRegistry name: 'http-signature',
4071 silly mapToRegistry rawSpec: '',
4071 silly mapToRegistry spec: 'latest',
4071 silly mapToRegistry type: 'tag' }
4072 silly mapToRegistry uri https://registry.npmjs.org/http-signature
4073 verbose addNameRange registry:https://registry.npmjs.org/http-signature not in flight; fetching
4074 silly resolveWithNewModule [email protected] checking installable status
4075 silly cache add args [ 'form-data@~2.3.2', null ]
4076 verbose cache add spec form-data@~2.3.2
4077 silly cache add parsed spec Result {
4077 silly cache add raw: 'form-data@~2.3.2',
4077 silly cache add scope: null,
4077 silly cache add escapedName: 'form-data',
4077 silly cache add name: 'form-data',
4077 silly cache add rawSpec: '~2.3.2',
4077 silly cache add spec: '>=2.3.2 <2.4.0',
4077 silly cache add type: 'range' }
4078 silly addNamed form-data@>=2.3.2 <2.4.0
4079 verbose addNamed ">=2.3.2 <2.4.0" is a valid semver range for form-data
4080 silly addNameRange { name: 'form-data', range: '>=2.3.2 <2.4.0', hasData: false }
4081 silly mapToRegistry name form-data
4082 silly mapToRegistry using default registry
4083 silly mapToRegistry registry https://registry.npmjs.org/
4084 silly mapToRegistry data Result {
4084 silly mapToRegistry raw: 'form-data',
4084 silly mapToRegistry scope: null,
4084 silly mapToRegistry escapedName: 'form-data',
4084 silly mapToRegistry name: 'form-data',
4084 silly mapToRegistry rawSpec: '',
4084 silly mapToRegistry spec: 'latest',
4084 silly mapToRegistry type: 'tag' }
4085 silly mapToRegistry uri https://registry.npmjs.org/form-data
4086 verbose addNameRange registry:https://registry.npmjs.org/form-data not in flight; fetching
4087 http 304 https://registry.npmjs.org/is-typedarray
4088 verbose headers { date: 'Sun, 30 Sep 2018 04:22:57 GMT',
4088 verbose headers connection: 'keep-alive',
4088 verbose headers 'set-cookie': [ '__cfduid=d051cd8c59a2eb646dca20263fefa37061538281377; expires=Mon, 30-Sep-19 04:22:57 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
4088 verbose headers 'cf-cache-status': 'HIT',
4088 verbose headers 'cache-control': 'max-age=300',
4088 verbose headers 'cf-ray': '4623e953aaa15a68-BOS',
4088 verbose headers etag: '"e7b88219ebe721b877b678c51795c9c5"',
4088 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
4088 verbose headers 'last-modified': 'Sun, 27 May 2018 04:59:55 GMT',
4088 verbose headers vary: 'accept-encoding, accept',
4088 verbose headers server: 'cloudflare' }
4089 silly get cb [ 304,
4089 silly get { date: 'Sun, 30 Sep 2018 04:22:57 GMT',
4089 silly get connection: 'keep-alive',
4089 silly get 'set-cookie': [ '__cfduid=d051cd8c59a2eb646dca20263fefa37061538281377; expires=Mon, 30-Sep-19 04:22:57 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
4089 silly get 'cf-cache-status': 'HIT',
4089 silly get 'cache-control': 'max-age=300',
4089 silly get 'cf-ray': '4623e953aaa15a68-BOS',
4089 silly get etag: '"e7b88219ebe721b877b678c51795c9c5"',
4089 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
4089 silly get 'last-modified': 'Sun, 27 May 2018 04:59:55 GMT',
4089 silly get vary: 'accept-encoding, accept',
4089 silly get server: 'cloudflare' } ]
4090 verbose etag https://registry.npmjs.org/is-typedarray from cache
4091 verbose get saving is-typedarray to C:\Users\ivc\AppData\Roaming\npm-cache\registry.npmjs.org\is-typedarray\.cache.json
4092 verbose correctMkdir C:\Users\ivc\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
4093 http 304 https://registry.npmjs.org/mime-types
4094 verbose headers { date: 'Sun, 30 Sep 2018 04:22:57 GMT',
4094 verbose headers connection: 'keep-alive',
4094 verbose headers 'set-cookie': [ '__cfduid=d686bf7b4fe099534a92417a9930c1b761538281377; expires=Mon, 30-Sep-19 04:22:57 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
4094 verbose headers 'cf-cache-status': 'HIT',
4094 verbose headers 'cache-control': 'max-age=300',
4094 verbose headers 'cf-ray': '4623e953a8385a2c-BOS',
4094 verbose headers etag: '"1862741a0936b1133474080ac79854ec"',
4094 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
4094 verbose headers 'last-modified': 'Sun, 26 Aug 2018 22:07:13 GMT',
4094 verbose headers vary: 'accept-encoding, accept',
4094 verbose headers server: 'cloudflare' }
4095 silly get cb [ 304,
4095 silly get { date: 'Sun, 30 Sep 2018 04:22:57 GMT',
4095 silly get connection: 'keep-alive',
4095 silly get 'set-cookie': [ '__cfduid=d686bf7b4fe099534a92417a9930c1b761538281377; expires=Mon, 30-Sep-19 04:22:57 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
4095 silly get 'cf-cache-status': 'HIT',
4095 silly get 'cache-control': 'max-age=300',
4095 silly get 'cf-ray': '4623e953a8385a2c-BOS',
4095 silly get etag: '"1862741a0936b1133474080ac79854ec"',
4095 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
4095 silly get 'last-modified': 'Sun, 26 Aug 2018 22:07:13 GMT',
4095 silly get vary: 'accept-encoding, accept',
4095 silly get server: 'cloudflare' } ]
4096 verbose etag https://registry.npmjs.org/mime-types from cache
4097 verbose get saving mime-types to C:\Users\ivc\AppData\Roaming\npm-cache\registry.npmjs.org\mime-types\.cache.json
4098 verbose correctMkdir C:\Users\ivc\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
4099 http 304 https://registry.npmjs.org/uuid
4100 verbose headers { date: 'Sun, 30 Sep 2018 04:22:57 GMT',
4100 verbose headers connection: 'keep-alive',
4100 verbose headers 'set-cookie': [ '__cfduid=d6fcd53d64e7271de24a1f4ef8aa7aff11538281377; expires=Mon, 30-Sep-19 04:22:57 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
4100 verbose headers 'cf-cache-status': 'HIT',
4100 verbose headers 'cache-control': 'max-age=300',
4100 verbose headers 'cf-ray': '4623e953ab4c5a92-BOS',
4100 verbose headers etag: '"b0039bf82ea7b34e406b74d4a496faea"',
4100 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
4100 verbose headers 'last-modified': 'Sat, 29 Sep 2018 02:35:58 GMT',
4100 verbose headers vary: 'accept-encoding, accept',
4100 verbose headers 'x-amz-meta-rev': '395-129dd60a973516e3607a8cf95732e42c',
4100 verbose headers server: 'cloudflare' }
4101 silly get cb [ 304,
4101 silly get { date: 'Sun, 30 Sep 2018 04:22:57 GMT',
4101 silly get connection: 'keep-alive',
4101 silly get 'set-cookie': [ '__cfduid=d6fcd53d64e7271de24a1f4ef8aa7aff11538281377; expires=Mon, 30-Sep-19 04:22:57 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
4101 silly get 'cf-cache-status': 'HIT',
4101 silly get 'cache-control': 'max-age=300',
4101 silly get 'cf-ray': '4623e953ab4c5a92-BOS',
4101 silly get etag: '"b0039bf82ea7b34e406b74d4a496faea"',
4101 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
4101 silly get 'last-modified': 'Sat, 29 Sep 2018 02:35:58 GMT',
4101 silly get vary: 'accept-encoding, accept',
4101 silly get 'x-amz-meta-rev': '395-129dd60a973516e3607a8cf95732e42c',
4101 silly get server: 'cloudflare' } ]
4102 verbose etag https://registry.npmjs.org/uuid from cache
4103 verbose get saving uuid to C:\Users\ivc\AppData\Roaming\npm-cache\registry.npmjs.org\uuid\.cache.json
4104 verbose correctMkdir C:\Users\ivc\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
4105 http 304 https://registry.npmjs.org/tunnel-agent
4106 verbose headers { date: 'Sun, 30 Sep 2018 04:22:57 GMT',
4106 verbose headers connection: 'keep-alive',
4106 verbose headers 'set-cookie': [ '__cfduid=d686bf7b4fe099534a92417a9930c1b761538281377; expires=Mon, 30-Sep-19 04:22:57 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
4106 verbose headers 'cf-cache-status': 'HIT',
4106 verbose headers 'cache-control': 'max-age=300',
4106 verbose headers 'cf-ray': '4623e953a83a5a2c-BOS',
4106 verbose headers etag: '"03911fc1f433b33bccf8a4a2a5de2375"',
4106 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
4106 verbose headers 'last-modified': 'Sun, 27 May 2018 20:02:57 GMT',
4106 verbose headers vary: 'accept-encoding, accept',
4106 verbose headers server: 'cloudflare' }
4107 silly get cb [ 304,
4107 silly get { date: 'Sun, 30 Sep 2018 04:22:57 GMT',
4107 silly get connection: 'keep-alive',
4107 silly get 'set-cookie': [ '__cfduid=d686bf7b4fe099534a92417a9930c1b761538281377; expires=Mon, 30-Sep-19 04:22:57 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
4107 silly get 'cf-cache-status': 'HIT',
4107 silly get 'cache-control': 'max-age=300',
4107 silly get 'cf-ray': '4623e953a83a5a2c-BOS',
4107 silly get etag: '"03911fc1f433b33bccf8a4a2a5de2375"',
4107 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
4107 silly get 'last-modified': 'Sun, 27 May 2018 20:02:57 GMT',
4107 silly get vary: 'accept-encoding, accept',
4107 silly get server: 'cloudflare' } ]
4108 verbose etag https://registry.npmjs.org/tunnel-agent from cache
4109 verbose get saving tunnel-agent to C:\Users\ivc\AppData\Roaming\npm-cache\registry.npmjs.org\tunnel-agent\.cache.json
4110 verbose correctMkdir C:\Users\ivc\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
4111 silly resolveWithNewModule [email protected] checking installable status
4112 silly cache add args [ 'har-validator@~5.1.0', null ]
4113 verbose cache add spec har-validator@~5.1.0
4114 silly cache add parsed spec Result {
4114 silly cache add raw: 'har-validator@~5.1.0',
4114 silly cache add scope: null,
4114 silly cache add escapedName: 'har-validator',
4114 silly cache add name: 'har-validator',
4114 silly cache add rawSpec: '~5.1.0',
4114 silly cache add spec: '>=5.1.0 <5.2.0',
4114 silly cache add type: 'range' }
4115 silly addNamed har-validator@>=5.1.0 <5.2.0
4116 verbose addNamed ">=5.1.0 <5.2.0" is a valid semver range for har-validator
4117 silly addNameRange { name: 'har-validator',
4117 silly addNameRange range: '>=5.1.0 <5.2.0',
4117 silly addNameRange hasData: false }
4118 silly mapToRegistry name har-validator
4119 silly mapToRegistry using default registry
4120 silly mapToRegistry registry https://registry.npmjs.org/
4121 silly mapToRegistry data Result {
4121 silly mapToRegistry raw: 'har-validator',
4121 silly mapToRegistry scope: null,
4121 silly mapToRegistry escapedName: 'har-validator',
4121 silly mapToRegistry name: 'har-validator',
4121 silly mapToRegistry rawSpec: '',
4121 silly mapToRegistry spec: 'latest',
4121 silly mapToRegistry type: 'tag' }
4122 silly mapToRegistry uri https://registry.npmjs.org/har-validator
4123 verbose addNameRange registry:https://registry.npmjs.org/har-validator not in flight; fetching
4124 silly resolveWithNewModule [email protected] checking installable status
4125 silly cache add args [ 'forever-agent@~0.6.1', null ]
4126 verbose cache add spec forever-agent@~0.6.1
4127 silly cache add parsed spec Result {
4127 silly cache add raw: 'forever-agent@~0.6.1',
4127 silly cache add scope: null,
4127 silly cache add escapedName: 'forever-agent',
4127 silly cache add name: 'forever-agent',
4127 silly cache add rawSpec: '~0.6.1',
4127 silly cache add spec: '>=0.6.1 <0.7.0',
4127 silly cache add type: 'range' }
4128 silly addNamed forever-agent@>=0.6.1 <0.7.0
4129 verbose addNamed ">=0.6.1 <0.7.0" is a valid semver range for forever-agent
4130 silly addNameRange { name: 'forever-agent',
4130 silly addNameRange range: '>=0.6.1 <0.7.0',
4130 silly addNameRange hasData: false }
4131 silly mapToRegistry name forever-agent
4132 silly mapToRegistry using default registry
4133 silly mapToRegistry registry https://registry.npmjs.org/
4134 silly mapToRegistry data Result {
4134 silly mapToRegistry raw: 'forever-agent',
4134 silly mapToRegistry scope: null,
4134 silly mapToRegistry escapedName: 'forever-agent',
4134 silly mapToRegistry name: 'forever-agent',
4134 silly mapToRegistry rawSpec: '',
4134 silly mapToRegistry spec: 'latest',
4134 silly mapToRegistry type: 'tag' }
4135 silly mapToRegistry uri https://registry.npmjs.org/forever-agent
4136 verbose addNameRange registry:https://registry.npmjs.org/forever-agent not in flight; fetching
4137 verbose get https://registry.npmjs.org/aws-sign2 not expired, no request
4138 silly addNameRange number 2 { name: 'aws-sign2', range: '>=0.7.0 <0.8.0', hasData: true }
4139 silly addNameRange versions [ 'aws-sign2', [ '0.4.0', '0.5.0', '0.6.0', '0.7.0' ] ]
4140 silly addNamed [email protected]
4141 verbose addNamed "0.7.0" is a plain semver version for aws-sign2
4142 verbose get https://registry.npmjs.org/caseless not expired, no request
4143 silly addNameRange number 2 { name: 'caseless', range: '>=0.12.0 <0.13.0', hasData: true }
4144 silly addNameRange versions [ 'caseless',
4144 silly addNameRange [ '0.1.0',
4144 silly addNameRange '0.2.0',
4144 silly addNameRange '0.3.0',
4144 silly addNameRange '0.4.0',
4144 silly addNameRange '0.5.0',
4144 silly addNameRange '0.6.0',
4144 silly addNameRange '0.7.0',
4144 silly addNameRange '0.8.0',
4144 silly addNameRange '0.9.0',
4144 silly addNameRange '0.10.0',
4144 silly addNameRange '0.11.0',
4144 silly addNameRange '0.12.0' ] ]
4145 silly addNamed [email protected]
4146 verbose addNamed "0.12.0" is a plain semver version for caseless
4147 silly resolveWithNewModule [email protected] checking installable status
4148 silly cache add args [ 'extend@~3.0.2', null ]
4149 verbose cache add spec extend@~3.0.2
4150 silly cache add parsed spec Result {
4150 silly cache add raw: 'extend@~3.0.2',
4150 silly cache add scope: null,
4150 silly cache add escapedName: 'extend',
4150 silly cache add name: 'extend',
4150 silly cache add rawSpec: '~3.0.2',
4150 silly cache add spec: '>=3.0.2 <3.1.0',
4150 silly cache add type: 'range' }
4151 silly addNamed extend@>=3.0.2 <3.1.0
4152 verbose addNamed ">=3.0.2 <3.1.0" is a valid semver range for extend
4153 silly addNameRange { name: 'extend', range: '>=3.0.2 <3.1.0', hasData: false }
4154 silly mapToRegistry name extend
4155 silly mapToRegistry using default registry
4156 silly mapToRegistry registry https://registry.npmjs.org/
4157 silly mapToRegistry data Result {
4157 silly mapToRegistry raw: 'extend',
4157 silly mapToRegistry scope: null,
4157 silly mapToRegistry escapedName: 'extend',
4157 silly mapToRegistry name: 'extend',
4157 silly mapToRegistry rawSpec: '',
4157 silly mapToRegistry spec: 'latest',
4157 silly mapToRegistry type: 'tag' }
4158 silly mapToRegistry uri https://registry.npmjs.org/extend
4159 verbose addNameRange registry:https://registry.npmjs.org/extend not in flight; fetching
4160 verbose get https://registry.npmjs.org/aws4 not expired, no request
4161 silly addNameRange number 2 { name: 'aws4', range: '>=1.8.0 <2.0.0', hasData: true }
4162 silly addNameRange versions [ 'aws4',
4162 silly addNameRange [ '0.0.1',
4162 silly addNameRange '0.1.0',
4162 silly addNameRange '0.1.1',
4162 silly addNameRange '0.1.2',
4162 silly addNameRange '0.1.3',
4162 silly addNameRange '0.1.4',
4162 silly addNameRange '0.1.5',
4162 silly addNameRange '0.1.6',
4162 silly addNameRange '0.1.7',
4162 silly addNameRange '0.1.8',
4162 silly addNameRange '0.1.9',
4162 silly addNameRange '0.1.10',
4162 silly addNameRange '0.1.12',
4162 silly addNameRange '0.2.0',
4162 silly addNameRange '0.2.1',
4162 silly addNameRange '0.2.2',
4162 silly addNameRange '0.2.3',
4162 silly addNameRange '0.3.0',
4162 silly addNameRange '0.4.0',
4162 silly addNameRange '0.4.1',
4162 silly addNameRange '0.4.2',
4162 silly addNameRange '0.5.0',
4162 silly addNameRange '0.5.1',
4162 silly addNameRange '1.0.0',
4162 silly addNameRange '1.0.1',
4162 silly addNameRange '1.0.2',
4162 silly addNameRange '1.0.3',
4162 silly addNameRange '1.0.4',
4162 silly addNameRange '1.1.0',
4162 silly addNameRange '1.2.0',
4162 silly addNameRange '1.2.1',
4162 silly addNameRange '1.3.1',
4162 silly addNameRange '1.3.2',
4162 silly addNameRange '1.4.0',
4162 silly addNameRange '1.4.1',
4162 silly addNameRange '1.5.0',
4162 silly addNameRange '1.6.0',
4162 silly addNameRange '1.7.0',
4162 silly addNameRange '1.8.0' ] ]
4163 silly addNamed [email protected]
4164 verbose addNamed "1.8.0" is a plain semver version for aws4
4165 verbose get https://registry.npmjs.org/combined-stream not expired, no request
4166 silly addNameRange number 2 { name: 'combined-stream',
4166 silly addNameRange range: '>=1.0.6 <1.1.0',
4166 silly addNameRange hasData: true }
4167 silly addNameRange versions [ 'combined-stream',
4167 silly addNameRange [ '0.0.0',
4167 silly addNameRange '0.0.1',
4167 silly addNameRange '0.0.2',
4167 silly addNameRange '0.0.3',
4167 silly addNameRange '0.0.4',
4167 silly addNameRange '0.0.5',
4167 silly addNameRange '0.0.7',
4167 silly addNameRange '1.0.0',
4167 silly addNameRange '1.0.1',
4167 silly addNameRange '1.0.2',
4167 silly addNameRange '1.0.3',
4167 silly addNameRange '1.0.4',
4167 silly addNameRange '1.0.5',
4167 silly addNameRange '1.0.6-rc1',
4167 silly addNameRange '1.0.6',
4167 silly addNameRange '1.0.7' ] ]
4168 silly addNamed [email protected]
4169 verbose addNamed "1.0.7" is a plain semver version for combined-stream
4170 verbose get https://registry.npmjs.org/form-data not expired, no request
4171 silly addNameRange number 2 { name: 'form-data', range: '>=2.3.2 <2.4.0', hasData: true }
4172 silly addNameRange versions [ 'form-data',
4172 silly addNameRange [ '0.0.0',
4172 silly addNameRange '0.0.2',
4172 silly addNameRange '0.0.3',
4172 silly addNameRange '0.0.4',
4172 silly addNameRange '0.0.5',
4172 silly addNameRange '0.0.6',
4172 silly addNameRange '0.0.7',
4172 silly addNameRange '0.0.8',
4172 silly addNameRange '0.0.9',
4172 silly addNameRange '0.0.10',
4172 silly addNameRange '0.1.0',
4172 silly addNameRange '0.1.1',
4172 silly addNameRange '0.1.2',
4172 silly addNameRange '0.1.3',
4172 silly addNameRange '0.1.4',
4172 silly addNameRange '0.2.0',
4172 silly addNameRange '1.0.0-rc1',
4172 silly addNameRange '1.0.0-rc2',
4172 silly addNameRange '1.0.0-rc3',
4172 silly addNameRange '1.0.0-rc4',
4172 silly addNameRange '1.0.0',
4172 silly addNameRange '1.0.1',
4172 silly addNameRange '2.0.0',
4172 silly addNameRange '2.1.0',
4172 silly addNameRange '2.1.1',
4172 silly addNameRange '2.1.2',
4172 silly addNameRange '2.1.4',
4172 silly addNameRange '2.2.0',
4172 silly addNameRange '2.3.1',
4172 silly addNameRange '2.3.2-rc1',
4172 silly addNameRange '2.3.2' ] ]
4173 silly addNamed [email protected]
4174 verbose addNamed "2.3.2" is a plain semver version for form-data
4175 verbose get https://registry.npmjs.org/http-signature not expired, no request
4176 silly addNameRange number 2 { name: 'http-signature',
4176 silly addNameRange range: '>=1.2.0 <1.3.0',
4176 silly addNameRange hasData: true }
4177 silly addNameRange versions [ 'http-signature',
4177 silly addNameRange [ '0.9.0',
4177 silly addNameRange '0.9.2',
4177 silly addNameRange '0.9.3',
4177 silly addNameRange '0.9.4',
4177 silly addNameRange '0.9.5',
4177 silly addNameRange '0.9.6',
4177 silly addNameRange '0.9.7',
4177 silly addNameRange '0.9.8',
4177 silly addNameRange '0.9.9',
4177 silly addNameRange '0.9.10',
4177 silly addNameRange '0.9.11',
4177 silly addNameRange '0.10.0',
4177 silly addNameRange '0.10.1',
4177 silly addNameRange '0.11.0',
4177 silly addNameRange '1.0.0',
4177 silly addNameRange '1.0.1',
4177 silly addNameRange '1.0.2',
4177 silly addNameRange '1.1.0',
4177 silly addNameRange '1.1.1',
4177 silly addNameRange '1.2.0' ] ]
4178 silly addNamed [email protected]
4179 verbose addNamed "1.2.0" is a plain semver version for http-signature
4180 silly resolveWithNewModule [email protected] checking installable status
4181 silly cache add args [ 'safe-buffer@^5.1.2', null ]
4182 verbose cache add spec safe-buffer@^5.1.2
4183 silly cache add parsed spec Result {
4183 silly cache add raw: 'safe-buffer@^5.1.2',
4183 silly cache add scope: null,
4183 silly cache add escapedName: 'safe-buffer',
4183 silly cache add name: 'safe-buffer',
4183 silly cache add rawSpec: '^5.1.2',
4183 silly cache add spec: '>=5.1.2 <6.0.0',
4183 silly cache add type: 'range' }
4184 silly addNamed safe-buffer@>=5.1.2 <6.0.0
4185 verbose addNamed ">=5.1.2 <6.0.0" is a valid semver range for safe-buffer
4186 silly addNameRange { name: 'safe-buffer', range: '>=5.1.2 <6.0.0', hasData: false }
4187 silly mapToRegistry name safe-buffer
4188 silly mapToRegistry using default registry
4189 silly mapToRegistry registry https://registry.npmjs.org/
4190 silly mapToRegistry data Result {
4190 silly mapToRegistry raw: 'safe-buffer',
4190 silly mapToRegistry scope: null,
4190 silly mapToRegistry escapedName: 'safe-buffer',
4190 silly mapToRegistry name: 'safe-buffer',
4190 silly mapToRegistry rawSpec: '',
4190 silly mapToRegistry spec: 'latest',
4190 silly mapToRegistry type: 'tag' }
4191 silly mapToRegistry uri https://registry.npmjs.org/safe-buffer
4192 verbose addNameRange registry:https://registry.npmjs.org/safe-buffer not in flight; fetching
4193 verbose get https://registry.npmjs.org/har-validator not expired, no request
4194 silly addNameRange number 2 { name: 'har-validator', range: '>=5.1.0 <5.2.0', hasData: true }
4195 silly addNameRange versions [ 'har-validator',
4195 silly addNameRange [ '1.0.0',
4195 silly addNameRange '1.0.1',
4195 silly addNameRange '1.0.2',
4195 silly addNameRange '1.1.0',
4195 silly addNameRange '1.1.1',
4195 silly addNameRange '1.1.2',
4195 silly addNameRange '1.1.3',
4195 silly addNameRange '1.2.0',
4195 silly addNameRange '1.3.0',
4195 silly addNameRange '1.3.1',
4195 silly addNameRange '1.4.0',
4195 silly addNameRange '1.5.0',
4195 silly addNameRange '1.5.1',
4195 silly addNameRange '1.6.0',
4195 silly addNameRange '1.6.1',
4195 silly addNameRange '1.7.0',
4195 silly addNameRange '1.7.1',
4195 silly addNameRange '1.8.0',
4195 silly addNameRange '2.0.0',
4195 silly addNameRange '2.0.1',
4195 silly addNameRange '2.0.2',
4195 silly addNameRange '2.0.3',
4195 silly addNameRange '2.0.4',
4195 silly addNameRange '2.0.5',
4195 silly addNameRange '2.0.6',
4195 silly addNameRange '2.1.0',
4195 silly addNameRange '2.1.1',
4195 silly addNameRange '2.1.2',
4195 silly addNameRange '2.1.3',
4195 silly addNameRange '3.0.0',
4195 silly addNameRange '3.1.0',
4195 silly addNameRange '3.2.0',
4195 silly addNameRange '3.3.0',
4195 silly addNameRange '3.3.1',
4195 silly addNameRange '3.4.0',
4195 silly addNameRange '4.0.0',
4195 silly addNameRange '4.0.1',
4195 silly addNameRange '4.0.2',
4195 silly addNameRange '4.0.3',
4195 silly addNameRange '4.0.4',
4195 silly addNameRange '4.1.0',
4195 silly addNameRange '4.1.1',
4195 silly addNameRange '4.1.2',
4195 silly addNameRange '4.2.0',
4195 silly addNameRange '4.2.1',
4195 silly addNameRange '5.0.0',
4195 silly addNameRange '5.0.1',
4195 silly addNameRange '5.0.2',
4195 silly addNameRange '5.0.3',
4195 silly addNameRange '5.1.0' ] ]
4196 silly addNamed [email protected]
4197 verbose addNamed "5.1.0" is a plain semver version for har-validator
4198 verbose get https://registry.npmjs.org/forever-agent not expired, no request
4199 silly addNameRange number 2 { name: 'forever-agent', range: '>=0.6.1 <0.7.0', hasData: true }
4200 silly addNameRange versions [ 'forever-agent',
4200 silly addNameRange [ '0.2.0', '0.3.0', '0.4.0', '0.5.0', '0.5.2', '0.6.0', '0.6.1' ] ]
4201 silly addNamed [email protected]
4202 verbose addNamed "0.6.1" is a plain semver version for forever-agent
4203 silly resolveWithNewModule [email protected] checking installable status
4204 silly cache add args [ 'tough-cookie@~2.4.3', null ]
4205 verbose cache add spec tough-cookie@~2.4.3
4206 silly cache add parsed spec Result {
4206 silly cache add raw: 'tough-cookie@~2.4.3',
4206 silly cache add scope: null,
4206 silly cache add escapedName: 'tough-cookie',
4206 silly cache add name: 'tough-cookie',
4206 silly cache add rawSpec: '~2.4.3',
4206 silly cache add spec: '>=2.4.3 <2.5.0',
4206 silly cache add type: 'range' }
4207 silly addNamed tough-cookie@>=2.4.3 <2.5.0
4208 verbose addNamed ">=2.4.3 <2.5.0" is a valid semver range for tough-cookie
4209 silly addNameRange { name: 'tough-cookie', range: '>=2.4.3 <2.5.0', hasData: false }
4210 silly mapToRegistry name tough-cookie
4211 silly mapToRegistry using default registry
4212 silly mapToRegistry registry https://registry.npmjs.org/
4213 silly mapToRegistry data Result {
4213 silly mapToRegistry raw: 'tough-cookie',
4213 silly mapToRegistry scope: null,
4213 silly mapToRegistry escapedName: 'tough-cookie',
4213 silly mapToRegistry name: 'tough-cookie',
4213 silly mapToRegistry rawSpec: '',
4213 silly mapToRegistry spec: 'latest',
4213 silly mapToRegistry type: 'tag' }
4214 silly mapToRegistry uri https://registry.npmjs.org/tough-cookie
4215 verbose addNameRange registry:https://registry.npmjs.org/tough-cookie not in flight; fetching
4216 silly resolveWithNewModule [email protected] checking installable status
4217 silly cache add args [ 'qs@~6.5.2', null ]
4218 verbose cache add spec qs@~6.5.2
4219 silly cache add parsed spec Result {
4219 silly cache add raw: 'qs@~6.5.2',
4219 silly cache add scope: null,
4219 silly cache add escapedName: 'qs',
4219 silly cache add name: 'qs',
4219 silly cache add rawSpec: '~6.5.2',
4219 silly cache add spec: '>=6.5.2 <6.6.0',
4219 silly cache add type: 'range' }
4220 silly addNamed qs@>=6.5.2 <6.6.0
4221 verbose addNamed ">=6.5.2 <6.6.0" is a valid semver range for qs
4222 silly addNameRange { name: 'qs', range: '>=6.5.2 <6.6.0', hasData: false }
4223 silly mapToRegistry name qs
4224 silly mapToRegistry using default registry
4225 silly mapToRegistry registry https://registry.npmjs.org/
4226 silly mapToRegistry data Result {
4226 silly mapToRegistry raw: 'qs',
4226 silly mapToRegistry scope: null,
4226 silly mapToRegistry escapedName: 'qs',
4226 silly mapToRegistry name: 'qs',
4226 silly mapToRegistry rawSpec: '',
4226 silly mapToRegistry spec: 'latest',
4226 silly mapToRegistry type: 'tag' }
4227 silly mapToRegistry uri https://registry.npmjs.org/qs
4228 verbose addNameRange registry:https://registry.npmjs.org/qs not in flight; fetching
4229 verbose get https://registry.npmjs.org/extend not expired, no request
4230 silly addNameRange number 2 { name: 'extend', range: '>=3.0.2 <3.1.0', hasData: true }
4231 silly addNameRange versions [ 'extend',
4231 silly addNameRange [ '1.0.0',
4231 silly addNameRange '1.1.0',
4231 silly addNameRange '1.1.1',
4231 silly addNameRange '1.1.3',
4231 silly addNameRange '1.2.0',
4231 silly addNameRange '1.2.1',
4231 silly addNameRange '1.3.0',
4231 silly addNameRange '2.0.0',
4231 silly addNameRange '2.0.1',
4231 silly addNameRange '3.0.0',
4231 silly addNameRange '3.0.1',
4231 silly addNameRange '3.0.2',
4231 silly addNameRange '2.0.2' ] ]
4232 silly addNamed [email protected]
4233 verbose addNamed "3.0.2" is a plain semver version for extend
4234 silly cache afterAdd [email protected]
4235 verbose afterAdd C:\Users\ivc\AppData\Roaming\npm-cache\aws-sign2\0.7.0\package\package.json not in flight; writing
4236 verbose correctMkdir C:\Users\ivc\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
4237 silly cache afterAdd [email protected]
4238 verbose afterAdd C:\Users\ivc\AppData\Roaming\npm-cache\caseless\0.12.0\package\package.json not in flight; writing
4239 verbose correctMkdir C:\Users\ivc\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
4240 silly resolveWithNewModule [email protected] checking installable status
4241 silly cache add args [ 'isstream@~0.1.2', null ]
4242 verbose cache add spec isstream@~0.1.2
4243 silly cache add parsed spec Result {
4243 silly cache add raw: 'isstream@~0.1.2',
4243 silly cache add scope: null,
4243 silly cache add escapedName: 'isstream',
4243 silly cache add name: 'isstream',
4243 silly cache add rawSpec: '~0.1.2',
4243 silly cache add spec: '>=0.1.2 <0.2.0',
4243 silly cache add type: 'range' }
4244 silly addNamed isstream@>=0.1.2 <0.2.0
4245 verbose addNamed ">=0.1.2 <0.2.0" is a valid semver range for isstream
4246 silly addNameRange { name: 'isstream', range: '>=0.1.2 <0.2.0', hasData: false }
4247 silly mapToRegistry name isstream
4248 silly mapToRegistry using default registry
4249 silly mapToRegistry registry https://registry.npmjs.org/
4250 silly mapToRegistry data Result {
4250 silly mapToRegistry raw: 'isstream',
4250 silly mapToRegistry scope: null,
4250 silly mapToRegistry escapedName: 'isstream',
4250 silly mapToRegistry name: 'isstream',
4250 silly mapToRegistry rawSpec: '',
4250 silly mapToRegistry spec: 'latest',
4250 silly mapToRegistry type: 'tag' }
4251 silly mapToRegistry uri https://registry.npmjs.org/isstream
4252 verbose addNameRange registry:https://registry.npmjs.org/isstream not in flight; fetching
4253 silly cache afterAdd [email protected]
4254 verbose afterAdd C:\Users\ivc\AppData\Roaming\npm-cache\aws4\1.8.0\package\package.json not in flight; writing
4255 verbose correctMkdir C:\Users\ivc\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
4256 silly resolveWithNewModule [email protected] checking installable status
4257 silly cache add args [ 'json-stringify-safe@~5.0.1', null ]
4258 verbose cache add spec json-stringify-safe@~5.0.1
4259 silly cache add parsed spec Result {
4259 silly cache add raw: 'json-stringify-safe@~5.0.1',
4259 silly cache add scope: null,
4259 silly cache add escapedName: 'json-stringify-safe',
4259 silly cache add name: 'json-stringify-safe',
4259 silly cache add rawSpec: '~5.0.1',
4259 silly cache add spec: '>=5.0.1 <5.1.0',
4259 silly cache add type: 'range' }
4260 silly addNamed json-stringify-safe@>=5.0.1 <5.1.0
4261 verbose addNamed ">=5.0.1 <5.1.0" is a valid semver range for json-stringify-safe
4262 silly addNameRange { name: 'json-stringify-safe',
4262 silly addNameRange range: '>=5.0.1 <5.1.0',
4262 silly addNameRange hasData: false }
4263 silly mapToRegistry name json-stringify-safe
4264 silly mapToRegistry using default registry
4265 silly mapToRegistry registry https://registry.npmjs.org/
4266 silly mapToRegistry data Result {
4266 silly mapToRegistry raw: 'json-stringify-safe',
4266 silly mapToRegistry scope: null,
4266 silly mapToRegistry escapedName: 'json-stringify-safe',
4266 silly mapToRegistry name: 'json-stringify-safe',
4266 silly mapToRegistry rawSpec: '',
4266 silly mapToRegistry spec: 'latest',
4266 silly mapToRegistry type: 'tag' }
4267 silly mapToRegistry uri https://registry.npmjs.org/json-stringify-safe
4268 verbose addNameRange registry:https://registry.npmjs.org/json-stringify-safe not in flight; fetching
4269 silly resolveWithNewModule [email protected] checking installable status
4270 silly cache add args [ 'performance-now@^2.1.0', null ]
4271 verbose cache add spec performance-now@^2.1.0
4272 silly cache add parsed spec Result {
4272 silly cache add raw: 'performance-now@^2.1.0',
4272 silly cache add scope: null,
4272 silly cache add escapedName: 'performance-now',
4272 silly cache add name: 'performance-now',
4272 silly cache add rawSpec: '^2.1.0',
4272 silly cache add spec: '>=2.1.0 <3.0.0',
4272 silly cache add type: 'range' }
4273 silly addNamed performance-now@>=2.1.0 <3.0.0
4274 verbose addNamed ">=2.1.0 <3.0.0" is a valid semver range for performance-now
4275 silly addNameRange { name: 'performance-now',
4275 silly addNameRange range: '>=2.1.0 <3.0.0',
4275 silly addNameRange hasData: false }
4276 silly mapToRegistry name performance-now
4277 silly mapToRegistry using default registry
4278 silly mapToRegistry registry https://registry.npmjs.org/
4279 silly mapToRegistry data Result {
4279 silly mapToRegistry raw: 'performance-now',
4279 silly mapToRegistry scope: null,
4279 silly mapToRegistry escapedName: 'performance-now',
4279 silly mapToRegistry name: 'performance-now',
4279 silly mapToRegistry rawSpec: '',
4279 silly mapToRegistry spec: 'latest',
4279 silly mapToRegistry type: 'tag' }
4280 silly mapToRegistry uri https://registry.npmjs.org/performance-now
4281 verbose addNameRange registry:https://registry.npmjs.org/performance-now not in flight; fetching
4282 silly cache afterAdd [email protected]
4283 verbose afterAdd C:\Users\ivc\AppData\Roaming\npm-cache\combined-stream\1.0.7\package\package.json not in flight; writing
4284 verbose correctMkdir C:\Users\ivc\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
4285 silly resolveWithNewModule [email protected] checking installable status
4286 silly cache add args [ 'oauth-sign@~0.9.0', null ]
4287 verbose cache add spec oauth-sign@~0.9.0
4288 silly cache add parsed spec Result {
4288 silly cache add raw: 'oauth-sign@~0.9.0',
4288 silly cache add scope: null,
4288 silly cache add escapedName: 'oauth-sign',
4288 silly cache add name: 'oauth-sign',
4288 silly cache add rawSpec: '~0.9.0',
4288 silly cache add spec: '>=0.9.0 <0.10.0',
4288 silly cache add type: 'range' }
4289 silly addNamed oauth-sign@>=0.9.0 <0.10.0
4290 verbose addNamed ">=0.9.0 <0.10.0" is a valid semver range for oauth-sign
4291 silly addNameRange { name: 'oauth-sign', range: '>=0.9.0 <0.10.0', hasData: false }
4292 silly mapToRegistry name oauth-sign
4293 silly mapToRegistry using default registry
4294 silly mapToRegistry registry https://registry.npmjs.org/
4295 silly mapToRegistry data Result {
4295 silly mapToRegistry raw: 'oauth-sign',
4295 silly mapToRegistry scope: null,
4295 silly mapToRegistry escapedName: 'oauth-sign',
4295 silly mapToRegistry name: 'oauth-sign',
4295 silly mapToRegistry rawSpec: '',
4295 silly mapToRegistry spec: 'latest',
4295 silly mapToRegistry type: 'tag' }
4296 silly mapToRegistry uri https://registry.npmjs.org/oauth-sign
4297 verbose addNameRange registry:https://registry.npmjs.org/oauth-sign not in flight; fetching
4298 silly resolveWithNewModule [email protected] checking installable status
4299 silly cache add args [ 'is-typedarray@~1.0.0', null ]
4300 verbose cache add spec is-typedarray@~1.0.0
4301 silly cache add parsed spec Result {
4301 silly cache add raw: 'is-typedarray@~1.0.0',
4301 silly cache add scope: null,
4301 silly cache add escapedName: 'is-typedarray',
4301 silly cache add name: 'is-typedarray',
4301 silly cache add rawSpec: '~1.0.0',
4301 silly cache add spec: '>=1.0.0 <1.1.0',
4301 silly cache add type: 'range' }
4302 silly addNamed is-typedarray@>=1.0.0 <1.1.0
4303 verbose addNamed ">=1.0.0 <1.1.0" is a valid semver range for is-typedarray
4304 silly addNameRange { name: 'is-typedarray',
4304 silly addNameRange range: '>=1.0.0 <1.1.0',
4304 silly addNameRange hasData: false }
4305 silly mapToRegistry name is-typedarray
4306 silly mapToRegistry using default registry
4307 silly mapToRegistry registry https://registry.npmjs.org/
4308 silly mapToRegistry data Result {
4308 silly mapToRegistry raw: 'is-typedarray',
4308 silly mapToRegistry scope: null,
4308 silly mapToRegistry escapedName: 'is-typedarray',
4308 silly mapToRegistry name: 'is-typedarray',
4308 silly mapToRegistry rawSpec: '',
4308 silly mapToRegistry spec: 'latest',
4308 silly mapToRegistry type: 'tag' }
4309 silly mapToRegistry uri https://registry.npmjs.org/is-typedarray
4310 verbose addNameRange registry:https://registry.npmjs.org/is-typedarray not in flight; fetching
4311 silly resolveWithNewModule [email protected] checking installable status
4312 silly cache add args [ 'tunnel-agent@^0.6.0', null ]
4313 verbose cache add spec tunnel-agent@^0.6.0
4314 silly cache add parsed spec Result {
4314 silly cache add raw: 'tunnel-agent@^0.6.0',
4314 silly cache add scope: null,
4314 silly cache add escapedName: 'tunnel-agent',
4314 silly cache add name: 'tunnel-agent',
4314 silly cache add rawSpec: '^0.6.0',
4314 silly cache add spec: '>=0.6.0 <0.7.0',
4314 silly cache add type: 'range' }
4315 silly addNamed tunnel-agent@>=0.6.0 <0.7.0
4316 verbose addNamed ">=0.6.0 <0.7.0" is a valid semver range for tunnel-agent
4317 silly addNameRange { name: 'tunnel-agent', range: '>=0.6.0 <0.7.0', hasData: false }
4318 silly mapToRegistry name tunnel-agent
4319 silly mapToRegistry using default registry
4320 silly mapToRegistry registry https://registry.npmjs.org/
4321 silly mapToRegistry data Result {
4321 silly mapToRegistry raw: 'tunnel-agent',
4321 silly mapToRegistry scope: null,
4321 silly mapToRegistry escapedName: 'tunnel-agent',
4321 silly mapToRegistry name: 'tunnel-agent',
4321 silly mapToRegistry rawSpec: '',
4321 silly mapToRegistry spec: 'latest',
4321 silly mapToRegistry type: 'tag' }
4322 silly mapToRegistry uri https://registry.npmjs.org/tunnel-agent
4323 verbose addNameRange registry:https://registry.npmjs.org/tunnel-agent not in flight; fetching
4324 silly resolveWithNewModule [email protected] checking installable status
4325 silly cache add args [ 'mime-types@~2.1.19', null ]
4326 verbose cache add spec mime-types@~2.1.19
4327 silly cache add parsed spec Result {
4327 silly cache add raw: 'mime-types@~2.1.19',
4327 silly cache add scope: null,
4327 silly cache add escapedName: 'mime-types',
4327 silly cache add name: 'mime-types',
4327 silly cache add rawSpec: '~2.1.19',
4327 silly cache add spec: '>=2.1.19 <2.2.0',
4327 silly cache add type: 'range' }
4328 silly addNamed mime-types@>=2.1.19 <2.2.0
4329 verbose addNamed ">=2.1.19 <2.2.0" is a valid semver range for mime-types
4330 silly addNameRange { name: 'mime-types', range: '>=2.1.19 <2.2.0', hasData: false }
4331 silly mapToRegistry name mime-types
4332 silly mapToRegistry using default registry
4333 silly mapToRegistry registry https://registry.npmjs.org/
4334 silly mapToRegistry data Result {
4334 silly mapToRegistry raw: 'mime-types',
4334 silly mapToRegistry scope: null,
4334 silly mapToRegistry escapedName: 'mime-types',
4334 silly mapToRegistry name: 'mime-types',
4334 silly mapToRegistry rawSpec: '',
4334 silly mapToRegistry spec: 'latest',
4334 silly mapToRegistry type: 'tag' }
4335 silly mapToRegistry uri https://registry.npmjs.org/mime-types
4336 verbose addNameRange registry:https://registry.npmjs.org/mime-types not in flight; fetching
4337 silly resolveWithNewModule [email protected] checking installable status
4338 silly cache add args [ 'uuid@^3.3.2', null ]
4339 verbose cache add spec uuid@^3.3.2
4340 silly cache add parsed spec Result {
4340 silly cache add raw: 'uuid@^3.3.2',
4340 silly cache add scope: null,
4340 silly cache add escapedName: 'uuid',
4340 silly cache add name: 'uuid',
4340 silly cache add rawSpec: '^3.3.2',
4340 silly cache add spec: '>=3.3.2 <4.0.0',
4340 silly cache add type: 'range' }
4341 silly addNamed uuid@>=3.3.2 <4.0.0
4342 verbose addNamed ">=3.3.2 <4.0.0" is a valid semver range for uuid
4343 silly addNameRange { name: 'uuid', range: '>=3.3.2 <4.0.0', hasData: false }
4344 silly mapToRegistry name uuid
4345 silly mapToRegistry using default registry
4346 silly mapToRegistry registry https://registry.npmjs.org/
4347 silly mapToRegistry data Result {
4347 silly mapToRegistry raw: 'uuid',
4347 silly mapToRegistry scope: null,
4347 silly mapToRegistry escapedName: 'uuid',
4347 silly mapToRegistry name: 'uuid',
4347 silly mapToRegistry rawSpec: '',
4347 silly mapToRegistry spec: 'latest',
4347 silly mapToRegistry type: 'tag' }
4348 silly mapToRegistry uri https://registry.npmjs.org/uuid
4349 verbose addNameRange registry:https://registry.npmjs.org/uuid not in flight; fetching
4350 verbose get https://registry.npmjs.org/safe-buffer not expired, no request
4351 silly addNameRange number 2 { name: 'safe-buffer', range: '>=5.1.2 <6.0.0', hasData: true }
4352 silly addNameRange versions [ 'safe-buffer',
4352 silly addNameRange [ '1.0.0',
4352 silly addNameRange '2.0.0',
4352 silly addNameRange '3.0.0',
4352 silly addNameRange '4.0.0',
4352 silly addNameRange '5.0.0',
4352 silly addNameRange '5.0.1',
4352 silly addNameRange '5.1.0',
4352 silly addNameRange '5.1.1',
4352 silly addNameRange '5.1.2' ] ]
4353 silly addNamed [email protected]
4354 verbose addNamed "5.1.2" is a plain semver version for safe-buffer
4355 silly cache afterAdd [email protected]
4356 verbose afterAdd C:\Users\ivc\AppData\Roaming\npm-cache\http-signature\1.2.0\package\package.json not in flight; writing
4357 verbose correctMkdir C:\Users\ivc\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
4358 silly cache afterAdd [email protected]
4359 verbose afterAdd C:\Users\ivc\AppData\Roaming\npm-cache\form-data\2.3.2\package\package.json not in flight; writing
4360 verbose correctMkdir C:\Users\ivc\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
4361 silly cache afterAdd [email protected]
4362 verbose afterAdd C:\Users\ivc\AppData\Roaming\npm-cache\har-validator\5.1.0\package\package.json not in flight; writing
4363 verbose correctMkdir C:\Users\ivc\AppData\Roaming\npm-cache correctMkdir not in flight; initializing