-
Notifications
You must be signed in to change notification settings - Fork 0
/
npm-debug.log
12399 lines (12399 loc) · 946 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
863
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
6003 silly fetchAndShaCheck shasum 805211df04faaf1c63a3600306cdf5ade50b2ec8
6004 verbose addTmpTarball /var/folders/fh/27z8np7j5kz3bdqp7yj0qhkw0000gn/T/npm-98607-83082364/registry.npmjs.org/glob/-/glob-7.1.1.tgz not in flight; adding
6005 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
6006 verbose correctMkdir /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm correctMkdir not in flight; initializing
6007 silly cache afterAdd [email protected]
6008 verbose afterAdd /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm/glob/7.1.1/package/package.json not in flight; writing
6009 verbose correctMkdir /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm correctMkdir not in flight; initializing
6010 verbose afterAdd /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm/glob/7.1.1/package/package.json written
6011 silly fetchNamedPackageData fs.realpath
6012 silly mapToRegistry name fs.realpath
6013 silly mapToRegistry using default registry
6014 silly mapToRegistry registry https://registry.npmjs.org/
6015 silly mapToRegistry data Result {
6015 silly mapToRegistry raw: 'fs.realpath',
6015 silly mapToRegistry scope: null,
6015 silly mapToRegistry escapedName: 'fs.realpath',
6015 silly mapToRegistry name: 'fs.realpath',
6015 silly mapToRegistry rawSpec: '',
6015 silly mapToRegistry spec: 'latest',
6015 silly mapToRegistry type: 'tag' }
6016 silly mapToRegistry uri https://registry.npmjs.org/fs.realpath
6017 silly fetchNamedPackageData inflight
6018 silly mapToRegistry name inflight
6019 silly mapToRegistry using default registry
6020 silly mapToRegistry registry https://registry.npmjs.org/
6021 silly mapToRegistry data Result {
6021 silly mapToRegistry raw: 'inflight',
6021 silly mapToRegistry scope: null,
6021 silly mapToRegistry escapedName: 'inflight',
6021 silly mapToRegistry name: 'inflight',
6021 silly mapToRegistry rawSpec: '',
6021 silly mapToRegistry spec: 'latest',
6021 silly mapToRegistry type: 'tag' }
6022 silly mapToRegistry uri https://registry.npmjs.org/inflight
6023 silly fetchNamedPackageData minimatch
6024 silly mapToRegistry name minimatch
6025 silly mapToRegistry using default registry
6026 silly mapToRegistry registry https://registry.npmjs.org/
6027 silly mapToRegistry data Result {
6027 silly mapToRegistry raw: 'minimatch',
6027 silly mapToRegistry scope: null,
6027 silly mapToRegistry escapedName: 'minimatch',
6027 silly mapToRegistry name: 'minimatch',
6027 silly mapToRegistry rawSpec: '',
6027 silly mapToRegistry spec: 'latest',
6027 silly mapToRegistry type: 'tag' }
6028 silly mapToRegistry uri https://registry.npmjs.org/minimatch
6029 silly fetchNamedPackageData once
6030 silly mapToRegistry name once
6031 silly mapToRegistry using default registry
6032 silly mapToRegistry registry https://registry.npmjs.org/
6033 silly mapToRegistry data Result {
6033 silly mapToRegistry raw: 'once',
6033 silly mapToRegistry scope: null,
6033 silly mapToRegistry escapedName: 'once',
6033 silly mapToRegistry name: 'once',
6033 silly mapToRegistry rawSpec: '',
6033 silly mapToRegistry spec: 'latest',
6033 silly mapToRegistry type: 'tag' }
6034 silly mapToRegistry uri https://registry.npmjs.org/once
6035 silly fetchNamedPackageData path-is-absolute
6036 silly mapToRegistry name path-is-absolute
6037 silly mapToRegistry using default registry
6038 silly mapToRegistry registry https://registry.npmjs.org/
6039 silly mapToRegistry data Result {
6039 silly mapToRegistry raw: 'path-is-absolute',
6039 silly mapToRegistry scope: null,
6039 silly mapToRegistry escapedName: 'path-is-absolute',
6039 silly mapToRegistry name: 'path-is-absolute',
6039 silly mapToRegistry rawSpec: '',
6039 silly mapToRegistry spec: 'latest',
6039 silly mapToRegistry type: 'tag' }
6040 silly mapToRegistry uri https://registry.npmjs.org/path-is-absolute
6041 verbose request uri https://registry.npmjs.org/fs.realpath
6042 verbose request no auth needed
6043 info attempt registry request try #1 at 6:13:41 PM
6044 http request GET https://registry.npmjs.org/fs.realpath
6045 verbose request uri https://registry.npmjs.org/inflight
6046 verbose request no auth needed
6047 info attempt registry request try #1 at 6:13:41 PM
6048 http request GET https://registry.npmjs.org/inflight
6049 verbose request uri https://registry.npmjs.org/minimatch
6050 verbose request no auth needed
6051 info attempt registry request try #1 at 6:13:41 PM
6052 http request GET https://registry.npmjs.org/minimatch
6053 verbose request uri https://registry.npmjs.org/once
6054 verbose request no auth needed
6055 info attempt registry request try #1 at 6:13:41 PM
6056 http request GET https://registry.npmjs.org/once
6057 verbose request uri https://registry.npmjs.org/path-is-absolute
6058 verbose request no auth needed
6059 info attempt registry request try #1 at 6:13:41 PM
6060 http request GET https://registry.npmjs.org/path-is-absolute
6061 http 200 https://registry.npmjs.org/inflight
6062 verbose headers { server: 'nginx/1.10.1',
6062 verbose headers 'content-type': 'application/json',
6062 verbose headers 'last-modified': 'Tue, 01 Nov 2016 17:30:25 GMT',
6062 verbose headers etag: 'W/"5818d131-25a6"',
6062 verbose headers 'content-encoding': 'gzip',
6062 verbose headers 'cache-control': 'max-age=300',
6062 verbose headers 'content-length': '1994',
6062 verbose headers 'accept-ranges': 'bytes',
6062 verbose headers date: 'Sun, 26 Feb 2017 01:13:41 GMT',
6062 verbose headers via: '1.1 varnish',
6062 verbose headers age: '63',
6062 verbose headers connection: 'keep-alive',
6062 verbose headers 'x-served-by': 'cache-den6022-DEN',
6062 verbose headers 'x-cache': 'HIT',
6062 verbose headers 'x-cache-hits': '4',
6062 verbose headers 'x-timer': 'S1488071621.940103,VS0,VE0',
6062 verbose headers vary: 'Accept-Encoding' }
6063 silly get cb [ 200,
6063 silly get { server: 'nginx/1.10.1',
6063 silly get 'content-type': 'application/json',
6063 silly get 'last-modified': 'Tue, 01 Nov 2016 17:30:25 GMT',
6063 silly get etag: 'W/"5818d131-25a6"',
6063 silly get 'content-encoding': 'gzip',
6063 silly get 'cache-control': 'max-age=300',
6063 silly get 'content-length': '1994',
6063 silly get 'accept-ranges': 'bytes',
6063 silly get date: 'Sun, 26 Feb 2017 01:13:41 GMT',
6063 silly get via: '1.1 varnish',
6063 silly get age: '63',
6063 silly get connection: 'keep-alive',
6063 silly get 'x-served-by': 'cache-den6022-DEN',
6063 silly get 'x-cache': 'HIT',
6063 silly get 'x-cache-hits': '4',
6063 silly get 'x-timer': 'S1488071621.940103,VS0,VE0',
6063 silly get vary: 'Accept-Encoding' } ]
6064 verbose get saving inflight to /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm/registry.npmjs.org/inflight/.cache.json
6065 verbose correctMkdir /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm correctMkdir not in flight; initializing
6066 http 200 https://registry.npmjs.org/fs.realpath
6067 verbose headers { server: 'nginx/1.10.1',
6067 verbose headers 'content-type': 'application/json',
6067 verbose headers 'last-modified': 'Tue, 01 Nov 2016 17:25:20 GMT',
6067 verbose headers etag: 'W/"5818d000-107b"',
6067 verbose headers 'content-encoding': 'gzip',
6067 verbose headers 'cache-control': 'max-age=300',
6067 verbose headers 'content-length': '1391',
6067 verbose headers 'accept-ranges': 'bytes',
6067 verbose headers date: 'Sun, 26 Feb 2017 01:13:41 GMT',
6067 verbose headers via: '1.1 varnish',
6067 verbose headers age: '188',
6067 verbose headers connection: 'keep-alive',
6067 verbose headers 'x-served-by': 'cache-den6026-DEN',
6067 verbose headers 'x-cache': 'HIT',
6067 verbose headers 'x-cache-hits': '2',
6067 verbose headers 'x-timer': 'S1488071621.940076,VS0,VE0',
6067 verbose headers vary: 'Accept-Encoding' }
6068 silly get cb [ 200,
6068 silly get { server: 'nginx/1.10.1',
6068 silly get 'content-type': 'application/json',
6068 silly get 'last-modified': 'Tue, 01 Nov 2016 17:25:20 GMT',
6068 silly get etag: 'W/"5818d000-107b"',
6068 silly get 'content-encoding': 'gzip',
6068 silly get 'cache-control': 'max-age=300',
6068 silly get 'content-length': '1391',
6068 silly get 'accept-ranges': 'bytes',
6068 silly get date: 'Sun, 26 Feb 2017 01:13:41 GMT',
6068 silly get via: '1.1 varnish',
6068 silly get age: '188',
6068 silly get connection: 'keep-alive',
6068 silly get 'x-served-by': 'cache-den6026-DEN',
6068 silly get 'x-cache': 'HIT',
6068 silly get 'x-cache-hits': '2',
6068 silly get 'x-timer': 'S1488071621.940076,VS0,VE0',
6068 silly get vary: 'Accept-Encoding' } ]
6069 verbose get saving fs.realpath to /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm/registry.npmjs.org/fs.realpath/.cache.json
6070 verbose correctMkdir /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm correctMkdir not in flight; initializing
6071 http 200 https://registry.npmjs.org/once
6072 verbose headers { server: 'nginx/1.10.1',
6072 verbose headers 'content-type': 'application/json',
6072 verbose headers 'last-modified': 'Sat, 25 Feb 2017 23:38:29 GMT',
6072 verbose headers etag: 'W/"58b21575-25d5"',
6072 verbose headers 'content-encoding': 'gzip',
6072 verbose headers 'cache-control': 'max-age=300',
6072 verbose headers 'content-length': '2430',
6072 verbose headers 'accept-ranges': 'bytes',
6072 verbose headers date: 'Sun, 26 Feb 2017 01:13:41 GMT',
6072 verbose headers via: '1.1 varnish',
6072 verbose headers age: '243',
6072 verbose headers connection: 'keep-alive',
6072 verbose headers 'x-served-by': 'cache-den6023-DEN',
6072 verbose headers 'x-cache': 'HIT',
6072 verbose headers 'x-cache-hits': '5',
6072 verbose headers 'x-timer': 'S1488071621.941452,VS0,VE0',
6072 verbose headers vary: 'Accept-Encoding' }
6073 silly get cb [ 200,
6073 silly get { server: 'nginx/1.10.1',
6073 silly get 'content-type': 'application/json',
6073 silly get 'last-modified': 'Sat, 25 Feb 2017 23:38:29 GMT',
6073 silly get etag: 'W/"58b21575-25d5"',
6073 silly get 'content-encoding': 'gzip',
6073 silly get 'cache-control': 'max-age=300',
6073 silly get 'content-length': '2430',
6073 silly get 'accept-ranges': 'bytes',
6073 silly get date: 'Sun, 26 Feb 2017 01:13:41 GMT',
6073 silly get via: '1.1 varnish',
6073 silly get age: '243',
6073 silly get connection: 'keep-alive',
6073 silly get 'x-served-by': 'cache-den6023-DEN',
6073 silly get 'x-cache': 'HIT',
6073 silly get 'x-cache-hits': '5',
6073 silly get 'x-timer': 'S1488071621.941452,VS0,VE0',
6073 silly get vary: 'Accept-Encoding' } ]
6074 verbose get saving once to /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm/registry.npmjs.org/once/.cache.json
6075 verbose correctMkdir /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm correctMkdir not in flight; initializing
6076 http 200 https://registry.npmjs.org/minimatch
6077 verbose headers { server: 'nginx/1.10.1',
6077 verbose headers 'content-type': 'application/json',
6077 verbose headers 'last-modified': 'Sun, 19 Feb 2017 09:05:44 GMT',
6077 verbose headers etag: 'W/"58a95fe8-cbfa"',
6077 verbose headers 'content-encoding': 'gzip',
6077 verbose headers 'cache-control': 'max-age=300',
6077 verbose headers 'content-length': '7778',
6077 verbose headers 'accept-ranges': 'bytes',
6077 verbose headers date: 'Sun, 26 Feb 2017 01:13:41 GMT',
6077 verbose headers via: '1.1 varnish',
6077 verbose headers age: '299',
6077 verbose headers connection: 'keep-alive',
6077 verbose headers 'x-served-by': 'cache-den6022-DEN',
6077 verbose headers 'x-cache': 'HIT',
6077 verbose headers 'x-cache-hits': '13',
6077 verbose headers 'x-timer': 'S1488071621.940778,VS0,VE0',
6077 verbose headers vary: 'Accept-Encoding' }
6078 silly get cb [ 200,
6078 silly get { server: 'nginx/1.10.1',
6078 silly get 'content-type': 'application/json',
6078 silly get 'last-modified': 'Sun, 19 Feb 2017 09:05:44 GMT',
6078 silly get etag: 'W/"58a95fe8-cbfa"',
6078 silly get 'content-encoding': 'gzip',
6078 silly get 'cache-control': 'max-age=300',
6078 silly get 'content-length': '7778',
6078 silly get 'accept-ranges': 'bytes',
6078 silly get date: 'Sun, 26 Feb 2017 01:13:41 GMT',
6078 silly get via: '1.1 varnish',
6078 silly get age: '299',
6078 silly get connection: 'keep-alive',
6078 silly get 'x-served-by': 'cache-den6022-DEN',
6078 silly get 'x-cache': 'HIT',
6078 silly get 'x-cache-hits': '13',
6078 silly get 'x-timer': 'S1488071621.940778,VS0,VE0',
6078 silly get vary: 'Accept-Encoding' } ]
6079 verbose get saving minimatch to /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm/registry.npmjs.org/minimatch/.cache.json
6080 verbose correctMkdir /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm correctMkdir not in flight; initializing
6081 http 200 https://registry.npmjs.org/path-is-absolute
6082 verbose headers { server: 'nginx/1.10.1',
6082 verbose headers 'content-type': 'application/json',
6082 verbose headers 'last-modified': 'Tue, 01 Nov 2016 18:01:04 GMT',
6082 verbose headers etag: 'W/"5818d860-1312"',
6082 verbose headers 'content-encoding': 'gzip',
6082 verbose headers 'cache-control': 'max-age=300',
6082 verbose headers 'content-length': '1379',
6082 verbose headers 'accept-ranges': 'bytes',
6082 verbose headers date: 'Sun, 26 Feb 2017 01:13:41 GMT',
6082 verbose headers via: '1.1 varnish',
6082 verbose headers age: '120',
6082 verbose headers connection: 'keep-alive',
6082 verbose headers 'x-served-by': 'cache-den6021-DEN',
6082 verbose headers 'x-cache': 'HIT',
6082 verbose headers 'x-cache-hits': '2',
6082 verbose headers 'x-timer': 'S1488071621.946075,VS0,VE0',
6082 verbose headers vary: 'Accept-Encoding' }
6083 silly get cb [ 200,
6083 silly get { server: 'nginx/1.10.1',
6083 silly get 'content-type': 'application/json',
6083 silly get 'last-modified': 'Tue, 01 Nov 2016 18:01:04 GMT',
6083 silly get etag: 'W/"5818d860-1312"',
6083 silly get 'content-encoding': 'gzip',
6083 silly get 'cache-control': 'max-age=300',
6083 silly get 'content-length': '1379',
6083 silly get 'accept-ranges': 'bytes',
6083 silly get date: 'Sun, 26 Feb 2017 01:13:41 GMT',
6083 silly get via: '1.1 varnish',
6083 silly get age: '120',
6083 silly get connection: 'keep-alive',
6083 silly get 'x-served-by': 'cache-den6021-DEN',
6083 silly get 'x-cache': 'HIT',
6083 silly get 'x-cache-hits': '2',
6083 silly get 'x-timer': 'S1488071621.946075,VS0,VE0',
6083 silly get vary: 'Accept-Encoding' } ]
6084 verbose get saving path-is-absolute to /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm/registry.npmjs.org/path-is-absolute/.cache.json
6085 verbose correctMkdir /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm correctMkdir not in flight; initializing
6086 silly pickManifestFromRegistryMetadata spec >=1.0.4 <2.0.0 tag latest versions [ '1.0.0', '1.0.1', '1.0.2', '1.0.3', '1.0.4', '1.0.5', '1.0.6' ]
6087 silly resolveWithNewModule [email protected] checking installable status
6088 silly cache add args [ 'inflight@^1.0.4', null ]
6089 verbose cache add spec inflight@^1.0.4
6090 silly cache add parsed spec Result {
6090 silly cache add raw: 'inflight@^1.0.4',
6090 silly cache add scope: null,
6090 silly cache add escapedName: 'inflight',
6090 silly cache add name: 'inflight',
6090 silly cache add rawSpec: '^1.0.4',
6090 silly cache add spec: '>=1.0.4 <2.0.0',
6090 silly cache add type: 'range' }
6091 silly addNamed inflight@>=1.0.4 <2.0.0
6092 verbose addNamed ">=1.0.4 <2.0.0" is a valid semver range for inflight
6093 silly addNameRange { name: 'inflight', range: '>=1.0.4 <2.0.0', hasData: false }
6094 silly mapToRegistry name inflight
6095 silly mapToRegistry using default registry
6096 silly mapToRegistry registry https://registry.npmjs.org/
6097 silly mapToRegistry data Result {
6097 silly mapToRegistry raw: 'inflight',
6097 silly mapToRegistry scope: null,
6097 silly mapToRegistry escapedName: 'inflight',
6097 silly mapToRegistry name: 'inflight',
6097 silly mapToRegistry rawSpec: '',
6097 silly mapToRegistry spec: 'latest',
6097 silly mapToRegistry type: 'tag' }
6098 silly mapToRegistry uri https://registry.npmjs.org/inflight
6099 verbose addNameRange registry:https://registry.npmjs.org/inflight not in flight; fetching
6100 verbose get https://registry.npmjs.org/inflight not expired, no request
6101 silly addNameRange number 2 { name: 'inflight', range: '>=1.0.4 <2.0.0', hasData: true }
6102 silly addNameRange versions [ 'inflight',
6102 silly addNameRange [ '1.0.0', '1.0.1', '1.0.2', '1.0.3', '1.0.4', '1.0.5', '1.0.6' ] ]
6103 silly pickManifestFromRegistryMetadata spec >=1.0.4 <2.0.0 tag latest versions [ '1.0.0', '1.0.1', '1.0.2', '1.0.3', '1.0.4', '1.0.5', '1.0.6' ]
6104 silly addNamed inflight@latest
6105 verbose addNamed "latest" is being treated as a dist-tag for inflight
6106 info addNameTag [ 'inflight', 'latest' ]
6107 silly mapToRegistry name inflight
6108 silly mapToRegistry using default registry
6109 silly mapToRegistry registry https://registry.npmjs.org/
6110 silly mapToRegistry data Result {
6110 silly mapToRegistry raw: 'inflight',
6110 silly mapToRegistry scope: null,
6110 silly mapToRegistry escapedName: 'inflight',
6110 silly mapToRegistry name: 'inflight',
6110 silly mapToRegistry rawSpec: '',
6110 silly mapToRegistry spec: 'latest',
6110 silly mapToRegistry type: 'tag' }
6111 silly mapToRegistry uri https://registry.npmjs.org/inflight
6112 verbose addNameTag registry:https://registry.npmjs.org/inflight already in flight; waiting
6113 silly addNameTag next cb for inflight with tag latest
6114 silly addNamed [email protected]
6115 verbose addNamed "1.0.6" is a plain semver version for inflight
6116 silly mapToRegistry name inflight
6117 silly mapToRegistry using default registry
6118 silly mapToRegistry registry https://registry.npmjs.org/
6119 silly mapToRegistry data Result {
6119 silly mapToRegistry raw: 'inflight',
6119 silly mapToRegistry scope: null,
6119 silly mapToRegistry escapedName: 'inflight',
6119 silly mapToRegistry name: 'inflight',
6119 silly mapToRegistry rawSpec: '',
6119 silly mapToRegistry spec: 'latest',
6119 silly mapToRegistry type: 'tag' }
6120 silly mapToRegistry uri https://registry.npmjs.org/inflight
6121 verbose addRemoteTarball https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz not in flight; adding
6122 verbose addRemoteTarball [ 'https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz',
6122 verbose addRemoteTarball '49bd6331d7d02d0c09bc910a1075ba8165b56df9' ]
6123 info retry fetch attempt 1 at 6:13:41 PM
6124 info attempt registry request try #1 at 6:13:41 PM
6125 http fetch GET https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz
6126 silly pickManifestFromRegistryMetadata spec >=1.3.0 <2.0.0 tag latest versions [ '1.1.1', '1.2.0', '1.3.0', '1.3.1', '1.3.2', '1.3.3', '1.4.0' ]
6127 silly resolveWithNewModule [email protected] checking installable status
6128 silly cache add args [ 'once@^1.3.0', null ]
6129 verbose cache add spec once@^1.3.0
6130 silly cache add parsed spec Result {
6130 silly cache add raw: 'once@^1.3.0',
6130 silly cache add scope: null,
6130 silly cache add escapedName: 'once',
6130 silly cache add name: 'once',
6130 silly cache add rawSpec: '^1.3.0',
6130 silly cache add spec: '>=1.3.0 <2.0.0',
6130 silly cache add type: 'range' }
6131 silly addNamed once@>=1.3.0 <2.0.0
6132 verbose addNamed ">=1.3.0 <2.0.0" is a valid semver range for once
6133 silly addNameRange { name: 'once', range: '>=1.3.0 <2.0.0', hasData: false }
6134 silly mapToRegistry name once
6135 silly mapToRegistry using default registry
6136 silly mapToRegistry registry https://registry.npmjs.org/
6137 silly mapToRegistry data Result {
6137 silly mapToRegistry raw: 'once',
6137 silly mapToRegistry scope: null,
6137 silly mapToRegistry escapedName: 'once',
6137 silly mapToRegistry name: 'once',
6137 silly mapToRegistry rawSpec: '',
6137 silly mapToRegistry spec: 'latest',
6137 silly mapToRegistry type: 'tag' }
6138 silly mapToRegistry uri https://registry.npmjs.org/once
6139 verbose addNameRange registry:https://registry.npmjs.org/once not in flight; fetching
6140 silly pickManifestFromRegistryMetadata spec >=1.0.0 <2.0.0 tag latest versions [ '0.0.0', '1.0.0' ]
6141 silly resolveWithNewModule [email protected] checking installable status
6142 silly cache add args [ 'fs.realpath@^1.0.0', null ]
6143 verbose cache add spec fs.realpath@^1.0.0
6144 silly cache add parsed spec Result {
6144 silly cache add raw: 'fs.realpath@^1.0.0',
6144 silly cache add scope: null,
6144 silly cache add escapedName: 'fs.realpath',
6144 silly cache add name: 'fs.realpath',
6144 silly cache add rawSpec: '^1.0.0',
6144 silly cache add spec: '>=1.0.0 <2.0.0',
6144 silly cache add type: 'range' }
6145 silly addNamed fs.realpath@>=1.0.0 <2.0.0
6146 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for fs.realpath
6147 silly addNameRange { name: 'fs.realpath', range: '>=1.0.0 <2.0.0', hasData: false }
6148 silly mapToRegistry name fs.realpath
6149 silly mapToRegistry using default registry
6150 silly mapToRegistry registry https://registry.npmjs.org/
6151 silly mapToRegistry data Result {
6151 silly mapToRegistry raw: 'fs.realpath',
6151 silly mapToRegistry scope: null,
6151 silly mapToRegistry escapedName: 'fs.realpath',
6151 silly mapToRegistry name: 'fs.realpath',
6151 silly mapToRegistry rawSpec: '',
6151 silly mapToRegistry spec: 'latest',
6151 silly mapToRegistry type: 'tag' }
6152 silly mapToRegistry uri https://registry.npmjs.org/fs.realpath
6153 verbose addNameRange registry:https://registry.npmjs.org/fs.realpath not in flight; fetching
6154 verbose get https://registry.npmjs.org/once not expired, no request
6155 silly addNameRange number 2 { name: 'once', range: '>=1.3.0 <2.0.0', hasData: true }
6156 silly addNameRange versions [ 'once',
6156 silly addNameRange [ '1.1.1', '1.2.0', '1.3.0', '1.3.1', '1.3.2', '1.3.3', '1.4.0' ] ]
6157 silly pickManifestFromRegistryMetadata spec >=1.3.0 <2.0.0 tag latest versions [ '1.1.1', '1.2.0', '1.3.0', '1.3.1', '1.3.2', '1.3.3', '1.4.0' ]
6158 silly addNamed once@latest
6159 verbose addNamed "latest" is being treated as a dist-tag for once
6160 info addNameTag [ 'once', 'latest' ]
6161 silly mapToRegistry name once
6162 silly mapToRegistry using default registry
6163 silly mapToRegistry registry https://registry.npmjs.org/
6164 silly mapToRegistry data Result {
6164 silly mapToRegistry raw: 'once',
6164 silly mapToRegistry scope: null,
6164 silly mapToRegistry escapedName: 'once',
6164 silly mapToRegistry name: 'once',
6164 silly mapToRegistry rawSpec: '',
6164 silly mapToRegistry spec: 'latest',
6164 silly mapToRegistry type: 'tag' }
6165 silly mapToRegistry uri https://registry.npmjs.org/once
6166 verbose addNameTag registry:https://registry.npmjs.org/once already in flight; waiting
6167 silly addNameTag next cb for once with tag latest
6168 silly addNamed [email protected]
6169 verbose addNamed "1.4.0" is a plain semver version for once
6170 silly pickManifestFromRegistryMetadata spec >=3.0.2 <4.0.0 tag latest versions [ '0.0.1',
6170 silly pickManifestFromRegistryMetadata '0.0.2',
6170 silly pickManifestFromRegistryMetadata '0.0.4',
6170 silly pickManifestFromRegistryMetadata '0.0.5',
6170 silly pickManifestFromRegistryMetadata '0.1.1',
6170 silly pickManifestFromRegistryMetadata '0.1.2',
6170 silly pickManifestFromRegistryMetadata '0.1.3',
6170 silly pickManifestFromRegistryMetadata '0.1.4',
6170 silly pickManifestFromRegistryMetadata '0.1.5',
6170 silly pickManifestFromRegistryMetadata '0.2.0',
6170 silly pickManifestFromRegistryMetadata '0.2.2',
6170 silly pickManifestFromRegistryMetadata '0.2.3',
6170 silly pickManifestFromRegistryMetadata '0.2.4',
6170 silly pickManifestFromRegistryMetadata '0.2.5',
6170 silly pickManifestFromRegistryMetadata '0.2.6',
6170 silly pickManifestFromRegistryMetadata '0.2.7',
6170 silly pickManifestFromRegistryMetadata '0.2.8',
6170 silly pickManifestFromRegistryMetadata '0.2.9',
6170 silly pickManifestFromRegistryMetadata '0.2.10',
6170 silly pickManifestFromRegistryMetadata '0.2.11',
6170 silly pickManifestFromRegistryMetadata '0.2.12',
6170 silly pickManifestFromRegistryMetadata '0.2.13',
6170 silly pickManifestFromRegistryMetadata '0.2.14',
6170 silly pickManifestFromRegistryMetadata '0.3.0',
6170 silly pickManifestFromRegistryMetadata '0.4.0',
6170 silly pickManifestFromRegistryMetadata '1.0.0',
6170 silly pickManifestFromRegistryMetadata '2.0.0',
6170 silly pickManifestFromRegistryMetadata '2.0.1',
6170 silly pickManifestFromRegistryMetadata '2.0.2',
6170 silly pickManifestFromRegistryMetadata '2.0.3',
6170 silly pickManifestFromRegistryMetadata '2.0.4',
6170 silly pickManifestFromRegistryMetadata '2.0.5',
6170 silly pickManifestFromRegistryMetadata '2.0.6',
6170 silly pickManifestFromRegistryMetadata '2.0.7',
6170 silly pickManifestFromRegistryMetadata '2.0.8',
6170 silly pickManifestFromRegistryMetadata '2.0.9',
6170 silly pickManifestFromRegistryMetadata '2.0.10',
6170 silly pickManifestFromRegistryMetadata '3.0.0',
6170 silly pickManifestFromRegistryMetadata '3.0.2',
6170 silly pickManifestFromRegistryMetadata '3.0.3' ]
6171 silly resolveWithNewModule [email protected] checking installable status
6172 silly cache add args [ 'minimatch@^3.0.2', null ]
6173 verbose cache add spec minimatch@^3.0.2
6174 silly cache add parsed spec Result {
6174 silly cache add raw: 'minimatch@^3.0.2',
6174 silly cache add scope: null,
6174 silly cache add escapedName: 'minimatch',
6174 silly cache add name: 'minimatch',
6174 silly cache add rawSpec: '^3.0.2',
6174 silly cache add spec: '>=3.0.2 <4.0.0',
6174 silly cache add type: 'range' }
6175 silly addNamed minimatch@>=3.0.2 <4.0.0
6176 verbose addNamed ">=3.0.2 <4.0.0" is a valid semver range for minimatch
6177 silly addNameRange { name: 'minimatch', range: '>=3.0.2 <4.0.0', hasData: false }
6178 silly mapToRegistry name minimatch
6179 silly mapToRegistry using default registry
6180 silly mapToRegistry registry https://registry.npmjs.org/
6181 silly mapToRegistry data Result {
6181 silly mapToRegistry raw: 'minimatch',
6181 silly mapToRegistry scope: null,
6181 silly mapToRegistry escapedName: 'minimatch',
6181 silly mapToRegistry name: 'minimatch',
6181 silly mapToRegistry rawSpec: '',
6181 silly mapToRegistry spec: 'latest',
6181 silly mapToRegistry type: 'tag' }
6182 silly mapToRegistry uri https://registry.npmjs.org/minimatch
6183 verbose addNameRange registry:https://registry.npmjs.org/minimatch not in flight; fetching
6184 verbose get https://registry.npmjs.org/fs.realpath not expired, no request
6185 silly addNameRange number 2 { name: 'fs.realpath', range: '>=1.0.0 <2.0.0', hasData: true }
6186 silly addNameRange versions [ 'fs.realpath', [ '0.0.0', '1.0.0' ] ]
6187 silly pickManifestFromRegistryMetadata spec >=1.0.0 <2.0.0 tag latest versions [ '0.0.0', '1.0.0' ]
6188 silly addNamed fs.realpath@latest
6189 verbose addNamed "latest" is being treated as a dist-tag for fs.realpath
6190 info addNameTag [ 'fs.realpath', 'latest' ]
6191 silly mapToRegistry name fs.realpath
6192 silly mapToRegistry using default registry
6193 silly mapToRegistry registry https://registry.npmjs.org/
6194 silly mapToRegistry data Result {
6194 silly mapToRegistry raw: 'fs.realpath',
6194 silly mapToRegistry scope: null,
6194 silly mapToRegistry escapedName: 'fs.realpath',
6194 silly mapToRegistry name: 'fs.realpath',
6194 silly mapToRegistry rawSpec: '',
6194 silly mapToRegistry spec: 'latest',
6194 silly mapToRegistry type: 'tag' }
6195 silly mapToRegistry uri https://registry.npmjs.org/fs.realpath
6196 verbose addNameTag registry:https://registry.npmjs.org/fs.realpath already in flight; waiting
6197 silly addNameTag next cb for fs.realpath with tag latest
6198 silly addNamed [email protected]
6199 verbose addNamed "1.0.0" is a plain semver version for fs.realpath
6200 silly mapToRegistry name once
6201 silly mapToRegistry using default registry
6202 silly mapToRegistry registry https://registry.npmjs.org/
6203 silly mapToRegistry data Result {
6203 silly mapToRegistry raw: 'once',
6203 silly mapToRegistry scope: null,
6203 silly mapToRegistry escapedName: 'once',
6203 silly mapToRegistry name: 'once',
6203 silly mapToRegistry rawSpec: '',
6203 silly mapToRegistry spec: 'latest',
6203 silly mapToRegistry type: 'tag' }
6204 silly mapToRegistry uri https://registry.npmjs.org/once
6205 verbose addRemoteTarball https://registry.npmjs.org/once/-/once-1.4.0.tgz not in flight; adding
6206 verbose addRemoteTarball [ 'https://registry.npmjs.org/once/-/once-1.4.0.tgz',
6206 verbose addRemoteTarball '583b1aa775961d4b113ac17d9c50baef9dd76bd1' ]
6207 silly mapToRegistry name fs.realpath
6208 silly mapToRegistry using default registry
6209 silly mapToRegistry registry https://registry.npmjs.org/
6210 silly mapToRegistry data Result {
6210 silly mapToRegistry raw: 'fs.realpath',
6210 silly mapToRegistry scope: null,
6210 silly mapToRegistry escapedName: 'fs.realpath',
6210 silly mapToRegistry name: 'fs.realpath',
6210 silly mapToRegistry rawSpec: '',
6210 silly mapToRegistry spec: 'latest',
6210 silly mapToRegistry type: 'tag' }
6211 silly mapToRegistry uri https://registry.npmjs.org/fs.realpath
6212 verbose addRemoteTarball https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz not in flight; adding
6213 verbose addRemoteTarball [ 'https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz',
6213 verbose addRemoteTarball '1504ad2523158caa40db4a2787cb01411994ea4f' ]
6214 verbose get https://registry.npmjs.org/minimatch not expired, no request
6215 silly addNameRange number 2 { name: 'minimatch', range: '>=3.0.2 <4.0.0', hasData: true }
6216 silly addNameRange versions [ 'minimatch',
6216 silly addNameRange [ '0.0.1',
6216 silly addNameRange '0.0.2',
6216 silly addNameRange '0.0.4',
6216 silly addNameRange '0.0.5',
6216 silly addNameRange '0.1.1',
6216 silly addNameRange '0.1.2',
6216 silly addNameRange '0.1.3',
6216 silly addNameRange '0.1.4',
6216 silly addNameRange '0.1.5',
6216 silly addNameRange '0.2.0',
6216 silly addNameRange '0.2.2',
6216 silly addNameRange '0.2.3',
6216 silly addNameRange '0.2.4',
6216 silly addNameRange '0.2.5',
6216 silly addNameRange '0.2.6',
6216 silly addNameRange '0.2.7',
6216 silly addNameRange '0.2.8',
6216 silly addNameRange '0.2.9',
6216 silly addNameRange '0.2.10',
6216 silly addNameRange '0.2.11',
6216 silly addNameRange '0.2.12',
6216 silly addNameRange '0.2.13',
6216 silly addNameRange '0.2.14',
6216 silly addNameRange '0.3.0',
6216 silly addNameRange '0.4.0',
6216 silly addNameRange '1.0.0',
6216 silly addNameRange '2.0.0',
6216 silly addNameRange '2.0.1',
6216 silly addNameRange '2.0.2',
6216 silly addNameRange '2.0.3',
6216 silly addNameRange '2.0.4',
6216 silly addNameRange '2.0.5',
6216 silly addNameRange '2.0.6',
6216 silly addNameRange '2.0.7',
6216 silly addNameRange '2.0.8',
6216 silly addNameRange '2.0.9',
6216 silly addNameRange '2.0.10',
6216 silly addNameRange '3.0.0',
6216 silly addNameRange '3.0.2',
6216 silly addNameRange '3.0.3' ] ]
6217 silly pickManifestFromRegistryMetadata spec >=3.0.2 <4.0.0 tag latest versions [ '0.0.1',
6217 silly pickManifestFromRegistryMetadata '0.0.2',
6217 silly pickManifestFromRegistryMetadata '0.0.4',
6217 silly pickManifestFromRegistryMetadata '0.0.5',
6217 silly pickManifestFromRegistryMetadata '0.1.1',
6217 silly pickManifestFromRegistryMetadata '0.1.2',
6217 silly pickManifestFromRegistryMetadata '0.1.3',
6217 silly pickManifestFromRegistryMetadata '0.1.4',
6217 silly pickManifestFromRegistryMetadata '0.1.5',
6217 silly pickManifestFromRegistryMetadata '0.2.0',
6217 silly pickManifestFromRegistryMetadata '0.2.2',
6217 silly pickManifestFromRegistryMetadata '0.2.3',
6217 silly pickManifestFromRegistryMetadata '0.2.4',
6217 silly pickManifestFromRegistryMetadata '0.2.5',
6217 silly pickManifestFromRegistryMetadata '0.2.6',
6217 silly pickManifestFromRegistryMetadata '0.2.7',
6217 silly pickManifestFromRegistryMetadata '0.2.8',
6217 silly pickManifestFromRegistryMetadata '0.2.9',
6217 silly pickManifestFromRegistryMetadata '0.2.10',
6217 silly pickManifestFromRegistryMetadata '0.2.11',
6217 silly pickManifestFromRegistryMetadata '0.2.12',
6217 silly pickManifestFromRegistryMetadata '0.2.13',
6217 silly pickManifestFromRegistryMetadata '0.2.14',
6217 silly pickManifestFromRegistryMetadata '0.3.0',
6217 silly pickManifestFromRegistryMetadata '0.4.0',
6217 silly pickManifestFromRegistryMetadata '1.0.0',
6217 silly pickManifestFromRegistryMetadata '2.0.0',
6217 silly pickManifestFromRegistryMetadata '2.0.1',
6217 silly pickManifestFromRegistryMetadata '2.0.2',
6217 silly pickManifestFromRegistryMetadata '2.0.3',
6217 silly pickManifestFromRegistryMetadata '2.0.4',
6217 silly pickManifestFromRegistryMetadata '2.0.5',
6217 silly pickManifestFromRegistryMetadata '2.0.6',
6217 silly pickManifestFromRegistryMetadata '2.0.7',
6217 silly pickManifestFromRegistryMetadata '2.0.8',
6217 silly pickManifestFromRegistryMetadata '2.0.9',
6217 silly pickManifestFromRegistryMetadata '2.0.10',
6217 silly pickManifestFromRegistryMetadata '3.0.0',
6217 silly pickManifestFromRegistryMetadata '3.0.2',
6217 silly pickManifestFromRegistryMetadata '3.0.3' ]
6218 silly addNamed minimatch@latest
6219 verbose addNamed "latest" is being treated as a dist-tag for minimatch
6220 info addNameTag [ 'minimatch', 'latest' ]
6221 silly mapToRegistry name minimatch
6222 silly mapToRegistry using default registry
6223 silly mapToRegistry registry https://registry.npmjs.org/
6224 silly mapToRegistry data Result {
6224 silly mapToRegistry raw: 'minimatch',
6224 silly mapToRegistry scope: null,
6224 silly mapToRegistry escapedName: 'minimatch',
6224 silly mapToRegistry name: 'minimatch',
6224 silly mapToRegistry rawSpec: '',
6224 silly mapToRegistry spec: 'latest',
6224 silly mapToRegistry type: 'tag' }
6225 silly mapToRegistry uri https://registry.npmjs.org/minimatch
6226 verbose addNameTag registry:https://registry.npmjs.org/minimatch already in flight; waiting
6227 silly addNameTag next cb for minimatch with tag latest
6228 silly addNamed [email protected]
6229 verbose addNamed "3.0.3" is a plain semver version for minimatch
6230 info retry fetch attempt 1 at 6:13:41 PM
6231 info attempt registry request try #1 at 6:13:41 PM
6232 http fetch GET https://registry.npmjs.org/once/-/once-1.4.0.tgz
6233 silly pickManifestFromRegistryMetadata spec >=1.0.0 <2.0.0 tag latest versions [ '1.0.0', '1.0.1' ]
6234 silly resolveWithNewModule [email protected] checking installable status
6235 silly cache add args [ 'path-is-absolute@^1.0.0', null ]
6236 verbose cache add spec path-is-absolute@^1.0.0
6237 silly cache add parsed spec Result {
6237 silly cache add raw: 'path-is-absolute@^1.0.0',
6237 silly cache add scope: null,
6237 silly cache add escapedName: 'path-is-absolute',
6237 silly cache add name: 'path-is-absolute',
6237 silly cache add rawSpec: '^1.0.0',
6237 silly cache add spec: '>=1.0.0 <2.0.0',
6237 silly cache add type: 'range' }
6238 silly addNamed path-is-absolute@>=1.0.0 <2.0.0
6239 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for path-is-absolute
6240 silly addNameRange { name: 'path-is-absolute',
6240 silly addNameRange range: '>=1.0.0 <2.0.0',
6240 silly addNameRange hasData: false }
6241 silly mapToRegistry name path-is-absolute
6242 silly mapToRegistry using default registry
6243 silly mapToRegistry registry https://registry.npmjs.org/
6244 silly mapToRegistry data Result {
6244 silly mapToRegistry raw: 'path-is-absolute',
6244 silly mapToRegistry scope: null,
6244 silly mapToRegistry escapedName: 'path-is-absolute',
6244 silly mapToRegistry name: 'path-is-absolute',
6244 silly mapToRegistry rawSpec: '',
6244 silly mapToRegistry spec: 'latest',
6244 silly mapToRegistry type: 'tag' }
6245 silly mapToRegistry uri https://registry.npmjs.org/path-is-absolute
6246 verbose addNameRange registry:https://registry.npmjs.org/path-is-absolute not in flight; fetching
6247 info retry fetch attempt 1 at 6:13:41 PM
6248 info attempt registry request try #1 at 6:13:41 PM
6249 http fetch GET https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz
6250 verbose get https://registry.npmjs.org/path-is-absolute not expired, no request
6251 silly addNameRange number 2 { name: 'path-is-absolute',
6251 silly addNameRange range: '>=1.0.0 <2.0.0',
6251 silly addNameRange hasData: true }
6252 silly addNameRange versions [ 'path-is-absolute', [ '1.0.0', '1.0.1' ] ]
6253 silly pickManifestFromRegistryMetadata spec >=1.0.0 <2.0.0 tag latest versions [ '1.0.0', '1.0.1' ]
6254 silly addNamed path-is-absolute@latest
6255 verbose addNamed "latest" is being treated as a dist-tag for path-is-absolute
6256 info addNameTag [ 'path-is-absolute', 'latest' ]
6257 silly mapToRegistry name path-is-absolute
6258 silly mapToRegistry using default registry
6259 silly mapToRegistry registry https://registry.npmjs.org/
6260 silly mapToRegistry data Result {
6260 silly mapToRegistry raw: 'path-is-absolute',
6260 silly mapToRegistry scope: null,
6260 silly mapToRegistry escapedName: 'path-is-absolute',
6260 silly mapToRegistry name: 'path-is-absolute',
6260 silly mapToRegistry rawSpec: '',
6260 silly mapToRegistry spec: 'latest',
6260 silly mapToRegistry type: 'tag' }
6261 silly mapToRegistry uri https://registry.npmjs.org/path-is-absolute
6262 verbose addNameTag registry:https://registry.npmjs.org/path-is-absolute already in flight; waiting
6263 silly addNameTag next cb for path-is-absolute with tag latest
6264 silly addNamed [email protected]
6265 verbose addNamed "1.0.1" is a plain semver version for path-is-absolute
6266 http fetch 200 https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz
6267 silly cache afterAdd [email protected]
6268 verbose afterAdd /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm/minimatch/3.0.3/package/package.json not in flight; writing
6269 verbose correctMkdir /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm correctMkdir not in flight; initializing
6270 silly fetchAndShaCheck shasum 49bd6331d7d02d0c09bc910a1075ba8165b56df9
6271 silly cache afterAdd [email protected]
6272 verbose afterAdd /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm/path-is-absolute/1.0.1/package/package.json not in flight; writing
6273 verbose correctMkdir /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm correctMkdir not in flight; initializing
6274 verbose addTmpTarball /var/folders/fh/27z8np7j5kz3bdqp7yj0qhkw0000gn/T/npm-98607-83082364/registry.npmjs.org/inflight/-/inflight-1.0.6.tgz not in flight; adding
6275 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
6276 verbose correctMkdir /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm correctMkdir not in flight; initializing
6277 verbose afterAdd /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm/minimatch/3.0.3/package/package.json written
6278 verbose afterAdd /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm/path-is-absolute/1.0.1/package/package.json written
6279 silly cache afterAdd [email protected]
6280 verbose afterAdd /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm/inflight/1.0.6/package/package.json not in flight; writing
6281 verbose correctMkdir /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm correctMkdir not in flight; initializing
6282 verbose afterAdd /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm/inflight/1.0.6/package/package.json written
6283 http fetch 200 https://registry.npmjs.org/once/-/once-1.4.0.tgz
6284 silly fetchAndShaCheck shasum 583b1aa775961d4b113ac17d9c50baef9dd76bd1
6285 verbose addTmpTarball /var/folders/fh/27z8np7j5kz3bdqp7yj0qhkw0000gn/T/npm-98607-83082364/registry.npmjs.org/once/-/once-1.4.0.tgz not in flight; adding
6286 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
6287 verbose correctMkdir /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm correctMkdir not in flight; initializing
6288 http fetch 200 https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz
6289 silly fetchAndShaCheck shasum 1504ad2523158caa40db4a2787cb01411994ea4f
6290 verbose addTmpTarball /var/folders/fh/27z8np7j5kz3bdqp7yj0qhkw0000gn/T/npm-98607-83082364/registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz not in flight; adding
6291 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
6292 verbose correctMkdir /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm correctMkdir not in flight; initializing
6293 silly cache afterAdd [email protected]
6294 verbose afterAdd /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm/once/1.4.0/package/package.json not in flight; writing
6295 verbose correctMkdir /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm correctMkdir not in flight; initializing
6296 verbose afterAdd /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm/once/1.4.0/package/package.json written
6297 silly cache afterAdd [email protected]
6298 verbose afterAdd /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm/fs.realpath/1.0.0/package/package.json not in flight; writing
6299 verbose correctMkdir /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm correctMkdir not in flight; initializing
6300 verbose afterAdd /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm/fs.realpath/1.0.0/package/package.json written
6301 silly fetchNamedPackageData wrappy
6302 silly mapToRegistry name wrappy
6303 silly mapToRegistry using default registry
6304 silly mapToRegistry registry https://registry.npmjs.org/
6305 silly mapToRegistry data Result {
6305 silly mapToRegistry raw: 'wrappy',
6305 silly mapToRegistry scope: null,
6305 silly mapToRegistry escapedName: 'wrappy',
6305 silly mapToRegistry name: 'wrappy',
6305 silly mapToRegistry rawSpec: '',
6305 silly mapToRegistry spec: 'latest',
6305 silly mapToRegistry type: 'tag' }
6306 silly mapToRegistry uri https://registry.npmjs.org/wrappy
6307 verbose request uri https://registry.npmjs.org/wrappy
6308 verbose request no auth needed
6309 info attempt registry request try #1 at 6:13:42 PM
6310 http request GET https://registry.npmjs.org/wrappy
6311 http 200 https://registry.npmjs.org/wrappy
6312 verbose headers { server: 'nginx/1.10.1',
6312 verbose headers 'content-type': 'application/json',
6312 verbose headers 'last-modified': 'Tue, 01 Nov 2016 18:48:39 GMT',
6312 verbose headers etag: 'W/"5818e387-11a5"',
6312 verbose headers 'content-encoding': 'gzip',
6312 verbose headers 'cache-control': 'max-age=300',
6312 verbose headers 'content-length': '1375',
6312 verbose headers 'accept-ranges': 'bytes',
6312 verbose headers date: 'Sun, 26 Feb 2017 01:13:42 GMT',
6312 verbose headers via: '1.1 varnish',
6312 verbose headers age: '243',
6312 verbose headers connection: 'keep-alive',
6312 verbose headers 'x-served-by': 'cache-den6026-DEN',
6312 verbose headers 'x-cache': 'HIT',
6312 verbose headers 'x-cache-hits': '2',
6312 verbose headers 'x-timer': 'S1488071622.006041,VS0,VE0',
6312 verbose headers vary: 'Accept-Encoding' }
6313 silly get cb [ 200,
6313 silly get { server: 'nginx/1.10.1',
6313 silly get 'content-type': 'application/json',
6313 silly get 'last-modified': 'Tue, 01 Nov 2016 18:48:39 GMT',
6313 silly get etag: 'W/"5818e387-11a5"',
6313 silly get 'content-encoding': 'gzip',
6313 silly get 'cache-control': 'max-age=300',
6313 silly get 'content-length': '1375',
6313 silly get 'accept-ranges': 'bytes',
6313 silly get date: 'Sun, 26 Feb 2017 01:13:42 GMT',
6313 silly get via: '1.1 varnish',
6313 silly get age: '243',
6313 silly get connection: 'keep-alive',
6313 silly get 'x-served-by': 'cache-den6026-DEN',
6313 silly get 'x-cache': 'HIT',
6313 silly get 'x-cache-hits': '2',
6313 silly get 'x-timer': 'S1488071622.006041,VS0,VE0',
6313 silly get vary: 'Accept-Encoding' } ]
6314 verbose get saving wrappy to /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm/registry.npmjs.org/wrappy/.cache.json
6315 verbose correctMkdir /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm correctMkdir not in flight; initializing
6316 silly pickManifestFromRegistryMetadata spec >=1.0.0 <2.0.0 tag latest versions [ '1.0.0', '1.0.1', '1.0.2' ]
6317 silly resolveWithNewModule [email protected] checking installable status
6318 silly cache add args [ 'wrappy@1', null ]
6319 verbose cache add spec wrappy@1
6320 silly cache add parsed spec Result {
6320 silly cache add raw: 'wrappy@1',
6320 silly cache add scope: null,
6320 silly cache add escapedName: 'wrappy',
6320 silly cache add name: 'wrappy',
6320 silly cache add rawSpec: '1',
6320 silly cache add spec: '>=1.0.0 <2.0.0',
6320 silly cache add type: 'range' }
6321 silly addNamed wrappy@>=1.0.0 <2.0.0
6322 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for wrappy
6323 silly addNameRange { name: 'wrappy', range: '>=1.0.0 <2.0.0', hasData: false }
6324 silly mapToRegistry name wrappy
6325 silly mapToRegistry using default registry
6326 silly mapToRegistry registry https://registry.npmjs.org/
6327 silly mapToRegistry data Result {
6327 silly mapToRegistry raw: 'wrappy',
6327 silly mapToRegistry scope: null,
6327 silly mapToRegistry escapedName: 'wrappy',
6327 silly mapToRegistry name: 'wrappy',
6327 silly mapToRegistry rawSpec: '',
6327 silly mapToRegistry spec: 'latest',
6327 silly mapToRegistry type: 'tag' }
6328 silly mapToRegistry uri https://registry.npmjs.org/wrappy
6329 verbose addNameRange registry:https://registry.npmjs.org/wrappy not in flight; fetching
6330 verbose get https://registry.npmjs.org/wrappy not expired, no request
6331 silly addNameRange number 2 { name: 'wrappy', range: '>=1.0.0 <2.0.0', hasData: true }
6332 silly addNameRange versions [ 'wrappy', [ '1.0.0', '1.0.1', '1.0.2' ] ]
6333 silly pickManifestFromRegistryMetadata spec >=1.0.0 <2.0.0 tag latest versions [ '1.0.0', '1.0.1', '1.0.2' ]
6334 silly addNamed wrappy@latest
6335 verbose addNamed "latest" is being treated as a dist-tag for wrappy
6336 info addNameTag [ 'wrappy', 'latest' ]
6337 silly mapToRegistry name wrappy
6338 silly mapToRegistry using default registry
6339 silly mapToRegistry registry https://registry.npmjs.org/
6340 silly mapToRegistry data Result {
6340 silly mapToRegistry raw: 'wrappy',
6340 silly mapToRegistry scope: null,
6340 silly mapToRegistry escapedName: 'wrappy',
6340 silly mapToRegistry name: 'wrappy',
6340 silly mapToRegistry rawSpec: '',
6340 silly mapToRegistry spec: 'latest',
6340 silly mapToRegistry type: 'tag' }
6341 silly mapToRegistry uri https://registry.npmjs.org/wrappy
6342 verbose addNameTag registry:https://registry.npmjs.org/wrappy already in flight; waiting
6343 silly addNameTag next cb for wrappy with tag latest
6344 silly addNamed [email protected]
6345 verbose addNamed "1.0.2" is a plain semver version for wrappy
6346 silly mapToRegistry name wrappy
6347 silly mapToRegistry using default registry
6348 silly mapToRegistry registry https://registry.npmjs.org/
6349 silly mapToRegistry data Result {
6349 silly mapToRegistry raw: 'wrappy',
6349 silly mapToRegistry scope: null,
6349 silly mapToRegistry escapedName: 'wrappy',
6349 silly mapToRegistry name: 'wrappy',
6349 silly mapToRegistry rawSpec: '',
6349 silly mapToRegistry spec: 'latest',
6349 silly mapToRegistry type: 'tag' }
6350 silly mapToRegistry uri https://registry.npmjs.org/wrappy
6351 verbose addRemoteTarball https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz not in flight; adding
6352 verbose addRemoteTarball [ 'https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz',
6352 verbose addRemoteTarball 'b5243d8f3ec1aa35f1364605bc0d1036e30ab69f' ]
6353 info retry fetch attempt 1 at 6:13:42 PM
6354 info attempt registry request try #1 at 6:13:42 PM
6355 http fetch GET https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz
6356 http fetch 200 https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz
6357 silly fetchAndShaCheck shasum b5243d8f3ec1aa35f1364605bc0d1036e30ab69f
6358 verbose addTmpTarball /var/folders/fh/27z8np7j5kz3bdqp7yj0qhkw0000gn/T/npm-98607-83082364/registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz not in flight; adding
6359 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
6360 verbose correctMkdir /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm correctMkdir not in flight; initializing
6361 silly cache afterAdd [email protected]
6362 verbose afterAdd /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm/wrappy/1.0.2/package/package.json not in flight; writing
6363 verbose correctMkdir /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm correctMkdir not in flight; initializing
6364 verbose afterAdd /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm/wrappy/1.0.2/package/package.json written
6365 silly fetchNamedPackageData brace-expansion
6366 silly mapToRegistry name brace-expansion
6367 silly mapToRegistry using default registry
6368 silly mapToRegistry registry https://registry.npmjs.org/
6369 silly mapToRegistry data Result {
6369 silly mapToRegistry raw: 'brace-expansion',
6369 silly mapToRegistry scope: null,
6369 silly mapToRegistry escapedName: 'brace-expansion',
6369 silly mapToRegistry name: 'brace-expansion',
6369 silly mapToRegistry rawSpec: '',
6369 silly mapToRegistry spec: 'latest',
6369 silly mapToRegistry type: 'tag' }
6370 silly mapToRegistry uri https://registry.npmjs.org/brace-expansion
6371 verbose request uri https://registry.npmjs.org/brace-expansion
6372 verbose request no auth needed
6373 info attempt registry request try #1 at 6:13:42 PM
6374 http request GET https://registry.npmjs.org/brace-expansion
6375 http 200 https://registry.npmjs.org/brace-expansion
6376 verbose headers { server: 'nginx/1.10.1',
6376 verbose headers 'content-type': 'application/json',
6376 verbose headers 'last-modified': 'Sun, 05 Feb 2017 09:03:40 GMT',
6376 verbose headers etag: 'W/"5896ea6c-4bca"',
6376 verbose headers 'content-encoding': 'gzip',
6376 verbose headers 'cache-control': 'max-age=300',
6376 verbose headers 'content-length': '3724',
6376 verbose headers 'accept-ranges': 'bytes',
6376 verbose headers date: 'Sun, 26 Feb 2017 01:13:42 GMT',
6376 verbose headers via: '1.1 varnish',
6376 verbose headers age: '156',
6376 verbose headers connection: 'keep-alive',
6376 verbose headers 'x-served-by': 'cache-den6020-DEN',
6376 verbose headers 'x-cache': 'HIT',
6376 verbose headers 'x-cache-hits': '6',
6376 verbose headers 'x-timer': 'S1488071622.049621,VS0,VE0',
6376 verbose headers vary: 'Accept-Encoding' }
6377 silly get cb [ 200,
6377 silly get { server: 'nginx/1.10.1',
6377 silly get 'content-type': 'application/json',
6377 silly get 'last-modified': 'Sun, 05 Feb 2017 09:03:40 GMT',
6377 silly get etag: 'W/"5896ea6c-4bca"',
6377 silly get 'content-encoding': 'gzip',
6377 silly get 'cache-control': 'max-age=300',
6377 silly get 'content-length': '3724',
6377 silly get 'accept-ranges': 'bytes',
6377 silly get date: 'Sun, 26 Feb 2017 01:13:42 GMT',
6377 silly get via: '1.1 varnish',
6377 silly get age: '156',
6377 silly get connection: 'keep-alive',
6377 silly get 'x-served-by': 'cache-den6020-DEN',
6377 silly get 'x-cache': 'HIT',
6377 silly get 'x-cache-hits': '6',
6377 silly get 'x-timer': 'S1488071622.049621,VS0,VE0',
6377 silly get vary: 'Accept-Encoding' } ]
6378 verbose get saving brace-expansion to /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm/registry.npmjs.org/brace-expansion/.cache.json
6379 verbose correctMkdir /Users/brentn/.meteor/packages/meteor-tool/.1.4.3_1.ju6dmy os.osx.x86_64 web.browser web.cordova/mt-os.osx.x86_64/dev_bundle/.npm correctMkdir not in flight; initializing
6380 silly pickManifestFromRegistryMetadata spec >=1.0.0 <2.0.0 tag latest versions [ '0.0.0',
6380 silly pickManifestFromRegistryMetadata '1.0.0',
6380 silly pickManifestFromRegistryMetadata '1.0.1',
6380 silly pickManifestFromRegistryMetadata '1.1.0',
6380 silly pickManifestFromRegistryMetadata '1.1.1',
6380 silly pickManifestFromRegistryMetadata '1.1.2',
6380 silly pickManifestFromRegistryMetadata '1.1.3',
6380 silly pickManifestFromRegistryMetadata '1.1.4',
6380 silly pickManifestFromRegistryMetadata '1.1.5',
6380 silly pickManifestFromRegistryMetadata '1.1.6' ]
6381 silly resolveWithNewModule [email protected] checking installable status
6382 silly cache add args [ 'brace-expansion@^1.0.0', null ]
6383 verbose cache add spec brace-expansion@^1.0.0
6384 silly cache add parsed spec Result {
6384 silly cache add raw: 'brace-expansion@^1.0.0',
6384 silly cache add scope: null,
6384 silly cache add escapedName: 'brace-expansion',
6384 silly cache add name: 'brace-expansion',
6384 silly cache add rawSpec: '^1.0.0',
6384 silly cache add spec: '>=1.0.0 <2.0.0',
6384 silly cache add type: 'range' }
6385 silly addNamed brace-expansion@>=1.0.0 <2.0.0
6386 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for brace-expansion
6387 silly addNameRange { name: 'brace-expansion',
6387 silly addNameRange range: '>=1.0.0 <2.0.0',
6387 silly addNameRange hasData: false }
6388 silly mapToRegistry name brace-expansion
6389 silly mapToRegistry using default registry
6390 silly mapToRegistry registry https://registry.npmjs.org/
6391 silly mapToRegistry data Result {
6391 silly mapToRegistry raw: 'brace-expansion',
6391 silly mapToRegistry scope: null,
6391 silly mapToRegistry escapedName: 'brace-expansion',
6391 silly mapToRegistry name: 'brace-expansion',
6391 silly mapToRegistry rawSpec: '',
6391 silly mapToRegistry spec: 'latest',
6391 silly mapToRegistry type: 'tag' }
6392 silly mapToRegistry uri https://registry.npmjs.org/brace-expansion
6393 verbose addNameRange registry:https://registry.npmjs.org/brace-expansion not in flight; fetching
6394 verbose get https://registry.npmjs.org/brace-expansion not expired, no request
6395 silly addNameRange number 2 { name: 'brace-expansion',
6395 silly addNameRange range: '>=1.0.0 <2.0.0',
6395 silly addNameRange hasData: true }
6396 silly addNameRange versions [ 'brace-expansion',
6396 silly addNameRange [ '0.0.0',
6396 silly addNameRange '1.0.0',
6396 silly addNameRange '1.0.1',
6396 silly addNameRange '1.1.0',
6396 silly addNameRange '1.1.1',
6396 silly addNameRange '1.1.2',
6396 silly addNameRange '1.1.3',
6396 silly addNameRange '1.1.4',
6396 silly addNameRange '1.1.5',
6396 silly addNameRange '1.1.6' ] ]
6397 silly pickManifestFromRegistryMetadata spec >=1.0.0 <2.0.0 tag latest versions [ '0.0.0',
6397 silly pickManifestFromRegistryMetadata '1.0.0',
6397 silly pickManifestFromRegistryMetadata '1.0.1',
6397 silly pickManifestFromRegistryMetadata '1.1.0',
6397 silly pickManifestFromRegistryMetadata '1.1.1',
6397 silly pickManifestFromRegistryMetadata '1.1.2',
6397 silly pickManifestFromRegistryMetadata '1.1.3',