-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnpm-debug.log
3022 lines (3022 loc) · 172 KB
/
npm-debug.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
0 info it worked if it ends with ok
1 verbose cli [ 'C:\\Program Files\\nodejs\\node.exe',
1 verbose cli 'C:\\Users\\Michelle\\AppData\\Roaming\\npm\\node_modules\\npm\\bin\\npm-cli.js',
1 verbose cli 'install',
1 verbose cli 'chartjs-node' ]
2 info using [email protected]
3 info using [email protected]
4 silly loadCurrentTree Starting
5 silly install loadCurrentTree
6 silly install readLocalPackageData
7 silly fetchPackageMetaData chartjs-node
8 silly fetchNamedPackageData chartjs-node
9 silly mapToRegistry name chartjs-node
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry data Result {
12 silly mapToRegistry raw: 'chartjs-node',
12 silly mapToRegistry scope: null,
12 silly mapToRegistry escapedName: 'chartjs-node',
12 silly mapToRegistry name: 'chartjs-node',
12 silly mapToRegistry rawSpec: '',
12 silly mapToRegistry spec: 'latest',
12 silly mapToRegistry type: 'tag' }
13 silly mapToRegistry uri https://registry.npmjs.org/chartjs-node
14 verbose request uri https://registry.npmjs.org/chartjs-node
15 verbose request no auth needed
16 info attempt registry request try #1 at 4:39:31 PM
17 verbose request id 00fc2136e90c8cc8
18 verbose etag W/"58a48c78-4294"
19 verbose lastModified Wed, 15 Feb 2017 17:14:32 GMT
20 http request GET https://registry.npmjs.org/chartjs-node
21 http 304 https://registry.npmjs.org/chartjs-node
22 verbose headers { date: 'Sun, 04 Jun 2017 23:39:26 GMT',
22 verbose headers via: '1.1 varnish',
22 verbose headers 'cache-control': 'max-age=300',
22 verbose headers etag: 'W/"58a48c78-4294"',
22 verbose headers age: '0',
22 verbose headers connection: 'keep-alive',
22 verbose headers 'x-served-by': 'cache-lax8628-LAX',
22 verbose headers 'x-cache': 'MISS',
22 verbose headers 'x-cache-hits': '0',
22 verbose headers 'x-timer': 'S1496619566.011998,VS0,VE163',
22 verbose headers vary: 'Accept-Encoding' }
23 silly get cb [ 304,
23 silly get { date: 'Sun, 04 Jun 2017 23:39:26 GMT',
23 silly get via: '1.1 varnish',
23 silly get 'cache-control': 'max-age=300',
23 silly get etag: 'W/"58a48c78-4294"',
23 silly get age: '0',
23 silly get connection: 'keep-alive',
23 silly get 'x-served-by': 'cache-lax8628-LAX',
23 silly get 'x-cache': 'MISS',
23 silly get 'x-cache-hits': '0',
23 silly get 'x-timer': 'S1496619566.011998,VS0,VE163',
23 silly get vary: 'Accept-Encoding' } ]
24 verbose etag https://registry.npmjs.org/chartjs-node from cache
25 verbose get saving chartjs-node to C:\Users\Michelle\AppData\Roaming\npm-cache\registry.npmjs.org\chartjs-node\.cache.json
26 verbose correctMkdir C:\Users\Michelle\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
27 silly install normalizeTree
28 silly loadCurrentTree Finishing
29 silly loadIdealTree Starting
30 silly install loadIdealTree
31 silly cloneCurrentTree Starting
32 silly install cloneCurrentTreeToIdealTree
33 silly cloneCurrentTree Finishing
34 silly loadShrinkwrap Starting
35 silly install loadShrinkwrap
36 silly loadShrinkwrap Finishing
37 silly loadAllDepsIntoIdealTree Starting
38 silly install loadAllDepsIntoIdealTree
39 silly resolveWithNewModule [email protected] checking installable status
40 silly cache add args [ 'chartjs-node', null ]
41 verbose cache add spec chartjs-node
42 silly cache add parsed spec Result {
42 silly cache add raw: 'chartjs-node',
42 silly cache add scope: null,
42 silly cache add escapedName: 'chartjs-node',
42 silly cache add name: 'chartjs-node',
42 silly cache add rawSpec: '',
42 silly cache add spec: 'latest',
42 silly cache add type: 'tag' }
43 silly addNamed chartjs-node@latest
44 verbose addNamed "latest" is being treated as a dist-tag for chartjs-node
45 info addNameTag [ 'chartjs-node', 'latest' ]
46 silly mapToRegistry name chartjs-node
47 silly mapToRegistry using default registry
48 silly mapToRegistry registry https://registry.npmjs.org/
49 silly mapToRegistry data Result {
49 silly mapToRegistry raw: 'chartjs-node',
49 silly mapToRegistry scope: null,
49 silly mapToRegistry escapedName: 'chartjs-node',
49 silly mapToRegistry name: 'chartjs-node',
49 silly mapToRegistry rawSpec: '',
49 silly mapToRegistry spec: 'latest',
49 silly mapToRegistry type: 'tag' }
50 silly mapToRegistry uri https://registry.npmjs.org/chartjs-node
51 verbose addNameTag registry:https://registry.npmjs.org/chartjs-node not in flight; fetching
52 verbose get https://registry.npmjs.org/chartjs-node not expired, no request
53 silly addNameTag next cb for chartjs-node with tag latest
54 silly addNamed [email protected]
55 verbose addNamed "1.4.1" is a plain semver version for chartjs-node
56 silly cache afterAdd [email protected]
57 verbose afterAdd C:\Users\Michelle\AppData\Roaming\npm-cache\chartjs-node\1.4.1\package\package.json not in flight; writing
58 verbose correctMkdir C:\Users\Michelle\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
59 verbose afterAdd C:\Users\Michelle\AppData\Roaming\npm-cache\chartjs-node\1.4.1\package\package.json written
60 silly fetchNamedPackageData canvas
61 silly mapToRegistry name canvas
62 silly mapToRegistry using default registry
63 silly mapToRegistry registry https://registry.npmjs.org/
64 silly mapToRegistry data Result {
64 silly mapToRegistry raw: 'canvas',
64 silly mapToRegistry scope: null,
64 silly mapToRegistry escapedName: 'canvas',
64 silly mapToRegistry name: 'canvas',
64 silly mapToRegistry rawSpec: '',
64 silly mapToRegistry spec: 'latest',
64 silly mapToRegistry type: 'tag' }
65 silly mapToRegistry uri https://registry.npmjs.org/canvas
66 verbose request uri https://registry.npmjs.org/canvas
67 verbose request no auth needed
68 info attempt registry request try #1 at 4:39:31 PM
69 verbose etag W/"59286fd8-20d7f"
70 verbose lastModified Fri, 26 May 2017 18:11:36 GMT
71 http request GET https://registry.npmjs.org/canvas
72 http 304 https://registry.npmjs.org/canvas
73 verbose headers { date: 'Sun, 04 Jun 2017 23:39:26 GMT',
73 verbose headers via: '1.1 varnish',
73 verbose headers 'cache-control': 'max-age=300',
73 verbose headers etag: 'W/"59286fd8-20d7f"',
73 verbose headers age: '0',
73 verbose headers connection: 'keep-alive',
73 verbose headers 'x-served-by': 'cache-lax8628-LAX',
73 verbose headers 'x-cache': 'MISS',
73 verbose headers 'x-cache-hits': '0',
73 verbose headers 'x-timer': 'S1496619566.359008,VS0,VE187',
73 verbose headers vary: 'Accept-Encoding' }
74 silly get cb [ 304,
74 silly get { date: 'Sun, 04 Jun 2017 23:39:26 GMT',
74 silly get via: '1.1 varnish',
74 silly get 'cache-control': 'max-age=300',
74 silly get etag: 'W/"59286fd8-20d7f"',
74 silly get age: '0',
74 silly get connection: 'keep-alive',
74 silly get 'x-served-by': 'cache-lax8628-LAX',
74 silly get 'x-cache': 'MISS',
74 silly get 'x-cache-hits': '0',
74 silly get 'x-timer': 'S1496619566.359008,VS0,VE187',
74 silly get vary: 'Accept-Encoding' } ]
75 verbose etag https://registry.npmjs.org/canvas from cache
76 verbose get saving canvas to C:\Users\Michelle\AppData\Roaming\npm-cache\registry.npmjs.org\canvas\.cache.json
77 verbose correctMkdir C:\Users\Michelle\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
78 silly resolveWithNewModule [email protected] checking installable status
79 silly cache add args [ '[email protected].*', null ]
80 verbose cache add spec [email protected].*
81 silly cache add parsed spec Result {
81 silly cache add raw: '[email protected].*',
81 silly cache add scope: null,
81 silly cache add escapedName: 'canvas',
81 silly cache add name: 'canvas',
81 silly cache add rawSpec: '1.6.*',
81 silly cache add spec: '>=1.6.0 <1.7.0',
81 silly cache add type: 'range' }
82 silly addNamed canvas@>=1.6.0 <1.7.0
83 verbose addNamed ">=1.6.0 <1.7.0" is a valid semver range for canvas
84 silly addNameRange { name: 'canvas', range: '>=1.6.0 <1.7.0', hasData: false }
85 silly mapToRegistry name canvas
86 silly mapToRegistry using default registry
87 silly mapToRegistry registry https://registry.npmjs.org/
88 silly mapToRegistry data Result {
88 silly mapToRegistry raw: 'canvas',
88 silly mapToRegistry scope: null,
88 silly mapToRegistry escapedName: 'canvas',
88 silly mapToRegistry name: 'canvas',
88 silly mapToRegistry rawSpec: '',
88 silly mapToRegistry spec: 'latest',
88 silly mapToRegistry type: 'tag' }
89 silly mapToRegistry uri https://registry.npmjs.org/canvas
90 verbose addNameRange registry:https://registry.npmjs.org/canvas not in flight; fetching
91 verbose get https://registry.npmjs.org/canvas not expired, no request
92 silly addNameRange number 2 { name: 'canvas', range: '>=1.6.0 <1.7.0', hasData: true }
93 silly addNameRange versions [ 'canvas',
93 silly addNameRange [ '0.0.1',
93 silly addNameRange '0.0.2',
93 silly addNameRange '0.0.3',
93 silly addNameRange '0.0.4',
93 silly addNameRange '0.0.5',
93 silly addNameRange '0.0.6',
93 silly addNameRange '0.0.7',
93 silly addNameRange '0.0.8',
93 silly addNameRange '0.1.0',
93 silly addNameRange '0.2.0',
93 silly addNameRange '0.2.1',
93 silly addNameRange '0.3.0',
93 silly addNameRange '0.3.1',
93 silly addNameRange '0.3.2',
93 silly addNameRange '0.3.3',
93 silly addNameRange '0.4.0',
93 silly addNameRange '0.4.1',
93 silly addNameRange '0.4.2',
93 silly addNameRange '0.4.3',
93 silly addNameRange '0.5.0',
93 silly addNameRange '0.5.1',
93 silly addNameRange '0.5.2',
93 silly addNameRange '0.5.3',
93 silly addNameRange '0.5.4',
93 silly addNameRange '0.6.0',
93 silly addNameRange '0.7.0',
93 silly addNameRange '0.7.1',
93 silly addNameRange '0.7.2',
93 silly addNameRange '0.7.3',
93 silly addNameRange '0.8.0',
93 silly addNameRange '0.8.1',
93 silly addNameRange '0.8.2',
93 silly addNameRange '0.8.3',
93 silly addNameRange '0.9.0',
93 silly addNameRange '0.10.0',
93 silly addNameRange '0.10.1',
93 silly addNameRange '0.10.2',
93 silly addNameRange '0.10.3',
93 silly addNameRange '0.11.0',
93 silly addNameRange '0.11.1',
93 silly addNameRange '0.11.2',
93 silly addNameRange '0.11.3',
93 silly addNameRange '0.12.0',
93 silly addNameRange '0.12.1',
93 silly addNameRange '0.13.0',
93 silly addNameRange '0.13.1',
93 silly addNameRange '1.0.0',
93 silly addNameRange '1.0.1',
93 silly addNameRange '1.0.2',
93 silly addNameRange '1.0.3',
93 silly addNameRange '1.0.4',
93 silly addNameRange '1.1.0',
93 silly addNameRange '1.1.1',
93 silly addNameRange '1.1.2',
93 silly addNameRange '1.1.3',
93 silly addNameRange '1.1.4',
93 silly addNameRange '1.1.5',
93 silly addNameRange '1.1.6',
93 silly addNameRange '1.2.0',
93 silly addNameRange '1.2.1',
93 silly addNameRange '1.2.2',
93 silly addNameRange '1.2.3',
93 silly addNameRange '1.2.4',
93 silly addNameRange '1.2.5',
93 silly addNameRange '1.2.6',
93 silly addNameRange '1.2.7',
93 silly addNameRange '1.2.8',
93 silly addNameRange '1.2.9',
93 silly addNameRange '1.2.10',
93 silly addNameRange '1.2.11',
93 silly addNameRange '1.3.0',
93 silly addNameRange '1.3.1',
93 silly addNameRange '1.3.2',
93 silly addNameRange '1.3.3',
93 silly addNameRange '1.3.4',
93 silly addNameRange '1.3.5',
93 silly addNameRange '1.3.6',
93 silly addNameRange '1.3.7',
93 silly addNameRange '1.3.8',
93 silly addNameRange '1.3.9',
93 silly addNameRange '1.3.10',
93 silly addNameRange '1.3.11',
93 silly addNameRange '1.3.12',
93 silly addNameRange '1.3.13',
93 silly addNameRange '1.3.14',
93 silly addNameRange '1.3.15',
93 silly addNameRange '1.3.16',
93 silly addNameRange '1.4.0',
93 silly addNameRange '1.5.0',
93 silly addNameRange '1.6.0',
93 silly addNameRange '1.6.1',
93 silly addNameRange '1.6.2',
93 silly addNameRange '1.6.3',
93 silly addNameRange '1.6.4',
93 silly addNameRange '1.6.5',
93 silly addNameRange '2.0.0-alpha.1',
93 silly addNameRange '2.0.0-alpha.2' ] ]
94 silly addNamed [email protected]
95 verbose addNamed "1.6.5" is a plain semver version for canvas
96 silly cache afterAdd [email protected]
97 verbose afterAdd C:\Users\Michelle\AppData\Roaming\npm-cache\canvas\1.6.5\package\package.json not in flight; writing
98 verbose correctMkdir C:\Users\Michelle\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
99 verbose afterAdd C:\Users\Michelle\AppData\Roaming\npm-cache\canvas\1.6.5\package\package.json written
100 silly fetchNamedPackageData nan
101 silly mapToRegistry name nan
102 silly mapToRegistry using default registry
103 silly mapToRegistry registry https://registry.npmjs.org/
104 silly mapToRegistry data Result {
104 silly mapToRegistry raw: 'nan',
104 silly mapToRegistry scope: null,
104 silly mapToRegistry escapedName: 'nan',
104 silly mapToRegistry name: 'nan',
104 silly mapToRegistry rawSpec: '',
104 silly mapToRegistry spec: 'latest',
104 silly mapToRegistry type: 'tag' }
105 silly mapToRegistry uri https://registry.npmjs.org/nan
106 silly fetchNamedPackageData parse-css-font
107 silly mapToRegistry name parse-css-font
108 silly mapToRegistry using default registry
109 silly mapToRegistry registry https://registry.npmjs.org/
110 silly mapToRegistry data Result {
110 silly mapToRegistry raw: 'parse-css-font',
110 silly mapToRegistry scope: null,
110 silly mapToRegistry escapedName: 'parse-css-font',
110 silly mapToRegistry name: 'parse-css-font',
110 silly mapToRegistry rawSpec: '',
110 silly mapToRegistry spec: 'latest',
110 silly mapToRegistry type: 'tag' }
111 silly mapToRegistry uri https://registry.npmjs.org/parse-css-font
112 silly fetchNamedPackageData units-css
113 silly mapToRegistry name units-css
114 silly mapToRegistry using default registry
115 silly mapToRegistry registry https://registry.npmjs.org/
116 silly mapToRegistry data Result {
116 silly mapToRegistry raw: 'units-css',
116 silly mapToRegistry scope: null,
116 silly mapToRegistry escapedName: 'units-css',
116 silly mapToRegistry name: 'units-css',
116 silly mapToRegistry rawSpec: '',
116 silly mapToRegistry spec: 'latest',
116 silly mapToRegistry type: 'tag' }
117 silly mapToRegistry uri https://registry.npmjs.org/units-css
118 verbose request uri https://registry.npmjs.org/units-css
119 verbose request no auth needed
120 info attempt registry request try #1 at 4:39:31 PM
121 verbose etag W/"5619520e-39a2"
122 verbose lastModified Sat, 10 Oct 2015 17:59:42 GMT
123 http request GET https://registry.npmjs.org/units-css
124 verbose request uri https://registry.npmjs.org/parse-css-font
125 verbose request no auth needed
126 info attempt registry request try #1 at 4:39:31 PM
127 verbose etag W/"560f12a3-1df4"
128 verbose lastModified Fri, 02 Oct 2015 23:26:27 GMT
129 http request GET https://registry.npmjs.org/parse-css-font
130 verbose request uri https://registry.npmjs.org/nan
131 verbose request no auth needed
132 info attempt registry request try #1 at 4:39:31 PM
133 verbose etag W/"592dfb8f-1f9f8"
134 verbose lastModified Tue, 30 May 2017 23:09:03 GMT
135 http request GET https://registry.npmjs.org/nan
136 http 304 https://registry.npmjs.org/nan
137 verbose headers { date: 'Sun, 04 Jun 2017 23:39:26 GMT',
137 verbose headers via: '1.1 varnish',
137 verbose headers 'cache-control': 'max-age=300',
137 verbose headers etag: 'W/"592dfb8f-1f9f8"',
137 verbose headers age: '117',
137 verbose headers connection: 'keep-alive',
137 verbose headers 'x-served-by': 'cache-lax8632-LAX',
137 verbose headers 'x-cache': 'HIT',
137 verbose headers 'x-cache-hits': '1',
137 verbose headers 'x-timer': 'S1496619567.638134,VS0,VE1',
137 verbose headers vary: 'Accept-Encoding' }
138 silly get cb [ 304,
138 silly get { date: 'Sun, 04 Jun 2017 23:39:26 GMT',
138 silly get via: '1.1 varnish',
138 silly get 'cache-control': 'max-age=300',
138 silly get etag: 'W/"592dfb8f-1f9f8"',
138 silly get age: '117',
138 silly get connection: 'keep-alive',
138 silly get 'x-served-by': 'cache-lax8632-LAX',
138 silly get 'x-cache': 'HIT',
138 silly get 'x-cache-hits': '1',
138 silly get 'x-timer': 'S1496619567.638134,VS0,VE1',
138 silly get vary: 'Accept-Encoding' } ]
139 verbose etag https://registry.npmjs.org/nan from cache
140 verbose get saving nan to C:\Users\Michelle\AppData\Roaming\npm-cache\registry.npmjs.org\nan\.cache.json
141 verbose correctMkdir C:\Users\Michelle\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
142 silly resolveWithNewModule [email protected] checking installable status
143 silly cache add args [ 'nan@^2.4.0', null ]
144 verbose cache add spec nan@^2.4.0
145 silly cache add parsed spec Result {
145 silly cache add raw: 'nan@^2.4.0',
145 silly cache add scope: null,
145 silly cache add escapedName: 'nan',
145 silly cache add name: 'nan',
145 silly cache add rawSpec: '^2.4.0',
145 silly cache add spec: '>=2.4.0 <3.0.0',
145 silly cache add type: 'range' }
146 silly addNamed nan@>=2.4.0 <3.0.0
147 verbose addNamed ">=2.4.0 <3.0.0" is a valid semver range for nan
148 silly addNameRange { name: 'nan', range: '>=2.4.0 <3.0.0', hasData: false }
149 silly mapToRegistry name nan
150 silly mapToRegistry using default registry
151 silly mapToRegistry registry https://registry.npmjs.org/
152 silly mapToRegistry data Result {
152 silly mapToRegistry raw: 'nan',
152 silly mapToRegistry scope: null,
152 silly mapToRegistry escapedName: 'nan',
152 silly mapToRegistry name: 'nan',
152 silly mapToRegistry rawSpec: '',
152 silly mapToRegistry spec: 'latest',
152 silly mapToRegistry type: 'tag' }
153 silly mapToRegistry uri https://registry.npmjs.org/nan
154 verbose addNameRange registry:https://registry.npmjs.org/nan not in flight; fetching
155 http 304 https://registry.npmjs.org/units-css
156 verbose headers { date: 'Sun, 04 Jun 2017 23:39:26 GMT',
156 verbose headers via: '1.1 varnish',
156 verbose headers 'cache-control': 'max-age=300',
156 verbose headers etag: 'W/"5619520e-39a2"',
156 verbose headers age: '0',
156 verbose headers connection: 'keep-alive',
156 verbose headers 'x-served-by': 'cache-lax8628-LAX',
156 verbose headers 'x-cache': 'HIT',
156 verbose headers 'x-cache-hits': '1',
156 verbose headers 'x-timer': 'S1496619567.617910,VS0,VE31',
156 verbose headers vary: 'Accept-Encoding' }
157 silly get cb [ 304,
157 silly get { date: 'Sun, 04 Jun 2017 23:39:26 GMT',
157 silly get via: '1.1 varnish',
157 silly get 'cache-control': 'max-age=300',
157 silly get etag: 'W/"5619520e-39a2"',
157 silly get age: '0',
157 silly get connection: 'keep-alive',
157 silly get 'x-served-by': 'cache-lax8628-LAX',
157 silly get 'x-cache': 'HIT',
157 silly get 'x-cache-hits': '1',
157 silly get 'x-timer': 'S1496619567.617910,VS0,VE31',
157 silly get vary: 'Accept-Encoding' } ]
158 verbose etag https://registry.npmjs.org/units-css from cache
159 verbose get saving units-css to C:\Users\Michelle\AppData\Roaming\npm-cache\registry.npmjs.org\units-css\.cache.json
160 verbose correctMkdir C:\Users\Michelle\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
161 verbose get https://registry.npmjs.org/nan not expired, no request
162 silly addNameRange number 2 { name: 'nan', range: '>=2.4.0 <3.0.0', hasData: true }
163 silly addNameRange versions [ 'nan',
163 silly addNameRange [ '0.3.0-wip',
163 silly addNameRange '0.3.0-wip2',
163 silly addNameRange '0.3.0',
163 silly addNameRange '0.3.1',
163 silly addNameRange '0.3.2',
163 silly addNameRange '0.4.0',
163 silly addNameRange '0.4.1',
163 silly addNameRange '0.4.2',
163 silly addNameRange '0.4.3',
163 silly addNameRange '0.4.4',
163 silly addNameRange '0.5.0',
163 silly addNameRange '0.5.1',
163 silly addNameRange '0.5.2',
163 silly addNameRange '0.6.0',
163 silly addNameRange '0.7.0',
163 silly addNameRange '0.7.1',
163 silly addNameRange '0.8.0',
163 silly addNameRange '1.0.0',
163 silly addNameRange '1.1.0',
163 silly addNameRange '1.1.1',
163 silly addNameRange '1.1.2',
163 silly addNameRange '1.2.0',
163 silly addNameRange '1.3.0',
163 silly addNameRange '1.4.0',
163 silly addNameRange '1.4.1',
163 silly addNameRange '1.5.0',
163 silly addNameRange '1.4.2',
163 silly addNameRange '1.4.3',
163 silly addNameRange '1.5.1',
163 silly addNameRange '1.5.2',
163 silly addNameRange '1.6.0',
163 silly addNameRange '1.5.3',
163 silly addNameRange '1.6.1',
163 silly addNameRange '1.6.2',
163 silly addNameRange '1.7.0',
163 silly addNameRange '1.8.0',
163 silly addNameRange '1.8.1',
163 silly addNameRange '1.8.2',
163 silly addNameRange '1.8.3',
163 silly addNameRange '1.8.4',
163 silly addNameRange '1.9.0',
163 silly addNameRange '2.0.0',
163 silly addNameRange '2.0.1',
163 silly addNameRange '2.0.2',
163 silly addNameRange '2.0.3',
163 silly addNameRange '2.0.4',
163 silly addNameRange '2.0.5',
163 silly addNameRange '2.0.6',
163 silly addNameRange '2.0.7',
163 silly addNameRange '2.0.8',
163 silly addNameRange '2.0.9',
163 silly addNameRange '2.1.0',
163 silly addNameRange '2.2.0',
163 silly addNameRange '2.2.1',
163 silly addNameRange '2.3.0',
163 silly addNameRange '2.3.1',
163 silly addNameRange '2.3.2',
163 silly addNameRange '2.3.3',
163 silly addNameRange '2.3.4',
163 silly addNameRange '2.3.5',
163 silly addNameRange '2.4.0',
163 silly addNameRange '2.5.0',
163 silly addNameRange '2.5.1',
163 silly addNameRange '2.6.0',
163 silly addNameRange '2.6.1',
163 silly addNameRange '2.6.2' ] ]
164 silly addNamed [email protected]
165 verbose addNamed "2.6.2" is a plain semver version for nan
166 silly cache afterAdd [email protected]
167 verbose afterAdd C:\Users\Michelle\AppData\Roaming\npm-cache\nan\2.6.2\package\package.json not in flight; writing
168 verbose correctMkdir C:\Users\Michelle\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
169 silly resolveWithNewModule [email protected] checking installable status
170 silly cache add args [ 'units-css@^0.4.0', null ]
171 verbose cache add spec units-css@^0.4.0
172 silly cache add parsed spec Result {
172 silly cache add raw: 'units-css@^0.4.0',
172 silly cache add scope: null,
172 silly cache add escapedName: 'units-css',
172 silly cache add name: 'units-css',
172 silly cache add rawSpec: '^0.4.0',
172 silly cache add spec: '>=0.4.0 <0.5.0',
172 silly cache add type: 'range' }
173 silly addNamed units-css@>=0.4.0 <0.5.0
174 verbose addNamed ">=0.4.0 <0.5.0" is a valid semver range for units-css
175 silly addNameRange { name: 'units-css', range: '>=0.4.0 <0.5.0', hasData: false }
176 silly mapToRegistry name units-css
177 silly mapToRegistry using default registry
178 silly mapToRegistry registry https://registry.npmjs.org/
179 silly mapToRegistry data Result {
179 silly mapToRegistry raw: 'units-css',
179 silly mapToRegistry scope: null,
179 silly mapToRegistry escapedName: 'units-css',
179 silly mapToRegistry name: 'units-css',
179 silly mapToRegistry rawSpec: '',
179 silly mapToRegistry spec: 'latest',
179 silly mapToRegistry type: 'tag' }
180 silly mapToRegistry uri https://registry.npmjs.org/units-css
181 verbose addNameRange registry:https://registry.npmjs.org/units-css not in flight; fetching
182 verbose afterAdd C:\Users\Michelle\AppData\Roaming\npm-cache\nan\2.6.2\package\package.json written
183 verbose get https://registry.npmjs.org/units-css not expired, no request
184 silly addNameRange number 2 { name: 'units-css', range: '>=0.4.0 <0.5.0', hasData: true }
185 silly addNameRange versions [ 'units-css', [ '0.0.0', '0.1.0', '0.2.0', '0.3.0', '0.4.0' ] ]
186 silly addNamed [email protected]
187 verbose addNamed "0.4.0" is a plain semver version for units-css
188 http 304 https://registry.npmjs.org/parse-css-font
189 verbose headers { date: 'Sun, 04 Jun 2017 23:39:26 GMT',
189 verbose headers via: '1.1 varnish',
189 verbose headers 'cache-control': 'max-age=300',
189 verbose headers etag: 'W/"560f12a3-1df4"',
189 verbose headers age: '0',
189 verbose headers connection: 'keep-alive',
189 verbose headers 'x-served-by': 'cache-lax8623-LAX',
189 verbose headers 'x-cache': 'MISS',
189 verbose headers 'x-cache-hits': '0',
189 verbose headers 'x-timer': 'S1496619567.637658,VS0,VE30',
189 verbose headers vary: 'Accept-Encoding' }
190 silly get cb [ 304,
190 silly get { date: 'Sun, 04 Jun 2017 23:39:26 GMT',
190 silly get via: '1.1 varnish',
190 silly get 'cache-control': 'max-age=300',
190 silly get etag: 'W/"560f12a3-1df4"',
190 silly get age: '0',
190 silly get connection: 'keep-alive',
190 silly get 'x-served-by': 'cache-lax8623-LAX',
190 silly get 'x-cache': 'MISS',
190 silly get 'x-cache-hits': '0',
190 silly get 'x-timer': 'S1496619567.637658,VS0,VE30',
190 silly get vary: 'Accept-Encoding' } ]
191 verbose etag https://registry.npmjs.org/parse-css-font from cache
192 verbose get saving parse-css-font to C:\Users\Michelle\AppData\Roaming\npm-cache\registry.npmjs.org\parse-css-font\.cache.json
193 verbose correctMkdir C:\Users\Michelle\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
194 silly cache afterAdd [email protected]
195 verbose afterAdd C:\Users\Michelle\AppData\Roaming\npm-cache\units-css\0.4.0\package\package.json not in flight; writing
196 verbose correctMkdir C:\Users\Michelle\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
197 verbose afterAdd C:\Users\Michelle\AppData\Roaming\npm-cache\units-css\0.4.0\package\package.json written
198 silly resolveWithNewModule [email protected] checking installable status
199 silly cache add args [ 'parse-css-font@^2.0.2', null ]
200 verbose cache add spec parse-css-font@^2.0.2
201 silly cache add parsed spec Result {
201 silly cache add raw: 'parse-css-font@^2.0.2',
201 silly cache add scope: null,
201 silly cache add escapedName: 'parse-css-font',
201 silly cache add name: 'parse-css-font',
201 silly cache add rawSpec: '^2.0.2',
201 silly cache add spec: '>=2.0.2 <3.0.0',
201 silly cache add type: 'range' }
202 silly addNamed parse-css-font@>=2.0.2 <3.0.0
203 verbose addNamed ">=2.0.2 <3.0.0" is a valid semver range for parse-css-font
204 silly addNameRange { name: 'parse-css-font',
204 silly addNameRange range: '>=2.0.2 <3.0.0',
204 silly addNameRange hasData: false }
205 silly mapToRegistry name parse-css-font
206 silly mapToRegistry using default registry
207 silly mapToRegistry registry https://registry.npmjs.org/
208 silly mapToRegistry data Result {
208 silly mapToRegistry raw: 'parse-css-font',
208 silly mapToRegistry scope: null,
208 silly mapToRegistry escapedName: 'parse-css-font',
208 silly mapToRegistry name: 'parse-css-font',
208 silly mapToRegistry rawSpec: '',
208 silly mapToRegistry spec: 'latest',
208 silly mapToRegistry type: 'tag' }
209 silly mapToRegistry uri https://registry.npmjs.org/parse-css-font
210 verbose addNameRange registry:https://registry.npmjs.org/parse-css-font not in flight; fetching
211 verbose get https://registry.npmjs.org/parse-css-font not expired, no request
212 silly addNameRange number 2 { name: 'parse-css-font',
212 silly addNameRange range: '>=2.0.2 <3.0.0',
212 silly addNameRange hasData: true }
213 silly addNameRange versions [ 'parse-css-font', [ '1.0.0', '2.0.0', '2.0.1', '2.0.2' ] ]
214 silly addNamed [email protected]
215 verbose addNamed "2.0.2" is a plain semver version for parse-css-font
216 silly cache afterAdd [email protected]
217 verbose afterAdd C:\Users\Michelle\AppData\Roaming\npm-cache\parse-css-font\2.0.2\package\package.json not in flight; writing
218 verbose correctMkdir C:\Users\Michelle\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
219 verbose afterAdd C:\Users\Michelle\AppData\Roaming\npm-cache\parse-css-font\2.0.2\package\package.json written
220 silly fetchNamedPackageData css-font-size-keywords
221 silly mapToRegistry name css-font-size-keywords
222 silly mapToRegistry using default registry
223 silly mapToRegistry registry https://registry.npmjs.org/
224 silly mapToRegistry data Result {
224 silly mapToRegistry raw: 'css-font-size-keywords',
224 silly mapToRegistry scope: null,
224 silly mapToRegistry escapedName: 'css-font-size-keywords',
224 silly mapToRegistry name: 'css-font-size-keywords',
224 silly mapToRegistry rawSpec: '',
224 silly mapToRegistry spec: 'latest',
224 silly mapToRegistry type: 'tag' }
225 silly mapToRegistry uri https://registry.npmjs.org/css-font-size-keywords
226 silly fetchNamedPackageData css-font-stretch-keywords
227 silly mapToRegistry name css-font-stretch-keywords
228 silly mapToRegistry using default registry
229 silly mapToRegistry registry https://registry.npmjs.org/
230 silly mapToRegistry data Result {
230 silly mapToRegistry raw: 'css-font-stretch-keywords',
230 silly mapToRegistry scope: null,
230 silly mapToRegistry escapedName: 'css-font-stretch-keywords',
230 silly mapToRegistry name: 'css-font-stretch-keywords',
230 silly mapToRegistry rawSpec: '',
230 silly mapToRegistry spec: 'latest',
230 silly mapToRegistry type: 'tag' }
231 silly mapToRegistry uri https://registry.npmjs.org/css-font-stretch-keywords
232 silly fetchNamedPackageData css-font-style-keywords
233 silly mapToRegistry name css-font-style-keywords
234 silly mapToRegistry using default registry
235 silly mapToRegistry registry https://registry.npmjs.org/
236 silly mapToRegistry data Result {
236 silly mapToRegistry raw: 'css-font-style-keywords',
236 silly mapToRegistry scope: null,
236 silly mapToRegistry escapedName: 'css-font-style-keywords',
236 silly mapToRegistry name: 'css-font-style-keywords',
236 silly mapToRegistry rawSpec: '',
236 silly mapToRegistry spec: 'latest',
236 silly mapToRegistry type: 'tag' }
237 silly mapToRegistry uri https://registry.npmjs.org/css-font-style-keywords
238 silly fetchNamedPackageData css-font-weight-keywords
239 silly mapToRegistry name css-font-weight-keywords
240 silly mapToRegistry using default registry
241 silly mapToRegistry registry https://registry.npmjs.org/
242 silly mapToRegistry data Result {
242 silly mapToRegistry raw: 'css-font-weight-keywords',
242 silly mapToRegistry scope: null,
242 silly mapToRegistry escapedName: 'css-font-weight-keywords',
242 silly mapToRegistry name: 'css-font-weight-keywords',
242 silly mapToRegistry rawSpec: '',
242 silly mapToRegistry spec: 'latest',
242 silly mapToRegistry type: 'tag' }
243 silly mapToRegistry uri https://registry.npmjs.org/css-font-weight-keywords
244 silly fetchNamedPackageData css-global-keywords
245 silly mapToRegistry name css-global-keywords
246 silly mapToRegistry using default registry
247 silly mapToRegistry registry https://registry.npmjs.org/
248 silly mapToRegistry data Result {
248 silly mapToRegistry raw: 'css-global-keywords',
248 silly mapToRegistry scope: null,
248 silly mapToRegistry escapedName: 'css-global-keywords',
248 silly mapToRegistry name: 'css-global-keywords',
248 silly mapToRegistry rawSpec: '',
248 silly mapToRegistry spec: 'latest',
248 silly mapToRegistry type: 'tag' }
249 silly mapToRegistry uri https://registry.npmjs.org/css-global-keywords
250 silly fetchNamedPackageData css-list-helpers
251 silly mapToRegistry name css-list-helpers
252 silly mapToRegistry using default registry
253 silly mapToRegistry registry https://registry.npmjs.org/
254 silly mapToRegistry data Result {
254 silly mapToRegistry raw: 'css-list-helpers',
254 silly mapToRegistry scope: null,
254 silly mapToRegistry escapedName: 'css-list-helpers',
254 silly mapToRegistry name: 'css-list-helpers',
254 silly mapToRegistry rawSpec: '',
254 silly mapToRegistry spec: 'latest',
254 silly mapToRegistry type: 'tag' }
255 silly mapToRegistry uri https://registry.npmjs.org/css-list-helpers
256 silly fetchNamedPackageData css-system-font-keywords
257 silly mapToRegistry name css-system-font-keywords
258 silly mapToRegistry using default registry
259 silly mapToRegistry registry https://registry.npmjs.org/
260 silly mapToRegistry data Result {
260 silly mapToRegistry raw: 'css-system-font-keywords',
260 silly mapToRegistry scope: null,
260 silly mapToRegistry escapedName: 'css-system-font-keywords',
260 silly mapToRegistry name: 'css-system-font-keywords',
260 silly mapToRegistry rawSpec: '',
260 silly mapToRegistry spec: 'latest',
260 silly mapToRegistry type: 'tag' }
261 silly mapToRegistry uri https://registry.npmjs.org/css-system-font-keywords
262 silly fetchNamedPackageData tcomb
263 silly mapToRegistry name tcomb
264 silly mapToRegistry using default registry
265 silly mapToRegistry registry https://registry.npmjs.org/
266 silly mapToRegistry data Result {
266 silly mapToRegistry raw: 'tcomb',
266 silly mapToRegistry scope: null,
266 silly mapToRegistry escapedName: 'tcomb',
266 silly mapToRegistry name: 'tcomb',
266 silly mapToRegistry rawSpec: '',
266 silly mapToRegistry spec: 'latest',
266 silly mapToRegistry type: 'tag' }
267 silly mapToRegistry uri https://registry.npmjs.org/tcomb
268 silly fetchNamedPackageData unquote
269 silly mapToRegistry name unquote
270 silly mapToRegistry using default registry
271 silly mapToRegistry registry https://registry.npmjs.org/
272 silly mapToRegistry data Result {
272 silly mapToRegistry raw: 'unquote',
272 silly mapToRegistry scope: null,
272 silly mapToRegistry escapedName: 'unquote',
272 silly mapToRegistry name: 'unquote',
272 silly mapToRegistry rawSpec: '',
272 silly mapToRegistry spec: 'latest',
272 silly mapToRegistry type: 'tag' }
273 silly mapToRegistry uri https://registry.npmjs.org/unquote
274 verbose request uri https://registry.npmjs.org/css-font-stretch-keywords
275 verbose request no auth needed
276 info attempt registry request try #1 at 4:39:32 PM
277 verbose etag W/"560f0d04-e3f"
278 verbose lastModified Fri, 02 Oct 2015 23:02:28 GMT
279 http request GET https://registry.npmjs.org/css-font-stretch-keywords
280 verbose request uri https://registry.npmjs.org/css-font-style-keywords
281 verbose request no auth needed
282 info attempt registry request try #1 at 4:39:32 PM
283 verbose etag W/"560f0ca8-ce3"
284 verbose lastModified Fri, 02 Oct 2015 23:00:56 GMT
285 http request GET https://registry.npmjs.org/css-font-style-keywords
286 verbose request uri https://registry.npmjs.org/css-font-size-keywords
287 verbose request no auth needed
288 info attempt registry request try #1 at 4:39:32 PM
289 verbose etag W/"5607c222-95b"
290 verbose lastModified Sun, 27 Sep 2015 10:17:06 GMT
291 http request GET https://registry.npmjs.org/css-font-size-keywords
292 verbose request uri https://registry.npmjs.org/css-font-weight-keywords
293 verbose request no auth needed
294 info attempt registry request try #1 at 4:39:32 PM
295 verbose etag W/"560f08dd-98d"
296 verbose lastModified Fri, 02 Oct 2015 22:44:45 GMT
297 http request GET https://registry.npmjs.org/css-font-weight-keywords
298 verbose request uri https://registry.npmjs.org/css-list-helpers
299 verbose request no auth needed
300 info attempt registry request try #1 at 4:39:32 PM
301 verbose etag W/"560e18ba-11aa"
302 verbose lastModified Fri, 02 Oct 2015 05:40:10 GMT
303 http request GET https://registry.npmjs.org/css-list-helpers
304 verbose request uri https://registry.npmjs.org/css-global-keywords
305 verbose request no auth needed
306 info attempt registry request try #1 at 4:39:32 PM
307 verbose etag W/"560f0d61-d10"
308 verbose lastModified Fri, 02 Oct 2015 23:04:01 GMT
309 http request GET https://registry.npmjs.org/css-global-keywords
310 verbose request uri https://registry.npmjs.org/css-system-font-keywords
311 verbose request no auth needed
312 info attempt registry request try #1 at 4:39:32 PM
313 verbose etag W/"560f10f3-908"
314 verbose lastModified Fri, 02 Oct 2015 23:19:15 GMT
315 http request GET https://registry.npmjs.org/css-system-font-keywords
316 verbose request uri https://registry.npmjs.org/tcomb
317 verbose request no auth needed
318 info attempt registry request try #1 at 4:39:32 PM
319 verbose etag W/"58c27389-171d4"
320 verbose lastModified Fri, 10 Mar 2017 09:36:09 GMT
321 http request GET https://registry.npmjs.org/tcomb
322 verbose request uri https://registry.npmjs.org/unquote
323 verbose request no auth needed
324 info attempt registry request try #1 at 4:39:32 PM
325 verbose etag W/"5509dc39-c2e"
326 verbose lastModified Wed, 18 Mar 2015 20:12:41 GMT
327 http request GET https://registry.npmjs.org/unquote
328 http 304 https://registry.npmjs.org/css-font-size-keywords
329 verbose headers { date: 'Sun, 04 Jun 2017 23:39:26 GMT',
329 verbose headers via: '1.1 varnish',
329 verbose headers 'cache-control': 'max-age=300',
329 verbose headers etag: 'W/"5607c222-95b"',
329 verbose headers age: '0',
329 verbose headers connection: 'keep-alive',
329 verbose headers 'x-served-by': 'cache-lax8623-LAX',
329 verbose headers 'x-cache': 'MISS',
329 verbose headers 'x-cache-hits': '0',
329 verbose headers 'x-timer': 'S1496619567.733807,VS0,VE30',
329 verbose headers vary: 'Accept-Encoding' }
330 silly get cb [ 304,
330 silly get { date: 'Sun, 04 Jun 2017 23:39:26 GMT',
330 silly get via: '1.1 varnish',
330 silly get 'cache-control': 'max-age=300',
330 silly get etag: 'W/"5607c222-95b"',
330 silly get age: '0',
330 silly get connection: 'keep-alive',
330 silly get 'x-served-by': 'cache-lax8623-LAX',
330 silly get 'x-cache': 'MISS',
330 silly get 'x-cache-hits': '0',
330 silly get 'x-timer': 'S1496619567.733807,VS0,VE30',
330 silly get vary: 'Accept-Encoding' } ]
331 verbose etag https://registry.npmjs.org/css-font-size-keywords from cache
332 verbose get saving css-font-size-keywords to C:\Users\Michelle\AppData\Roaming\npm-cache\registry.npmjs.org\css-font-size-keywords\.cache.json
333 verbose correctMkdir C:\Users\Michelle\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
334 silly resolveWithNewModule [email protected] checking installable status
335 silly cache add args [ 'css-font-size-keywords@^1.0.0', null ]
336 verbose cache add spec css-font-size-keywords@^1.0.0
337 silly cache add parsed spec Result {
337 silly cache add raw: 'css-font-size-keywords@^1.0.0',
337 silly cache add scope: null,
337 silly cache add escapedName: 'css-font-size-keywords',
337 silly cache add name: 'css-font-size-keywords',
337 silly cache add rawSpec: '^1.0.0',
337 silly cache add spec: '>=1.0.0 <2.0.0',
337 silly cache add type: 'range' }
338 silly addNamed css-font-size-keywords@>=1.0.0 <2.0.0
339 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for css-font-size-keywords
340 silly addNameRange { name: 'css-font-size-keywords',
340 silly addNameRange range: '>=1.0.0 <2.0.0',
340 silly addNameRange hasData: false }
341 silly mapToRegistry name css-font-size-keywords
342 silly mapToRegistry using default registry
343 silly mapToRegistry registry https://registry.npmjs.org/
344 silly mapToRegistry data Result {
344 silly mapToRegistry raw: 'css-font-size-keywords',
344 silly mapToRegistry scope: null,
344 silly mapToRegistry escapedName: 'css-font-size-keywords',
344 silly mapToRegistry name: 'css-font-size-keywords',
344 silly mapToRegistry rawSpec: '',
344 silly mapToRegistry spec: 'latest',
344 silly mapToRegistry type: 'tag' }
345 silly mapToRegistry uri https://registry.npmjs.org/css-font-size-keywords
346 verbose addNameRange registry:https://registry.npmjs.org/css-font-size-keywords not in flight; fetching
347 verbose get https://registry.npmjs.org/css-font-size-keywords not expired, no request
348 silly addNameRange number 2 { name: 'css-font-size-keywords',
348 silly addNameRange range: '>=1.0.0 <2.0.0',
348 silly addNameRange hasData: true }
349 silly addNameRange versions [ 'css-font-size-keywords', [ '1.0.0' ] ]
350 silly addNamed [email protected]
351 verbose addNamed "1.0.0" is a plain semver version for css-font-size-keywords
352 silly cache afterAdd [email protected]
353 verbose afterAdd C:\Users\Michelle\AppData\Roaming\npm-cache\css-font-size-keywords\1.0.0\package\package.json not in flight; writing
354 verbose correctMkdir C:\Users\Michelle\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
355 verbose afterAdd C:\Users\Michelle\AppData\Roaming\npm-cache\css-font-size-keywords\1.0.0\package\package.json written
356 http 304 https://registry.npmjs.org/css-global-keywords
357 verbose headers { date: 'Sun, 04 Jun 2017 23:39:26 GMT',
357 verbose headers via: '1.1 varnish',
357 verbose headers 'cache-control': 'max-age=300',
357 verbose headers etag: 'W/"560f0d61-d10"',
357 verbose headers age: '0',
357 verbose headers connection: 'keep-alive',
357 verbose headers 'x-served-by': 'cache-lax8645-LAX',
357 verbose headers 'x-cache': 'MISS',
357 verbose headers 'x-cache-hits': '0',
357 verbose headers 'x-timer': 'S1496619567.749778,VS0,VE30',
357 verbose headers vary: 'Accept-Encoding' }
358 silly get cb [ 304,
358 silly get { date: 'Sun, 04 Jun 2017 23:39:26 GMT',
358 silly get via: '1.1 varnish',
358 silly get 'cache-control': 'max-age=300',
358 silly get etag: 'W/"560f0d61-d10"',
358 silly get age: '0',
358 silly get connection: 'keep-alive',
358 silly get 'x-served-by': 'cache-lax8645-LAX',
358 silly get 'x-cache': 'MISS',
358 silly get 'x-cache-hits': '0',
358 silly get 'x-timer': 'S1496619567.749778,VS0,VE30',
358 silly get vary: 'Accept-Encoding' } ]
359 verbose etag https://registry.npmjs.org/css-global-keywords from cache
360 verbose get saving css-global-keywords to C:\Users\Michelle\AppData\Roaming\npm-cache\registry.npmjs.org\css-global-keywords\.cache.json
361 verbose correctMkdir C:\Users\Michelle\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
362 http 304 https://registry.npmjs.org/css-list-helpers
363 verbose headers { date: 'Sun, 04 Jun 2017 23:39:26 GMT',
363 verbose headers via: '1.1 varnish',
363 verbose headers 'cache-control': 'max-age=300',
363 verbose headers etag: 'W/"560e18ba-11aa"',
363 verbose headers age: '0',
363 verbose headers connection: 'keep-alive',
363 verbose headers 'x-served-by': 'cache-lax8631-LAX',
363 verbose headers 'x-cache': 'MISS',
363 verbose headers 'x-cache-hits': '0',
363 verbose headers 'x-timer': 'S1496619567.751862,VS0,VE31',
363 verbose headers vary: 'Accept-Encoding' }
364 silly get cb [ 304,
364 silly get { date: 'Sun, 04 Jun 2017 23:39:26 GMT',
364 silly get via: '1.1 varnish',
364 silly get 'cache-control': 'max-age=300',
364 silly get etag: 'W/"560e18ba-11aa"',
364 silly get age: '0',
364 silly get connection: 'keep-alive',
364 silly get 'x-served-by': 'cache-lax8631-LAX',
364 silly get 'x-cache': 'MISS',
364 silly get 'x-cache-hits': '0',
364 silly get 'x-timer': 'S1496619567.751862,VS0,VE31',
364 silly get vary: 'Accept-Encoding' } ]
365 verbose etag https://registry.npmjs.org/css-list-helpers from cache
366 verbose get saving css-list-helpers to C:\Users\Michelle\AppData\Roaming\npm-cache\registry.npmjs.org\css-list-helpers\.cache.json
367 verbose correctMkdir C:\Users\Michelle\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
368 http 304 https://registry.npmjs.org/css-system-font-keywords
369 verbose headers { date: 'Sun, 04 Jun 2017 23:39:26 GMT',
369 verbose headers via: '1.1 varnish',
369 verbose headers 'cache-control': 'max-age=300',
369 verbose headers etag: 'W/"560f10f3-908"',
369 verbose headers age: '0',
369 verbose headers connection: 'keep-alive',
369 verbose headers 'x-served-by': 'cache-lax8642-LAX',
369 verbose headers 'x-cache': 'MISS',
369 verbose headers 'x-cache-hits': '0',
369 verbose headers 'x-timer': 'S1496619567.752311,VS0,VE31',
369 verbose headers vary: 'Accept-Encoding' }
370 silly get cb [ 304,
370 silly get { date: 'Sun, 04 Jun 2017 23:39:26 GMT',
370 silly get via: '1.1 varnish',
370 silly get 'cache-control': 'max-age=300',
370 silly get etag: 'W/"560f10f3-908"',
370 silly get age: '0',
370 silly get connection: 'keep-alive',
370 silly get 'x-served-by': 'cache-lax8642-LAX',
370 silly get 'x-cache': 'MISS',
370 silly get 'x-cache-hits': '0',
370 silly get 'x-timer': 'S1496619567.752311,VS0,VE31',
370 silly get vary: 'Accept-Encoding' } ]
371 verbose etag https://registry.npmjs.org/css-system-font-keywords from cache
372 verbose get saving css-system-font-keywords to C:\Users\Michelle\AppData\Roaming\npm-cache\registry.npmjs.org\css-system-font-keywords\.cache.json
373 verbose correctMkdir C:\Users\Michelle\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
374 http 304 https://registry.npmjs.org/unquote
375 verbose headers { date: 'Sun, 04 Jun 2017 23:39:26 GMT',
375 verbose headers via: '1.1 varnish',
375 verbose headers 'cache-control': 'max-age=300',
375 verbose headers etag: 'W/"5509dc39-c2e"',
375 verbose headers age: '0',
375 verbose headers connection: 'keep-alive',
375 verbose headers 'x-served-by': 'cache-lax8628-LAX',
375 verbose headers 'x-cache': 'MISS',
375 verbose headers 'x-cache-hits': '0',
375 verbose headers 'x-timer': 'S1496619567.753652,VS0,VE31',
375 verbose headers vary: 'Accept-Encoding' }
376 silly get cb [ 304,
376 silly get { date: 'Sun, 04 Jun 2017 23:39:26 GMT',
376 silly get via: '1.1 varnish',
376 silly get 'cache-control': 'max-age=300',
376 silly get etag: 'W/"5509dc39-c2e"',
376 silly get age: '0',
376 silly get connection: 'keep-alive',
376 silly get 'x-served-by': 'cache-lax8628-LAX',
376 silly get 'x-cache': 'MISS',
376 silly get 'x-cache-hits': '0',
376 silly get 'x-timer': 'S1496619567.753652,VS0,VE31',
376 silly get vary: 'Accept-Encoding' } ]
377 verbose etag https://registry.npmjs.org/unquote from cache
378 verbose get saving unquote to C:\Users\Michelle\AppData\Roaming\npm-cache\registry.npmjs.org\unquote\.cache.json
379 verbose correctMkdir C:\Users\Michelle\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
380 silly resolveWithNewModule [email protected] checking installable status
381 silly cache add args [ 'css-system-font-keywords@^1.0.0', null ]
382 verbose cache add spec css-system-font-keywords@^1.0.0
383 silly cache add parsed spec Result {
383 silly cache add raw: 'css-system-font-keywords@^1.0.0',
383 silly cache add scope: null,
383 silly cache add escapedName: 'css-system-font-keywords',
383 silly cache add name: 'css-system-font-keywords',
383 silly cache add rawSpec: '^1.0.0',
383 silly cache add spec: '>=1.0.0 <2.0.0',
383 silly cache add type: 'range' }
384 silly addNamed css-system-font-keywords@>=1.0.0 <2.0.0
385 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for css-system-font-keywords
386 silly addNameRange { name: 'css-system-font-keywords',
386 silly addNameRange range: '>=1.0.0 <2.0.0',
386 silly addNameRange hasData: false }
387 silly mapToRegistry name css-system-font-keywords
388 silly mapToRegistry using default registry
389 silly mapToRegistry registry https://registry.npmjs.org/
390 silly mapToRegistry data Result {
390 silly mapToRegistry raw: 'css-system-font-keywords',
390 silly mapToRegistry scope: null,
390 silly mapToRegistry escapedName: 'css-system-font-keywords',
390 silly mapToRegistry name: 'css-system-font-keywords',
390 silly mapToRegistry rawSpec: '',
390 silly mapToRegistry spec: 'latest',
390 silly mapToRegistry type: 'tag' }
391 silly mapToRegistry uri https://registry.npmjs.org/css-system-font-keywords
392 verbose addNameRange registry:https://registry.npmjs.org/css-system-font-keywords not in flight; fetching
393 silly resolveWithNewModule [email protected] checking installable status
394 silly cache add args [ 'css-global-keywords@^1.0.1', null ]
395 verbose cache add spec css-global-keywords@^1.0.1
396 silly cache add parsed spec Result {
396 silly cache add raw: 'css-global-keywords@^1.0.1',
396 silly cache add scope: null,
396 silly cache add escapedName: 'css-global-keywords',
396 silly cache add name: 'css-global-keywords',
396 silly cache add rawSpec: '^1.0.1',
396 silly cache add spec: '>=1.0.1 <2.0.0',
396 silly cache add type: 'range' }
397 silly addNamed css-global-keywords@>=1.0.1 <2.0.0
398 verbose addNamed ">=1.0.1 <2.0.0" is a valid semver range for css-global-keywords
399 silly addNameRange { name: 'css-global-keywords',
399 silly addNameRange range: '>=1.0.1 <2.0.0',
399 silly addNameRange hasData: false }
400 silly mapToRegistry name css-global-keywords
401 silly mapToRegistry using default registry
402 silly mapToRegistry registry https://registry.npmjs.org/
403 silly mapToRegistry data Result {
403 silly mapToRegistry raw: 'css-global-keywords',
403 silly mapToRegistry scope: null,
403 silly mapToRegistry escapedName: 'css-global-keywords',
403 silly mapToRegistry name: 'css-global-keywords',
403 silly mapToRegistry rawSpec: '',