-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnpm-debug.log
15421 lines (15421 loc) · 870 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
2001 silly mapToRegistry using default registry
2002 silly mapToRegistry registry https://registry.npmjs.org/
2003 silly mapToRegistry data Result {
2003 silly mapToRegistry raw: 'validate-npm-package-license',
2003 silly mapToRegistry scope: null,
2003 silly mapToRegistry name: 'validate-npm-package-license',
2003 silly mapToRegistry rawSpec: '',
2003 silly mapToRegistry spec: 'latest',
2003 silly mapToRegistry type: 'tag' }
2004 silly mapToRegistry uri https://registry.npmjs.org/validate-npm-package-license
2005 verbose request uri https://registry.npmjs.org/is-builtin-module
2006 verbose request no auth needed
2007 info attempt registry request try #1 at 4:30:30 PM
2008 verbose etag "4L9T4QO9EO4P4UL9ULUBO6GCN"
2009 http request GET https://registry.npmjs.org/is-builtin-module
2010 verbose request uri https://registry.npmjs.org/hosted-git-info
2011 verbose request no auth needed
2012 info attempt registry request try #1 at 4:30:30 PM
2013 verbose etag "3RCMYKWX8AS3CMBRXU4EJXKCH"
2014 http request GET https://registry.npmjs.org/hosted-git-info
2015 verbose request uri https://registry.npmjs.org/validate-npm-package-license
2016 verbose request no auth needed
2017 info attempt registry request try #1 at 4:30:30 PM
2018 verbose etag "9VLHJ3BOPKJY6WSN9PAJ3SS4Y"
2019 http request GET https://registry.npmjs.org/validate-npm-package-license
2020 http 304 https://registry.npmjs.org/is-builtin-module
2021 verbose headers { date: 'Thu, 09 Jun 2016 20:30:30 GMT',
2021 verbose headers via: '1.1 varnish',
2021 verbose headers 'cache-control': 'max-age=300',
2021 verbose headers etag: '"4L9T4QO9EO4P4UL9ULUBO6GCN"',
2021 verbose headers age: '183',
2021 verbose headers connection: 'keep-alive',
2021 verbose headers 'x-served-by': 'cache-jfk1048-JFK',
2021 verbose headers 'x-cache': 'HIT',
2021 verbose headers 'x-cache-hits': '4',
2021 verbose headers 'x-timer': 'S1465504230.950535,VS0,VE0',
2021 verbose headers vary: 'Accept-Encoding' }
2022 silly get cb [ 304,
2022 silly get { date: 'Thu, 09 Jun 2016 20:30:30 GMT',
2022 silly get via: '1.1 varnish',
2022 silly get 'cache-control': 'max-age=300',
2022 silly get etag: '"4L9T4QO9EO4P4UL9ULUBO6GCN"',
2022 silly get age: '183',
2022 silly get connection: 'keep-alive',
2022 silly get 'x-served-by': 'cache-jfk1048-JFK',
2022 silly get 'x-cache': 'HIT',
2022 silly get 'x-cache-hits': '4',
2022 silly get 'x-timer': 'S1465504230.950535,VS0,VE0',
2022 silly get vary: 'Accept-Encoding' } ]
2023 verbose etag https://registry.npmjs.org/is-builtin-module from cache
2024 verbose get saving is-builtin-module to /Users/warman/.npm/registry.npmjs.org/is-builtin-module/.cache.json
2025 verbose correctMkdir /Users/warman/.npm correctMkdir not in flight; initializing
2026 silly resolveWithNewModule is-builtin-module@1.0.0 checking installable status
2027 silly cache add args [ 'is-builtin-module@^1.0.0', null ]
2028 verbose cache add spec is-builtin-module@^1.0.0
2029 silly cache add parsed spec Result {
2029 silly cache add raw: 'is-builtin-module@^1.0.0',
2029 silly cache add scope: null,
2029 silly cache add name: 'is-builtin-module',
2029 silly cache add rawSpec: '^1.0.0',
2029 silly cache add spec: '>=1.0.0 <2.0.0',
2029 silly cache add type: 'range' }
2030 silly addNamed is-builtin-module@>=1.0.0 <2.0.0
2031 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for is-builtin-module
2032 silly addNameRange { name: 'is-builtin-module',
2032 silly addNameRange range: '>=1.0.0 <2.0.0',
2032 silly addNameRange hasData: false }
2033 silly mapToRegistry name is-builtin-module
2034 silly mapToRegistry using default registry
2035 silly mapToRegistry registry https://registry.npmjs.org/
2036 silly mapToRegistry data Result {
2036 silly mapToRegistry raw: 'is-builtin-module',
2036 silly mapToRegistry scope: null,
2036 silly mapToRegistry name: 'is-builtin-module',
2036 silly mapToRegistry rawSpec: '',
2036 silly mapToRegistry spec: 'latest',
2036 silly mapToRegistry type: 'tag' }
2037 silly mapToRegistry uri https://registry.npmjs.org/is-builtin-module
2038 verbose addNameRange registry:https://registry.npmjs.org/is-builtin-module not in flight; fetching
2039 verbose get https://registry.npmjs.org/is-builtin-module not expired, no request
2040 silly addNameRange number 2 { name: 'is-builtin-module',
2040 silly addNameRange range: '>=1.0.0 <2.0.0',
2040 silly addNameRange hasData: true }
2041 silly addNameRange versions [ 'is-builtin-module', [ '1.0.0' ] ]
2042 silly addNamed is-builtin-module@1.0.0
2043 verbose addNamed "1.0.0" is a plain semver version for is-builtin-module
2044 http 304 https://registry.npmjs.org/hosted-git-info
2045 verbose headers { date: 'Thu, 09 Jun 2016 20:30:30 GMT',
2045 verbose headers via: '1.1 varnish',
2045 verbose headers 'cache-control': 'max-age=300',
2045 verbose headers etag: '"3RCMYKWX8AS3CMBRXU4EJXKCH"',
2045 verbose headers age: '199',
2045 verbose headers connection: 'keep-alive',
2045 verbose headers 'x-served-by': 'cache-jfk1029-JFK',
2045 verbose headers 'x-cache': 'HIT',
2045 verbose headers 'x-cache-hits': '8',
2045 verbose headers 'x-timer': 'S1465504230.955138,VS0,VE0',
2045 verbose headers vary: 'Accept-Encoding' }
2046 silly get cb [ 304,
2046 silly get { date: 'Thu, 09 Jun 2016 20:30:30 GMT',
2046 silly get via: '1.1 varnish',
2046 silly get 'cache-control': 'max-age=300',
2046 silly get etag: '"3RCMYKWX8AS3CMBRXU4EJXKCH"',
2046 silly get age: '199',
2046 silly get connection: 'keep-alive',
2046 silly get 'x-served-by': 'cache-jfk1029-JFK',
2046 silly get 'x-cache': 'HIT',
2046 silly get 'x-cache-hits': '8',
2046 silly get 'x-timer': 'S1465504230.955138,VS0,VE0',
2046 silly get vary: 'Accept-Encoding' } ]
2047 verbose etag https://registry.npmjs.org/hosted-git-info from cache
2048 verbose get saving hosted-git-info to /Users/warman/.npm/registry.npmjs.org/hosted-git-info/.cache.json
2049 verbose correctMkdir /Users/warman/.npm correctMkdir not in flight; initializing
2050 http 304 https://registry.npmjs.org/validate-npm-package-license
2051 verbose headers { date: 'Thu, 09 Jun 2016 20:30:30 GMT',
2051 verbose headers via: '1.1 varnish',
2051 verbose headers 'cache-control': 'max-age=300',
2051 verbose headers etag: '"9VLHJ3BOPKJY6WSN9PAJ3SS4Y"',
2051 verbose headers age: '60',
2051 verbose headers connection: 'keep-alive',
2051 verbose headers 'x-served-by': 'cache-jfk1044-JFK',
2051 verbose headers 'x-cache': 'HIT',
2051 verbose headers 'x-cache-hits': '2',
2051 verbose headers 'x-timer': 'S1465504230.954728,VS0,VE0',
2051 verbose headers vary: 'Accept-Encoding' }
2052 silly get cb [ 304,
2052 silly get { date: 'Thu, 09 Jun 2016 20:30:30 GMT',
2052 silly get via: '1.1 varnish',
2052 silly get 'cache-control': 'max-age=300',
2052 silly get etag: '"9VLHJ3BOPKJY6WSN9PAJ3SS4Y"',
2052 silly get age: '60',
2052 silly get connection: 'keep-alive',
2052 silly get 'x-served-by': 'cache-jfk1044-JFK',
2052 silly get 'x-cache': 'HIT',
2052 silly get 'x-cache-hits': '2',
2052 silly get 'x-timer': 'S1465504230.954728,VS0,VE0',
2052 silly get vary: 'Accept-Encoding' } ]
2053 verbose etag https://registry.npmjs.org/validate-npm-package-license from cache
2054 verbose get saving validate-npm-package-license to /Users/warman/.npm/registry.npmjs.org/validate-npm-package-license/.cache.json
2055 verbose correctMkdir /Users/warman/.npm correctMkdir not in flight; initializing
2056 silly cache afterAdd is-builtin-module@1.0.0
2057 verbose afterAdd /Users/warman/.npm/is-builtin-module/1.0.0/package/package.json not in flight; writing
2058 verbose correctMkdir /Users/warman/.npm correctMkdir not in flight; initializing
2059 silly resolveWithNewModule hosted-git-info@2.1.5 checking installable status
2060 silly cache add args [ 'hosted-git-info@^2.1.4', null ]
2061 verbose cache add spec hosted-git-info@^2.1.4
2062 silly cache add parsed spec Result {
2062 silly cache add raw: 'hosted-git-info@^2.1.4',
2062 silly cache add scope: null,
2062 silly cache add name: 'hosted-git-info',
2062 silly cache add rawSpec: '^2.1.4',
2062 silly cache add spec: '>=2.1.4 <3.0.0',
2062 silly cache add type: 'range' }
2063 silly addNamed hosted-git-info@>=2.1.4 <3.0.0
2064 verbose addNamed ">=2.1.4 <3.0.0" is a valid semver range for hosted-git-info
2065 silly addNameRange { name: 'hosted-git-info',
2065 silly addNameRange range: '>=2.1.4 <3.0.0',
2065 silly addNameRange hasData: false }
2066 silly mapToRegistry name hosted-git-info
2067 silly mapToRegistry using default registry
2068 silly mapToRegistry registry https://registry.npmjs.org/
2069 silly mapToRegistry data Result {
2069 silly mapToRegistry raw: 'hosted-git-info',
2069 silly mapToRegistry scope: null,
2069 silly mapToRegistry name: 'hosted-git-info',
2069 silly mapToRegistry rawSpec: '',
2069 silly mapToRegistry spec: 'latest',
2069 silly mapToRegistry type: 'tag' }
2070 silly mapToRegistry uri https://registry.npmjs.org/hosted-git-info
2071 verbose addNameRange registry:https://registry.npmjs.org/hosted-git-info not in flight; fetching
2072 silly resolveWithNewModule validate-npm-package-license@3.0.1 checking installable status
2073 silly cache add args [ 'validate-npm-package-license@^3.0.1', null ]
2074 verbose cache add spec validate-npm-package-license@^3.0.1
2075 silly cache add parsed spec Result {
2075 silly cache add raw: 'validate-npm-package-license@^3.0.1',
2075 silly cache add scope: null,
2075 silly cache add name: 'validate-npm-package-license',
2075 silly cache add rawSpec: '^3.0.1',
2075 silly cache add spec: '>=3.0.1 <4.0.0',
2075 silly cache add type: 'range' }
2076 silly addNamed validate-npm-package-license@>=3.0.1 <4.0.0
2077 verbose addNamed ">=3.0.1 <4.0.0" is a valid semver range for validate-npm-package-license
2078 silly addNameRange { name: 'validate-npm-package-license',
2078 silly addNameRange range: '>=3.0.1 <4.0.0',
2078 silly addNameRange hasData: false }
2079 silly mapToRegistry name validate-npm-package-license
2080 silly mapToRegistry using default registry
2081 silly mapToRegistry registry https://registry.npmjs.org/
2082 silly mapToRegistry data Result {
2082 silly mapToRegistry raw: 'validate-npm-package-license',
2082 silly mapToRegistry scope: null,
2082 silly mapToRegistry name: 'validate-npm-package-license',
2082 silly mapToRegistry rawSpec: '',
2082 silly mapToRegistry spec: 'latest',
2082 silly mapToRegistry type: 'tag' }
2083 silly mapToRegistry uri https://registry.npmjs.org/validate-npm-package-license
2084 verbose addNameRange registry:https://registry.npmjs.org/validate-npm-package-license not in flight; fetching
2085 verbose get https://registry.npmjs.org/hosted-git-info not expired, no request
2086 silly addNameRange number 2 { name: 'hosted-git-info',
2086 silly addNameRange range: '>=2.1.4 <3.0.0',
2086 silly addNameRange hasData: true }
2087 silly addNameRange versions [ 'hosted-git-info',
2087 silly addNameRange [ '1.0.0',
2087 silly addNameRange '1.1.0',
2087 silly addNameRange '1.2.0',
2087 silly addNameRange '1.3.0',
2087 silly addNameRange '1.4.0',
2087 silly addNameRange '1.5.0',
2087 silly addNameRange '1.5.1',
2087 silly addNameRange '1.5.2',
2087 silly addNameRange '1.5.3',
2087 silly addNameRange '1.6.0',
2087 silly addNameRange '2.0.0',
2087 silly addNameRange '2.0.1',
2087 silly addNameRange '2.0.2',
2087 silly addNameRange '2.0.3',
2087 silly addNameRange '2.1.0',
2087 silly addNameRange '2.1.1',
2087 silly addNameRange '2.1.2',
2087 silly addNameRange '2.1.3',
2087 silly addNameRange '2.1.4',
2087 silly addNameRange '2.1.5' ] ]
2088 silly addNamed hosted-git-info@2.1.5
2089 verbose addNamed "2.1.5" is a plain semver version for hosted-git-info
2090 verbose get https://registry.npmjs.org/validate-npm-package-license not expired, no request
2091 silly addNameRange number 2 { name: 'validate-npm-package-license',
2091 silly addNameRange range: '>=3.0.1 <4.0.0',
2091 silly addNameRange hasData: true }
2092 silly addNameRange versions [ 'validate-npm-package-license',
2092 silly addNameRange [ '1.0.0-prerelease-1',
2092 silly addNameRange '1.0.0-prerelease-2',
2092 silly addNameRange '1.0.0-prerelease-3',
2092 silly addNameRange '1.0.0',
2092 silly addNameRange '2.0.0',
2092 silly addNameRange '3.0.0',
2092 silly addNameRange '3.0.1' ] ]
2093 silly addNamed validate-npm-package-license@3.0.1
2094 verbose addNamed "3.0.1" is a plain semver version for validate-npm-package-license
2095 verbose afterAdd /Users/warman/.npm/is-builtin-module/1.0.0/package/package.json written
2096 silly cache afterAdd hosted-git-info@2.1.5
2097 verbose afterAdd /Users/warman/.npm/hosted-git-info/2.1.5/package/package.json not in flight; writing
2098 verbose correctMkdir /Users/warman/.npm correctMkdir not in flight; initializing
2099 silly cache afterAdd validate-npm-package-license@3.0.1
2100 verbose afterAdd /Users/warman/.npm/validate-npm-package-license/3.0.1/package/package.json not in flight; writing
2101 verbose correctMkdir /Users/warman/.npm correctMkdir not in flight; initializing
2102 verbose afterAdd /Users/warman/.npm/hosted-git-info/2.1.5/package/package.json written
2103 verbose afterAdd /Users/warman/.npm/validate-npm-package-license/3.0.1/package/package.json written
2104 silly fetchNamedPackageData builtin-modules
2105 silly mapToRegistry name builtin-modules
2106 silly mapToRegistry using default registry
2107 silly mapToRegistry registry https://registry.npmjs.org/
2108 silly mapToRegistry data Result {
2108 silly mapToRegistry raw: 'builtin-modules',
2108 silly mapToRegistry scope: null,
2108 silly mapToRegistry name: 'builtin-modules',
2108 silly mapToRegistry rawSpec: '',
2108 silly mapToRegistry spec: 'latest',
2108 silly mapToRegistry type: 'tag' }
2109 silly mapToRegistry uri https://registry.npmjs.org/builtin-modules
2110 verbose request uri https://registry.npmjs.org/builtin-modules
2111 verbose request no auth needed
2112 info attempt registry request try #1 at 4:30:30 PM
2113 verbose etag "1Z7EXO0S8DMVUFV8ME1QOC17J"
2114 http request GET https://registry.npmjs.org/builtin-modules
2115 http 200 https://registry.npmjs.org/builtin-modules
2116 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
2116 verbose headers etag: '"6MDNI0WW6BBIKU3N5LDGYUJJO"',
2116 verbose headers 'content-type': 'application/json',
2116 verbose headers 'content-encoding': 'gzip',
2116 verbose headers 'cache-control': 'max-age=300',
2116 verbose headers 'content-length': '1640',
2116 verbose headers 'accept-ranges': 'bytes',
2116 verbose headers date: 'Thu, 09 Jun 2016 20:30:31 GMT',
2116 verbose headers via: '1.1 varnish',
2116 verbose headers age: '204',
2116 verbose headers connection: 'keep-alive',
2116 verbose headers 'x-served-by': 'cache-jfk1030-JFK',
2116 verbose headers 'x-cache': 'HIT',
2116 verbose headers 'x-cache-hits': '15',
2116 verbose headers 'x-timer': 'S1465504231.002189,VS0,VE0',
2116 verbose headers vary: 'Accept-Encoding' }
2117 silly get cb [ 200,
2117 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
2117 silly get etag: '"6MDNI0WW6BBIKU3N5LDGYUJJO"',
2117 silly get 'content-type': 'application/json',
2117 silly get 'content-encoding': 'gzip',
2117 silly get 'cache-control': 'max-age=300',
2117 silly get 'content-length': '1640',
2117 silly get 'accept-ranges': 'bytes',
2117 silly get date: 'Thu, 09 Jun 2016 20:30:31 GMT',
2117 silly get via: '1.1 varnish',
2117 silly get age: '204',
2117 silly get connection: 'keep-alive',
2117 silly get 'x-served-by': 'cache-jfk1030-JFK',
2117 silly get 'x-cache': 'HIT',
2117 silly get 'x-cache-hits': '15',
2117 silly get 'x-timer': 'S1465504231.002189,VS0,VE0',
2117 silly get vary: 'Accept-Encoding' } ]
2118 verbose get saving builtin-modules to /Users/warman/.npm/registry.npmjs.org/builtin-modules/.cache.json
2119 verbose correctMkdir /Users/warman/.npm correctMkdir not in flight; initializing
2120 silly resolveWithNewModule builtin-modules@1.1.1 checking installable status
2121 silly cache add args [ 'builtin-modules@^1.0.0', null ]
2122 verbose cache add spec builtin-modules@^1.0.0
2123 silly cache add parsed spec Result {
2123 silly cache add raw: 'builtin-modules@^1.0.0',
2123 silly cache add scope: null,
2123 silly cache add name: 'builtin-modules',
2123 silly cache add rawSpec: '^1.0.0',
2123 silly cache add spec: '>=1.0.0 <2.0.0',
2123 silly cache add type: 'range' }
2124 silly addNamed builtin-modules@>=1.0.0 <2.0.0
2125 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for builtin-modules
2126 silly addNameRange { name: 'builtin-modules',
2126 silly addNameRange range: '>=1.0.0 <2.0.0',
2126 silly addNameRange hasData: false }
2127 silly mapToRegistry name builtin-modules
2128 silly mapToRegistry using default registry
2129 silly mapToRegistry registry https://registry.npmjs.org/
2130 silly mapToRegistry data Result {
2130 silly mapToRegistry raw: 'builtin-modules',
2130 silly mapToRegistry scope: null,
2130 silly mapToRegistry name: 'builtin-modules',
2130 silly mapToRegistry rawSpec: '',
2130 silly mapToRegistry spec: 'latest',
2130 silly mapToRegistry type: 'tag' }
2131 silly mapToRegistry uri https://registry.npmjs.org/builtin-modules
2132 verbose addNameRange registry:https://registry.npmjs.org/builtin-modules not in flight; fetching
2133 verbose get https://registry.npmjs.org/builtin-modules not expired, no request
2134 silly addNameRange number 2 { name: 'builtin-modules',
2134 silly addNameRange range: '>=1.0.0 <2.0.0',
2134 silly addNameRange hasData: true }
2135 silly addNameRange versions [ 'builtin-modules', [ '1.0.0', '1.0.1', '1.1.0', '1.1.1' ] ]
2136 silly addNamed builtin-modules@1.1.1
2137 verbose addNamed "1.1.1" is a plain semver version for builtin-modules
2138 silly cache afterAdd builtin-modules@1.1.1
2139 verbose afterAdd /Users/warman/.npm/builtin-modules/1.1.1/package/package.json not in flight; writing
2140 verbose correctMkdir /Users/warman/.npm correctMkdir not in flight; initializing
2141 verbose afterAdd /Users/warman/.npm/builtin-modules/1.1.1/package/package.json written
2142 silly fetchNamedPackageData spdx-correct
2143 silly mapToRegistry name spdx-correct
2144 silly mapToRegistry using default registry
2145 silly mapToRegistry registry https://registry.npmjs.org/
2146 silly mapToRegistry data Result {
2146 silly mapToRegistry raw: 'spdx-correct',
2146 silly mapToRegistry scope: null,
2146 silly mapToRegistry name: 'spdx-correct',
2146 silly mapToRegistry rawSpec: '',
2146 silly mapToRegistry spec: 'latest',
2146 silly mapToRegistry type: 'tag' }
2147 silly mapToRegistry uri https://registry.npmjs.org/spdx-correct
2148 silly fetchNamedPackageData spdx-expression-parse
2149 silly mapToRegistry name spdx-expression-parse
2150 silly mapToRegistry using default registry
2151 silly mapToRegistry registry https://registry.npmjs.org/
2152 silly mapToRegistry data Result {
2152 silly mapToRegistry raw: 'spdx-expression-parse',
2152 silly mapToRegistry scope: null,
2152 silly mapToRegistry name: 'spdx-expression-parse',
2152 silly mapToRegistry rawSpec: '',
2152 silly mapToRegistry spec: 'latest',
2152 silly mapToRegistry type: 'tag' }
2153 silly mapToRegistry uri https://registry.npmjs.org/spdx-expression-parse
2154 verbose request uri https://registry.npmjs.org/spdx-expression-parse
2155 verbose request no auth needed
2156 info attempt registry request try #1 at 4:30:31 PM
2157 verbose etag "AW37C9K88MLHQ0JQ0XELGWWTW"
2158 http request GET https://registry.npmjs.org/spdx-expression-parse
2159 verbose request uri https://registry.npmjs.org/spdx-correct
2160 verbose request no auth needed
2161 info attempt registry request try #1 at 4:30:31 PM
2162 verbose etag "8INYDL4LXO8G0KRIRI9MTAQA0"
2163 http request GET https://registry.npmjs.org/spdx-correct
2164 http 304 https://registry.npmjs.org/spdx-expression-parse
2165 verbose headers { date: 'Thu, 09 Jun 2016 20:30:31 GMT',
2165 verbose headers via: '1.1 varnish',
2165 verbose headers 'cache-control': 'max-age=300',
2165 verbose headers etag: '"AW37C9K88MLHQ0JQ0XELGWWTW"',
2165 verbose headers age: '182',
2165 verbose headers connection: 'keep-alive',
2165 verbose headers 'x-served-by': 'cache-jfk1029-JFK',
2165 verbose headers 'x-cache': 'HIT',
2165 verbose headers 'x-cache-hits': '12',
2165 verbose headers 'x-timer': 'S1465504231.034389,VS0,VE0',
2165 verbose headers vary: 'Accept-Encoding' }
2166 silly get cb [ 304,
2166 silly get { date: 'Thu, 09 Jun 2016 20:30:31 GMT',
2166 silly get via: '1.1 varnish',
2166 silly get 'cache-control': 'max-age=300',
2166 silly get etag: '"AW37C9K88MLHQ0JQ0XELGWWTW"',
2166 silly get age: '182',
2166 silly get connection: 'keep-alive',
2166 silly get 'x-served-by': 'cache-jfk1029-JFK',
2166 silly get 'x-cache': 'HIT',
2166 silly get 'x-cache-hits': '12',
2166 silly get 'x-timer': 'S1465504231.034389,VS0,VE0',
2166 silly get vary: 'Accept-Encoding' } ]
2167 verbose etag https://registry.npmjs.org/spdx-expression-parse from cache
2168 verbose get saving spdx-expression-parse to /Users/warman/.npm/registry.npmjs.org/spdx-expression-parse/.cache.json
2169 verbose correctMkdir /Users/warman/.npm correctMkdir not in flight; initializing
2170 silly resolveWithNewModule spdx-expression-parse@1.0.2 checking installable status
2171 silly cache add args [ 'spdx-expression-parse@~1.0.0', null ]
2172 verbose cache add spec spdx-expression-parse@~1.0.0
2173 silly cache add parsed spec Result {
2173 silly cache add raw: 'spdx-expression-parse@~1.0.0',
2173 silly cache add scope: null,
2173 silly cache add name: 'spdx-expression-parse',
2173 silly cache add rawSpec: '~1.0.0',
2173 silly cache add spec: '>=1.0.0 <1.1.0',
2173 silly cache add type: 'range' }
2174 silly addNamed spdx-expression-parse@>=1.0.0 <1.1.0
2175 verbose addNamed ">=1.0.0 <1.1.0" is a valid semver range for spdx-expression-parse
2176 silly addNameRange { name: 'spdx-expression-parse',
2176 silly addNameRange range: '>=1.0.0 <1.1.0',
2176 silly addNameRange hasData: false }
2177 silly mapToRegistry name spdx-expression-parse
2178 silly mapToRegistry using default registry
2179 silly mapToRegistry registry https://registry.npmjs.org/
2180 silly mapToRegistry data Result {
2180 silly mapToRegistry raw: 'spdx-expression-parse',
2180 silly mapToRegistry scope: null,
2180 silly mapToRegistry name: 'spdx-expression-parse',
2180 silly mapToRegistry rawSpec: '',
2180 silly mapToRegistry spec: 'latest',
2180 silly mapToRegistry type: 'tag' }
2181 silly mapToRegistry uri https://registry.npmjs.org/spdx-expression-parse
2182 verbose addNameRange registry:https://registry.npmjs.org/spdx-expression-parse not in flight; fetching
2183 verbose get https://registry.npmjs.org/spdx-expression-parse not expired, no request
2184 silly addNameRange number 2 { name: 'spdx-expression-parse',
2184 silly addNameRange range: '>=1.0.0 <1.1.0',
2184 silly addNameRange hasData: true }
2185 silly addNameRange versions [ 'spdx-expression-parse', [ '1.0.0', '1.0.1', '1.0.2' ] ]
2186 silly addNamed spdx-expression-parse@1.0.2
2187 verbose addNamed "1.0.2" is a plain semver version for spdx-expression-parse
2188 http 200 https://registry.npmjs.org/spdx-correct
2189 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
2189 verbose headers etag: '"5L3STAASS1NX2V6IHEDCTDDXR"',
2189 verbose headers 'content-type': 'application/json',
2189 verbose headers 'content-encoding': 'gzip',
2189 verbose headers 'cache-control': 'max-age=300',
2189 verbose headers 'content-length': '1993',
2189 verbose headers 'accept-ranges': 'bytes',
2189 verbose headers date: 'Thu, 09 Jun 2016 20:30:31 GMT',
2189 verbose headers via: '1.1 varnish',
2189 verbose headers age: '196',
2189 verbose headers connection: 'keep-alive',
2189 verbose headers 'x-served-by': 'cache-jfk1024-JFK',
2189 verbose headers 'x-cache': 'HIT',
2189 verbose headers 'x-cache-hits': '4',
2189 verbose headers 'x-timer': 'S1465504231.038371,VS0,VE0',
2189 verbose headers vary: 'Accept-Encoding' }
2190 silly get cb [ 200,
2190 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
2190 silly get etag: '"5L3STAASS1NX2V6IHEDCTDDXR"',
2190 silly get 'content-type': 'application/json',
2190 silly get 'content-encoding': 'gzip',
2190 silly get 'cache-control': 'max-age=300',
2190 silly get 'content-length': '1993',
2190 silly get 'accept-ranges': 'bytes',
2190 silly get date: 'Thu, 09 Jun 2016 20:30:31 GMT',
2190 silly get via: '1.1 varnish',
2190 silly get age: '196',
2190 silly get connection: 'keep-alive',
2190 silly get 'x-served-by': 'cache-jfk1024-JFK',
2190 silly get 'x-cache': 'HIT',
2190 silly get 'x-cache-hits': '4',
2190 silly get 'x-timer': 'S1465504231.038371,VS0,VE0',
2190 silly get vary: 'Accept-Encoding' } ]
2191 verbose get saving spdx-correct to /Users/warman/.npm/registry.npmjs.org/spdx-correct/.cache.json
2192 verbose correctMkdir /Users/warman/.npm correctMkdir not in flight; initializing
2193 silly cache afterAdd spdx-expression-parse@1.0.2
2194 verbose afterAdd /Users/warman/.npm/spdx-expression-parse/1.0.2/package/package.json not in flight; writing
2195 verbose correctMkdir /Users/warman/.npm correctMkdir not in flight; initializing
2196 silly resolveWithNewModule spdx-correct@1.0.2 checking installable status
2197 silly cache add args [ 'spdx-correct@~1.0.0', null ]
2198 verbose cache add spec spdx-correct@~1.0.0
2199 silly cache add parsed spec Result {
2199 silly cache add raw: 'spdx-correct@~1.0.0',
2199 silly cache add scope: null,
2199 silly cache add name: 'spdx-correct',
2199 silly cache add rawSpec: '~1.0.0',
2199 silly cache add spec: '>=1.0.0 <1.1.0',
2199 silly cache add type: 'range' }
2200 silly addNamed spdx-correct@>=1.0.0 <1.1.0
2201 verbose addNamed ">=1.0.0 <1.1.0" is a valid semver range for spdx-correct
2202 silly addNameRange { name: 'spdx-correct', range: '>=1.0.0 <1.1.0', hasData: false }
2203 silly mapToRegistry name spdx-correct
2204 silly mapToRegistry using default registry
2205 silly mapToRegistry registry https://registry.npmjs.org/
2206 silly mapToRegistry data Result {
2206 silly mapToRegistry raw: 'spdx-correct',
2206 silly mapToRegistry scope: null,
2206 silly mapToRegistry name: 'spdx-correct',
2206 silly mapToRegistry rawSpec: '',
2206 silly mapToRegistry spec: 'latest',
2206 silly mapToRegistry type: 'tag' }
2207 silly mapToRegistry uri https://registry.npmjs.org/spdx-correct
2208 verbose addNameRange registry:https://registry.npmjs.org/spdx-correct not in flight; fetching
2209 verbose get https://registry.npmjs.org/spdx-correct not expired, no request
2210 silly addNameRange number 2 { name: 'spdx-correct', range: '>=1.0.0 <1.1.0', hasData: true }
2211 silly addNameRange versions [ 'spdx-correct',
2211 silly addNameRange [ '1.0.0-prerelease-1',
2211 silly addNameRange '1.0.0-prerelease-2',
2211 silly addNameRange '1.0.0-prerelease-3',
2211 silly addNameRange '1.0.0-prerelease-4',
2211 silly addNameRange '1.0.0',
2211 silly addNameRange '1.0.1',
2211 silly addNameRange '1.0.2' ] ]
2212 silly addNamed spdx-correct@1.0.2
2213 verbose addNamed "1.0.2" is a plain semver version for spdx-correct
2214 verbose afterAdd /Users/warman/.npm/spdx-expression-parse/1.0.2/package/package.json written
2215 silly cache afterAdd spdx-correct@1.0.2
2216 verbose afterAdd /Users/warman/.npm/spdx-correct/1.0.2/package/package.json not in flight; writing
2217 verbose correctMkdir /Users/warman/.npm correctMkdir not in flight; initializing
2218 verbose afterAdd /Users/warman/.npm/spdx-correct/1.0.2/package/package.json written
2219 silly fetchNamedPackageData spdx-license-ids
2220 silly mapToRegistry name spdx-license-ids
2221 silly mapToRegistry using default registry
2222 silly mapToRegistry registry https://registry.npmjs.org/
2223 silly mapToRegistry data Result {
2223 silly mapToRegistry raw: 'spdx-license-ids',
2223 silly mapToRegistry scope: null,
2223 silly mapToRegistry name: 'spdx-license-ids',
2223 silly mapToRegistry rawSpec: '',
2223 silly mapToRegistry spec: 'latest',
2223 silly mapToRegistry type: 'tag' }
2224 silly mapToRegistry uri https://registry.npmjs.org/spdx-license-ids
2225 verbose request uri https://registry.npmjs.org/spdx-license-ids
2226 verbose request no auth needed
2227 info attempt registry request try #1 at 4:30:31 PM
2228 verbose etag "3MQ1WGESKTXJ6A0VAZG6BA1IW"
2229 http request GET https://registry.npmjs.org/spdx-license-ids
2230 http 304 https://registry.npmjs.org/spdx-license-ids
2231 verbose headers { date: 'Thu, 09 Jun 2016 20:30:31 GMT',
2231 verbose headers via: '1.1 varnish',
2231 verbose headers 'cache-control': 'max-age=300',
2231 verbose headers etag: '"3MQ1WGESKTXJ6A0VAZG6BA1IW"',
2231 verbose headers age: '117',
2231 verbose headers connection: 'keep-alive',
2231 verbose headers 'x-served-by': 'cache-jfk1028-JFK',
2231 verbose headers 'x-cache': 'HIT',
2231 verbose headers 'x-cache-hits': '10',
2231 verbose headers 'x-timer': 'S1465504231.079067,VS0,VE0',
2231 verbose headers vary: 'Accept-Encoding' }
2232 silly get cb [ 304,
2232 silly get { date: 'Thu, 09 Jun 2016 20:30:31 GMT',
2232 silly get via: '1.1 varnish',
2232 silly get 'cache-control': 'max-age=300',
2232 silly get etag: '"3MQ1WGESKTXJ6A0VAZG6BA1IW"',
2232 silly get age: '117',
2232 silly get connection: 'keep-alive',
2232 silly get 'x-served-by': 'cache-jfk1028-JFK',
2232 silly get 'x-cache': 'HIT',
2232 silly get 'x-cache-hits': '10',
2232 silly get 'x-timer': 'S1465504231.079067,VS0,VE0',
2232 silly get vary: 'Accept-Encoding' } ]
2233 verbose etag https://registry.npmjs.org/spdx-license-ids from cache
2234 verbose get saving spdx-license-ids to /Users/warman/.npm/registry.npmjs.org/spdx-license-ids/.cache.json
2235 verbose correctMkdir /Users/warman/.npm correctMkdir not in flight; initializing
2236 silly resolveWithNewModule spdx-license-ids@1.2.1 checking installable status
2237 silly cache add args [ 'spdx-license-ids@^1.0.2', null ]
2238 verbose cache add spec spdx-license-ids@^1.0.2
2239 silly cache add parsed spec Result {
2239 silly cache add raw: 'spdx-license-ids@^1.0.2',
2239 silly cache add scope: null,
2239 silly cache add name: 'spdx-license-ids',
2239 silly cache add rawSpec: '^1.0.2',
2239 silly cache add spec: '>=1.0.2 <2.0.0',
2239 silly cache add type: 'range' }
2240 silly addNamed spdx-license-ids@>=1.0.2 <2.0.0
2241 verbose addNamed ">=1.0.2 <2.0.0" is a valid semver range for spdx-license-ids
2242 silly addNameRange { name: 'spdx-license-ids',
2242 silly addNameRange range: '>=1.0.2 <2.0.0',
2242 silly addNameRange hasData: false }
2243 silly mapToRegistry name spdx-license-ids
2244 silly mapToRegistry using default registry
2245 silly mapToRegistry registry https://registry.npmjs.org/
2246 silly mapToRegistry data Result {
2246 silly mapToRegistry raw: 'spdx-license-ids',
2246 silly mapToRegistry scope: null,
2246 silly mapToRegistry name: 'spdx-license-ids',
2246 silly mapToRegistry rawSpec: '',
2246 silly mapToRegistry spec: 'latest',
2246 silly mapToRegistry type: 'tag' }
2247 silly mapToRegistry uri https://registry.npmjs.org/spdx-license-ids
2248 verbose addNameRange registry:https://registry.npmjs.org/spdx-license-ids not in flight; fetching
2249 verbose get https://registry.npmjs.org/spdx-license-ids not expired, no request
2250 silly addNameRange number 2 { name: 'spdx-license-ids',
2250 silly addNameRange range: '>=1.0.2 <2.0.0',
2250 silly addNameRange hasData: true }
2251 silly addNameRange versions [ 'spdx-license-ids',
2251 silly addNameRange [ '0.0.0', '1.0.0', '1.0.1', '1.0.2', '1.1.0', '1.2.0', '1.2.1' ] ]
2252 silly addNamed spdx-license-ids@1.2.1
2253 verbose addNamed "1.2.1" is a plain semver version for spdx-license-ids
2254 silly cache afterAdd spdx-license-ids@1.2.1
2255 verbose afterAdd /Users/warman/.npm/spdx-license-ids/1.2.1/package/package.json not in flight; writing
2256 verbose correctMkdir /Users/warman/.npm correctMkdir not in flight; initializing
2257 verbose afterAdd /Users/warman/.npm/spdx-license-ids/1.2.1/package/package.json written
2258 silly fetchNamedPackageData spdx-exceptions
2259 silly mapToRegistry name spdx-exceptions
2260 silly mapToRegistry using default registry
2261 silly mapToRegistry registry https://registry.npmjs.org/
2262 silly mapToRegistry data Result {
2262 silly mapToRegistry raw: 'spdx-exceptions',
2262 silly mapToRegistry scope: null,
2262 silly mapToRegistry name: 'spdx-exceptions',
2262 silly mapToRegistry rawSpec: '',
2262 silly mapToRegistry spec: 'latest',
2262 silly mapToRegistry type: 'tag' }
2263 silly mapToRegistry uri https://registry.npmjs.org/spdx-exceptions
2264 verbose request uri https://registry.npmjs.org/spdx-exceptions
2265 verbose request no auth needed
2266 info attempt registry request try #1 at 4:30:31 PM
2267 verbose etag "B6QX5Q06RWAN1KHNJXMA6GNIA"
2268 http request GET https://registry.npmjs.org/spdx-exceptions
2269 http 304 https://registry.npmjs.org/spdx-exceptions
2270 verbose headers { date: 'Thu, 09 Jun 2016 20:30:31 GMT',
2270 verbose headers via: '1.1 varnish',
2270 verbose headers 'cache-control': 'max-age=300',
2270 verbose headers etag: '"B6QX5Q06RWAN1KHNJXMA6GNIA"',
2270 verbose headers age: '117',
2270 verbose headers connection: 'keep-alive',
2270 verbose headers 'x-served-by': 'cache-jfk1031-JFK',
2270 verbose headers 'x-cache': 'HIT',
2270 verbose headers 'x-cache-hits': '8',
2270 verbose headers 'x-timer': 'S1465504231.113672,VS0,VE0',
2270 verbose headers vary: 'Accept-Encoding' }
2271 silly get cb [ 304,
2271 silly get { date: 'Thu, 09 Jun 2016 20:30:31 GMT',
2271 silly get via: '1.1 varnish',
2271 silly get 'cache-control': 'max-age=300',
2271 silly get etag: '"B6QX5Q06RWAN1KHNJXMA6GNIA"',
2271 silly get age: '117',
2271 silly get connection: 'keep-alive',
2271 silly get 'x-served-by': 'cache-jfk1031-JFK',
2271 silly get 'x-cache': 'HIT',
2271 silly get 'x-cache-hits': '8',
2271 silly get 'x-timer': 'S1465504231.113672,VS0,VE0',
2271 silly get vary: 'Accept-Encoding' } ]
2272 verbose etag https://registry.npmjs.org/spdx-exceptions from cache
2273 verbose get saving spdx-exceptions to /Users/warman/.npm/registry.npmjs.org/spdx-exceptions/.cache.json
2274 verbose correctMkdir /Users/warman/.npm correctMkdir not in flight; initializing
2275 silly resolveWithNewModule spdx-exceptions@1.0.4 checking installable status
2276 silly cache add args [ 'spdx-exceptions@^1.0.4', null ]
2277 verbose cache add spec spdx-exceptions@^1.0.4
2278 silly cache add parsed spec Result {
2278 silly cache add raw: 'spdx-exceptions@^1.0.4',
2278 silly cache add scope: null,
2278 silly cache add name: 'spdx-exceptions',
2278 silly cache add rawSpec: '^1.0.4',
2278 silly cache add spec: '>=1.0.4 <2.0.0',
2278 silly cache add type: 'range' }
2279 silly addNamed spdx-exceptions@>=1.0.4 <2.0.0
2280 verbose addNamed ">=1.0.4 <2.0.0" is a valid semver range for spdx-exceptions
2281 silly addNameRange { name: 'spdx-exceptions',
2281 silly addNameRange range: '>=1.0.4 <2.0.0',
2281 silly addNameRange hasData: false }
2282 silly mapToRegistry name spdx-exceptions
2283 silly mapToRegistry using default registry
2284 silly mapToRegistry registry https://registry.npmjs.org/
2285 silly mapToRegistry data Result {
2285 silly mapToRegistry raw: 'spdx-exceptions',
2285 silly mapToRegistry scope: null,
2285 silly mapToRegistry name: 'spdx-exceptions',
2285 silly mapToRegistry rawSpec: '',
2285 silly mapToRegistry spec: 'latest',
2285 silly mapToRegistry type: 'tag' }
2286 silly mapToRegistry uri https://registry.npmjs.org/spdx-exceptions
2287 verbose addNameRange registry:https://registry.npmjs.org/spdx-exceptions not in flight; fetching
2288 verbose get https://registry.npmjs.org/spdx-exceptions not expired, no request
2289 silly addNameRange number 2 { name: 'spdx-exceptions',
2289 silly addNameRange range: '>=1.0.4 <2.0.0',
2289 silly addNameRange hasData: true }
2290 silly addNameRange versions [ 'spdx-exceptions',
2290 silly addNameRange [ '1.0.0', '1.0.1', '1.0.2', '1.0.3', '1.0.4' ] ]
2291 silly addNamed spdx-exceptions@1.0.4
2292 verbose addNamed "1.0.4" is a plain semver version for spdx-exceptions
2293 silly cache afterAdd spdx-exceptions@1.0.4
2294 verbose afterAdd /Users/warman/.npm/spdx-exceptions/1.0.4/package/package.json not in flight; writing
2295 verbose correctMkdir /Users/warman/.npm correctMkdir not in flight; initializing
2296 verbose afterAdd /Users/warman/.npm/spdx-exceptions/1.0.4/package/package.json written
2297 silly fetchNamedPackageData find-up
2298 silly mapToRegistry name find-up
2299 silly mapToRegistry using default registry
2300 silly mapToRegistry registry https://registry.npmjs.org/
2301 silly mapToRegistry data Result {
2301 silly mapToRegistry raw: 'find-up',
2301 silly mapToRegistry scope: null,
2301 silly mapToRegistry name: 'find-up',
2301 silly mapToRegistry rawSpec: '',
2301 silly mapToRegistry spec: 'latest',
2301 silly mapToRegistry type: 'tag' }
2302 silly mapToRegistry uri https://registry.npmjs.org/find-up
2303 silly fetchNamedPackageData read-pkg
2304 silly mapToRegistry name read-pkg
2305 silly mapToRegistry using default registry
2306 silly mapToRegistry registry https://registry.npmjs.org/
2307 silly mapToRegistry data Result {
2307 silly mapToRegistry raw: 'read-pkg',
2307 silly mapToRegistry scope: null,
2307 silly mapToRegistry name: 'read-pkg',
2307 silly mapToRegistry rawSpec: '',
2307 silly mapToRegistry spec: 'latest',
2307 silly mapToRegistry type: 'tag' }
2308 silly mapToRegistry uri https://registry.npmjs.org/read-pkg
2309 verbose request uri https://registry.npmjs.org/find-up
2310 verbose request no auth needed
2311 info attempt registry request try #1 at 4:30:31 PM
2312 verbose etag "1872WXNR4RQA229GAHCSMTXR"
2313 http request GET https://registry.npmjs.org/find-up
2314 verbose request uri https://registry.npmjs.org/read-pkg
2315 verbose request no auth needed
2316 info attempt registry request try #1 at 4:30:31 PM
2317 verbose etag "64HB9U8J2HJXMJCO3QG6CLXW9"
2318 http request GET https://registry.npmjs.org/read-pkg
2319 http 304 https://registry.npmjs.org/read-pkg
2320 verbose headers { date: 'Thu, 09 Jun 2016 20:30:31 GMT',
2320 verbose headers via: '1.1 varnish',
2320 verbose headers 'cache-control': 'max-age=300',
2320 verbose headers etag: '"64HB9U8J2HJXMJCO3QG6CLXW9"',
2320 verbose headers age: '299',
2320 verbose headers connection: 'keep-alive',
2320 verbose headers 'x-served-by': 'cache-jfk1039-JFK',
2320 verbose headers 'x-cache': 'HIT',
2320 verbose headers 'x-cache-hits': '13',
2320 verbose headers 'x-timer': 'S1465504231.144726,VS0,VE0',
2320 verbose headers vary: 'Accept-Encoding' }
2321 silly get cb [ 304,
2321 silly get { date: 'Thu, 09 Jun 2016 20:30:31 GMT',
2321 silly get via: '1.1 varnish',
2321 silly get 'cache-control': 'max-age=300',
2321 silly get etag: '"64HB9U8J2HJXMJCO3QG6CLXW9"',
2321 silly get age: '299',
2321 silly get connection: 'keep-alive',
2321 silly get 'x-served-by': 'cache-jfk1039-JFK',
2321 silly get 'x-cache': 'HIT',
2321 silly get 'x-cache-hits': '13',
2321 silly get 'x-timer': 'S1465504231.144726,VS0,VE0',
2321 silly get vary: 'Accept-Encoding' } ]
2322 verbose etag https://registry.npmjs.org/read-pkg from cache
2323 verbose get saving read-pkg to /Users/warman/.npm/registry.npmjs.org/read-pkg/.cache.json
2324 verbose correctMkdir /Users/warman/.npm correctMkdir not in flight; initializing
2325 silly resolveWithNewModule read-pkg@1.1.0 checking installable status
2326 silly cache add args [ 'read-pkg@^1.0.0', null ]
2327 verbose cache add spec read-pkg@^1.0.0
2328 silly cache add parsed spec Result {
2328 silly cache add raw: 'read-pkg@^1.0.0',
2328 silly cache add scope: null,
2328 silly cache add name: 'read-pkg',
2328 silly cache add rawSpec: '^1.0.0',
2328 silly cache add spec: '>=1.0.0 <2.0.0',
2328 silly cache add type: 'range' }
2329 silly addNamed read-pkg@>=1.0.0 <2.0.0
2330 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for read-pkg
2331 silly addNameRange { name: 'read-pkg', range: '>=1.0.0 <2.0.0', hasData: false }
2332 silly mapToRegistry name read-pkg
2333 silly mapToRegistry using default registry
2334 silly mapToRegistry registry https://registry.npmjs.org/
2335 silly mapToRegistry data Result {
2335 silly mapToRegistry raw: 'read-pkg',
2335 silly mapToRegistry scope: null,
2335 silly mapToRegistry name: 'read-pkg',
2335 silly mapToRegistry rawSpec: '',
2335 silly mapToRegistry spec: 'latest',
2335 silly mapToRegistry type: 'tag' }
2336 silly mapToRegistry uri https://registry.npmjs.org/read-pkg
2337 verbose addNameRange registry:https://registry.npmjs.org/read-pkg not in flight; fetching
2338 http 200 https://registry.npmjs.org/find-up
2339 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
2339 verbose headers etag: '"2EA0LQJK9PCP3RYJZVH4T65YI"',
2339 verbose headers 'content-type': 'application/json',
2339 verbose headers 'content-encoding': 'gzip',
2339 verbose headers 'cache-control': 'max-age=300',
2339 verbose headers 'content-length': '1896',
2339 verbose headers 'accept-ranges': 'bytes',
2339 verbose headers date: 'Thu, 09 Jun 2016 20:30:31 GMT',
2339 verbose headers via: '1.1 varnish',
2339 verbose headers age: '91',
2339 verbose headers connection: 'keep-alive',
2339 verbose headers 'x-served-by': 'cache-jfk1035-JFK',
2339 verbose headers 'x-cache': 'HIT',
2339 verbose headers 'x-cache-hits': '5',
2339 verbose headers 'x-timer': 'S1465504231.146484,VS0,VE0',
2339 verbose headers vary: 'Accept-Encoding' }
2340 silly get cb [ 200,
2340 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
2340 silly get etag: '"2EA0LQJK9PCP3RYJZVH4T65YI"',
2340 silly get 'content-type': 'application/json',
2340 silly get 'content-encoding': 'gzip',
2340 silly get 'cache-control': 'max-age=300',
2340 silly get 'content-length': '1896',
2340 silly get 'accept-ranges': 'bytes',
2340 silly get date: 'Thu, 09 Jun 2016 20:30:31 GMT',
2340 silly get via: '1.1 varnish',
2340 silly get age: '91',
2340 silly get connection: 'keep-alive',
2340 silly get 'x-served-by': 'cache-jfk1035-JFK',
2340 silly get 'x-cache': 'HIT',
2340 silly get 'x-cache-hits': '5',
2340 silly get 'x-timer': 'S1465504231.146484,VS0,VE0',
2340 silly get vary: 'Accept-Encoding' } ]
2341 verbose get saving find-up to /Users/warman/.npm/registry.npmjs.org/find-up/.cache.json
2342 verbose correctMkdir /Users/warman/.npm correctMkdir not in flight; initializing
2343 verbose get https://registry.npmjs.org/read-pkg not expired, no request
2344 silly addNameRange number 2 { name: 'read-pkg', range: '>=1.0.0 <2.0.0', hasData: true }
2345 silly addNameRange versions [ 'read-pkg', [ '1.0.0', '1.1.0' ] ]
2346 silly addNamed read-pkg@1.1.0
2347 verbose addNamed "1.1.0" is a plain semver version for read-pkg
2348 silly cache afterAdd read-pkg@1.1.0
2349 verbose afterAdd /Users/warman/.npm/read-pkg/1.1.0/package/package.json not in flight; writing
2350 verbose correctMkdir /Users/warman/.npm correctMkdir not in flight; initializing
2351 silly resolveWithNewModule find-up@1.1.2 checking installable status
2352 silly cache add args [ 'find-up@^1.0.0', null ]
2353 verbose cache add spec find-up@^1.0.0
2354 silly cache add parsed spec Result {
2354 silly cache add raw: 'find-up@^1.0.0',
2354 silly cache add scope: null,
2354 silly cache add name: 'find-up',
2354 silly cache add rawSpec: '^1.0.0',
2354 silly cache add spec: '>=1.0.0 <2.0.0',
2354 silly cache add type: 'range' }
2355 silly addNamed find-up@>=1.0.0 <2.0.0
2356 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for find-up
2357 silly addNameRange { name: 'find-up', range: '>=1.0.0 <2.0.0', hasData: false }
2358 silly mapToRegistry name find-up
2359 silly mapToRegistry using default registry
2360 silly mapToRegistry registry https://registry.npmjs.org/
2361 silly mapToRegistry data Result {
2361 silly mapToRegistry raw: 'find-up',
2361 silly mapToRegistry scope: null,
2361 silly mapToRegistry name: 'find-up',
2361 silly mapToRegistry rawSpec: '',
2361 silly mapToRegistry spec: 'latest',
2361 silly mapToRegistry type: 'tag' }
2362 silly mapToRegistry uri https://registry.npmjs.org/find-up
2363 verbose addNameRange registry:https://registry.npmjs.org/find-up not in flight; fetching
2364 verbose get https://registry.npmjs.org/find-up not expired, no request
2365 silly addNameRange number 2 { name: 'find-up', range: '>=1.0.0 <2.0.0', hasData: true }
2366 silly addNameRange versions [ 'find-up', [ '1.0.0', '1.1.0', '1.1.1', '1.1.2' ] ]
2367 silly addNamed find-up@1.1.2
2368 verbose addNamed "1.1.2" is a plain semver version for find-up
2369 verbose afterAdd /Users/warman/.npm/read-pkg/1.1.0/package/package.json written
2370 silly cache afterAdd find-up@1.1.2
2371 verbose afterAdd /Users/warman/.npm/find-up/1.1.2/package/package.json not in flight; writing
2372 verbose correctMkdir /Users/warman/.npm correctMkdir not in flight; initializing
2373 verbose afterAdd /Users/warman/.npm/find-up/1.1.2/package/package.json written
2374 silly fetchNamedPackageData path-exists
2375 silly mapToRegistry name path-exists
2376 silly mapToRegistry using default registry
2377 silly mapToRegistry registry https://registry.npmjs.org/
2378 silly mapToRegistry data Result {
2378 silly mapToRegistry raw: 'path-exists',
2378 silly mapToRegistry scope: null,
2378 silly mapToRegistry name: 'path-exists',
2378 silly mapToRegistry rawSpec: '',
2378 silly mapToRegistry spec: 'latest',
2378 silly mapToRegistry type: 'tag' }
2379 silly mapToRegistry uri https://registry.npmjs.org/path-exists
2380 silly fetchNamedPackageData pinkie-promise
2381 silly mapToRegistry name pinkie-promise
2382 silly mapToRegistry using default registry
2383 silly mapToRegistry registry https://registry.npmjs.org/
2384 silly mapToRegistry data Result {
2384 silly mapToRegistry raw: 'pinkie-promise',
2384 silly mapToRegistry scope: null,
2384 silly mapToRegistry name: 'pinkie-promise',
2384 silly mapToRegistry rawSpec: '',
2384 silly mapToRegistry spec: 'latest',
2384 silly mapToRegistry type: 'tag' }
2385 silly mapToRegistry uri https://registry.npmjs.org/pinkie-promise
2386 verbose request uri https://registry.npmjs.org/path-exists
2387 verbose request no auth needed
2388 info attempt registry request try #1 at 4:30:31 PM
2389 verbose etag "31PM8JK1337HQXK7IGK7UTR3K"
2390 http request GET https://registry.npmjs.org/path-exists
2391 verbose request uri https://registry.npmjs.org/pinkie-promise
2392 verbose request no auth needed
2393 info attempt registry request try #1 at 4:30:31 PM
2394 verbose etag "9Y8V37D2OD3IRDJ4IMB7G5U81"
2395 http request GET https://registry.npmjs.org/pinkie-promise
2396 http 304 https://registry.npmjs.org/path-exists
2397 verbose headers { date: 'Thu, 09 Jun 2016 20:30:31 GMT',
2397 verbose headers via: '1.1 varnish',
2397 verbose headers 'cache-control': 'max-age=300',
2397 verbose headers etag: '"31PM8JK1337HQXK7IGK7UTR3K"',
2397 verbose headers age: '15',
2397 verbose headers connection: 'keep-alive',
2397 verbose headers 'x-served-by': 'cache-jfk1048-JFK',
2397 verbose headers 'x-cache': 'HIT',
2397 verbose headers 'x-cache-hits': '1',
2397 verbose headers 'x-timer': 'S1465504231.185356,VS0,VE0',
2397 verbose headers vary: 'Accept-Encoding' }
2398 silly get cb [ 304,
2398 silly get { date: 'Thu, 09 Jun 2016 20:30:31 GMT',
2398 silly get via: '1.1 varnish',
2398 silly get 'cache-control': 'max-age=300',
2398 silly get etag: '"31PM8JK1337HQXK7IGK7UTR3K"',
2398 silly get age: '15',
2398 silly get connection: 'keep-alive',
2398 silly get 'x-served-by': 'cache-jfk1048-JFK',
2398 silly get 'x-cache': 'HIT',
2398 silly get 'x-cache-hits': '1',
2398 silly get 'x-timer': 'S1465504231.185356,VS0,VE0',
2398 silly get vary: 'Accept-Encoding' } ]
2399 verbose etag https://registry.npmjs.org/path-exists from cache
2400 verbose get saving path-exists to /Users/warman/.npm/registry.npmjs.org/path-exists/.cache.json
2401 verbose correctMkdir /Users/warman/.npm correctMkdir not in flight; initializing
2402 http 304 https://registry.npmjs.org/pinkie-promise
2403 verbose headers { date: 'Thu, 09 Jun 2016 20:30:31 GMT',
2403 verbose headers via: '1.1 varnish',
2403 verbose headers 'cache-control': 'max-age=300',
2403 verbose headers etag: '"9Y8V37D2OD3IRDJ4IMB7G5U81"',
2403 verbose headers age: '255',
2403 verbose headers connection: 'keep-alive',
2403 verbose headers 'x-served-by': 'cache-jfk1029-JFK',
2403 verbose headers 'x-cache': 'HIT',
2403 verbose headers 'x-cache-hits': '23',
2403 verbose headers 'x-timer': 'S1465504231.185728,VS0,VE0',
2403 verbose headers vary: 'Accept-Encoding' }
2404 silly get cb [ 304,
2404 silly get { date: 'Thu, 09 Jun 2016 20:30:31 GMT',
2404 silly get via: '1.1 varnish',
2404 silly get 'cache-control': 'max-age=300',
2404 silly get etag: '"9Y8V37D2OD3IRDJ4IMB7G5U81"',
2404 silly get age: '255',
2404 silly get connection: 'keep-alive',
2404 silly get 'x-served-by': 'cache-jfk1029-JFK',
2404 silly get 'x-cache': 'HIT',
2404 silly get 'x-cache-hits': '23',
2404 silly get 'x-timer': 'S1465504231.185728,VS0,VE0',
2404 silly get vary: 'Accept-Encoding' } ]
2405 verbose etag https://registry.npmjs.org/pinkie-promise from cache
2406 verbose get saving pinkie-promise to /Users/warman/.npm/registry.npmjs.org/pinkie-promise/.cache.json
2407 verbose correctMkdir /Users/warman/.npm correctMkdir not in flight; initializing
2408 silly resolveWithNewModule path-exists@2.1.0 checking installable status
2409 silly cache add args [ 'path-exists@^2.0.0', null ]
2410 verbose cache add spec path-exists@^2.0.0
2411 silly cache add parsed spec Result {
2411 silly cache add raw: 'path-exists@^2.0.0',
2411 silly cache add scope: null,
2411 silly cache add name: 'path-exists',
2411 silly cache add rawSpec: '^2.0.0',
2411 silly cache add spec: '>=2.0.0 <3.0.0',
2411 silly cache add type: 'range' }
2412 silly addNamed path-exists@>=2.0.0 <3.0.0
2413 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for path-exists
2414 silly addNameRange { name: 'path-exists', range: '>=2.0.0 <3.0.0', hasData: false }
2415 silly mapToRegistry name path-exists
2416 silly mapToRegistry using default registry
2417 silly mapToRegistry registry https://registry.npmjs.org/
2418 silly mapToRegistry data Result {
2418 silly mapToRegistry raw: 'path-exists',
2418 silly mapToRegistry scope: null,
2418 silly mapToRegistry name: 'path-exists',
2418 silly mapToRegistry rawSpec: '',
2418 silly mapToRegistry spec: 'latest',
2418 silly mapToRegistry type: 'tag' }
2419 silly mapToRegistry uri https://registry.npmjs.org/path-exists
2420 verbose addNameRange registry:https://registry.npmjs.org/path-exists not in flight; fetching
2421 silly resolveWithNewModule pinkie-promise@2.0.1 checking installable status
2422 silly cache add args [ 'pinkie-promise@^2.0.0', null ]
2423 verbose cache add spec pinkie-promise@^2.0.0
2424 silly cache add parsed spec Result {
2424 silly cache add raw: 'pinkie-promise@^2.0.0',
2424 silly cache add scope: null,
2424 silly cache add name: 'pinkie-promise',
2424 silly cache add rawSpec: '^2.0.0',
2424 silly cache add spec: '>=2.0.0 <3.0.0',
2424 silly cache add type: 'range' }
2425 silly addNamed pinkie-promise@>=2.0.0 <3.0.0
2426 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for pinkie-promise
2427 silly addNameRange { name: 'pinkie-promise',
2427 silly addNameRange range: '>=2.0.0 <3.0.0',
2427 silly addNameRange hasData: false }
2428 silly mapToRegistry name pinkie-promise
2429 silly mapToRegistry using default registry
2430 silly mapToRegistry registry https://registry.npmjs.org/
2431 silly mapToRegistry data Result {
2431 silly mapToRegistry raw: 'pinkie-promise',
2431 silly mapToRegistry scope: null,
2431 silly mapToRegistry name: 'pinkie-promise',
2431 silly mapToRegistry rawSpec: '',
2431 silly mapToRegistry spec: 'latest',
2431 silly mapToRegistry type: 'tag' }
2432 silly mapToRegistry uri https://registry.npmjs.org/pinkie-promise
2433 verbose addNameRange registry:https://registry.npmjs.org/pinkie-promise not in flight; fetching
2434 verbose get https://registry.npmjs.org/path-exists not expired, no request
2435 silly addNameRange number 2 { name: 'path-exists', range: '>=2.0.0 <3.0.0', hasData: true }
2436 silly addNameRange versions [ 'path-exists', [ '1.0.0', '2.0.0', '2.1.0', '3.0.0' ] ]
2437 silly addNamed path-exists@2.1.0
2438 verbose addNamed "2.1.0" is a plain semver version for path-exists
2439 verbose get https://registry.npmjs.org/pinkie-promise not expired, no request
2440 silly addNameRange number 2 { name: 'pinkie-promise',
2440 silly addNameRange range: '>=2.0.0 <3.0.0',
2440 silly addNameRange hasData: true }
2441 silly addNameRange versions [ 'pinkie-promise', [ '1.0.0', '2.0.0', '2.0.1' ] ]
2442 silly addNamed pinkie-promise@2.0.1
2443 verbose addNamed "2.0.1" is a plain semver version for pinkie-promise
2444 silly cache afterAdd path-exists@2.1.0
2445 verbose afterAdd /Users/warman/.npm/path-exists/2.1.0/package/package.json not in flight; writing
2446 verbose correctMkdir /Users/warman/.npm correctMkdir not in flight; initializing