-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnpm.err
executable file
·8396 lines (8396 loc) · 433 KB
/
npm.err
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
npm info it worked if it ends with ok
npm verb cli [ '/usr/local/bin/node',
npm verb cli '/usr/local/bin/npm',
npm verb cli 'install',
npm verb cli '-ddd',
npm verb cli 'node-sass' ]
npm info using [email protected]
npm info using [email protected]
(node:70968) fs: re-evaluating native module sources is not supported. If you are using the graceful-fs module, please update it to a more recent version.
npm sill loadCurrentTree Starting
npm sill install loadCurrentTree
npm sill install readLocalPackageData
npm sill fetchPackageMetaData node-sass@^3.8.0
npm sill fetchNamedPackageData node-sass
npm sill mapToRegistry name node-sass
npm sill mapToRegistry using default registry
npm sill mapToRegistry registry https://registry.npm.taobao.org/
npm sill mapToRegistry data Result {
npm sill mapToRegistry raw: 'node-sass',
npm sill mapToRegistry scope: null,
npm sill mapToRegistry name: 'node-sass',
npm sill mapToRegistry rawSpec: '',
npm sill mapToRegistry spec: 'latest',
npm sill mapToRegistry type: 'tag' }
npm sill mapToRegistry uri https://registry.npm.taobao.org/node-sass
npm verb request uri https://registry.npm.taobao.org/node-sass
npm verb request no auth needed
npm info attempt registry request try #1 at 22:27:09
npm verb request id d31f4056a4cc167a
npm http request GET https://registry.npm.taobao.org/node-sass
npm http 200 https://registry.npm.taobao.org/node-sass
npm verb headers { date: 'Tue, 12 Jul 2016 14:27:09 GMT',
npm verb headers 'content-type': 'application/json; charset=utf-8',
npm verb headers 'content-length': '196959',
npm verb headers connection: 'keep-alive',
npm verb headers etag: '"3015f-GEr0HUq1fCD0ZjvPxW+HhQ"',
npm verb headers 'x-readtime': '109' }
npm sill get cb [ 200,
npm sill get { date: 'Tue, 12 Jul 2016 14:27:09 GMT',
npm sill get 'content-type': 'application/json; charset=utf-8',
npm sill get 'content-length': '196959',
npm sill get connection: 'keep-alive',
npm sill get etag: '"3015f-GEr0HUq1fCD0ZjvPxW+HhQ"',
npm sill get 'x-readtime': '109' } ]
npm verb get saving node-sass to /Users/wuchaoboy/.npm/registry.npm.taobao.org/node-sass/.cache.json
npm verb correctMkdir /Users/wuchaoboy/.npm correctMkdir not in flight; initializing
npm sill install normalizeTree
npm sill loadCurrentTree Finishing
npm sill loadIdealTree Starting
npm sill install loadIdealTree
npm sill cloneCurrentTree Starting
npm sill install cloneCurrentTreeToIdealTree
npm sill cloneCurrentTree Finishing
npm sill loadShrinkwrap Starting
npm sill install loadShrinkwrap
npm sill loadShrinkwrap Finishing
npm sill loadAllDepsIntoIdealTree Starting
npm sill install loadAllDepsIntoIdealTree
npm sill resolveWithNewModule [email protected] checking installable status
npm sill cache add args [ 'node-sass@^3.8.0', null ]
npm verb cache add spec node-sass@^3.8.0
npm sill cache add parsed spec Result {
npm sill cache add raw: 'node-sass@^3.8.0',
npm sill cache add scope: null,
npm sill cache add name: 'node-sass',
npm sill cache add rawSpec: '^3.8.0',
npm sill cache add spec: '>=3.8.0 <4.0.0',
npm sill cache add type: 'range' }
npm sill addNamed node-sass@>=3.8.0 <4.0.0
npm verb addNamed ">=3.8.0 <4.0.0" is a valid semver range for node-sass
npm sill addNameRange { name: 'node-sass', range: '>=3.8.0 <4.0.0', hasData: false }
npm sill mapToRegistry name node-sass
npm sill mapToRegistry using default registry
npm sill mapToRegistry registry https://registry.npm.taobao.org/
npm sill mapToRegistry data Result {
npm sill mapToRegistry raw: 'node-sass',
npm sill mapToRegistry scope: null,
npm sill mapToRegistry name: 'node-sass',
npm sill mapToRegistry rawSpec: '',
npm sill mapToRegistry spec: 'latest',
npm sill mapToRegistry type: 'tag' }
npm sill mapToRegistry uri https://registry.npm.taobao.org/node-sass
npm verb addNameRange registry:https://registry.npm.taobao.org/node-sass not in flight; fetching
npm verb get https://registry.npm.taobao.org/node-sass not expired, no request
npm sill addNameRange number 2 { name: 'node-sass', range: '>=3.8.0 <4.0.0', hasData: true }
npm sill addNameRange versions [ 'node-sass',
npm sill addNameRange [ '3.8.0',
npm sill addNameRange '3.7.0',
npm sill addNameRange '3.6.0',
npm sill addNameRange '3.5.3',
npm sill addNameRange '3.5.2',
npm sill addNameRange '3.5.1',
npm sill addNameRange '3.5.0-beta.1',
npm sill addNameRange '3.4.2',
npm sill addNameRange '3.4.1',
npm sill addNameRange '3.4.0',
npm sill addNameRange '3.4.0-beta.2',
npm sill addNameRange '3.4.0-beta1',
npm sill addNameRange '3.3.3',
npm sill addNameRange '3.3.2',
npm sill addNameRange '3.3.1',
npm sill addNameRange '3.3.0',
npm sill addNameRange '3.2.0',
npm sill addNameRange '3.1.2',
npm sill addNameRange '3.1.1',
npm sill addNameRange '3.1.0',
npm sill addNameRange '3.0.0',
npm sill addNameRange '3.0.0-beta.7',
npm sill addNameRange '3.0.0-beta.5',
npm sill addNameRange '2.1.1',
npm sill addNameRange '2.1.0',
npm sill addNameRange '3.0.0-beta.4',
npm sill addNameRange '3.0.0-beta.3',
npm sill addNameRange '3.0.0-beta.2',
npm sill addNameRange '3.0.0-alpha.0',
npm sill addNameRange '2.0.1',
npm sill addNameRange '2.0.0',
npm sill addNameRange '2.0.0-beta',
npm sill addNameRange '1.2.3',
npm sill addNameRange '1.2.2',
npm sill addNameRange '1.2.1',
npm sill addNameRange '1.2.0',
npm sill addNameRange '1.1.4',
npm sill addNameRange '1.1.3',
npm sill addNameRange '1.1.2',
npm sill addNameRange '1.1.1',
npm sill addNameRange '1.1.0',
npm sill addNameRange '1.0.2',
npm sill addNameRange '1.0.3',
npm sill addNameRange '1.0.2-alpha',
npm sill addNameRange '1.0.1',
npm sill addNameRange '1.0.0',
npm sill addNameRange '0.9.6',
npm sill addNameRange '0.9.5',
npm sill addNameRange '0.9.5-rc1',
npm sill addNameRange '0.9.4',
npm sill addNameRange '0.9.4-rc1',
npm sill addNameRange '0.9.3',
npm sill addNameRange '0.9.2',
npm sill addNameRange '0.9.1',
npm sill addNameRange '0.9.0',
npm sill addNameRange '0.8.6',
npm sill addNameRange '0.8.5',
npm sill addNameRange '0.6.2',
npm sill addNameRange '0.5.3',
npm sill addNameRange '0.6.7',
npm sill addNameRange '0.5.1',
npm sill addNameRange '0.8.4',
npm sill addNameRange '0.6.6',
npm sill addNameRange '0.6.5',
npm sill addNameRange '0.5.4',
npm sill addNameRange '0.5.2',
npm sill addNameRange '0.5.0',
npm sill addNameRange '0.4.1',
npm sill addNameRange '0.4.0',
npm sill addNameRange '0.3.0',
npm sill addNameRange '0.2.4',
npm sill addNameRange '0.8.3',
npm sill addNameRange '0.8.2',
npm sill addNameRange '0.8.1',
npm sill addNameRange '0.8.0',
npm sill addNameRange '0.7.0',
npm sill addNameRange '0.7.0-alpha',
npm sill addNameRange '0.6.4',
npm sill addNameRange '0.6.3',
npm sill addNameRange '0.6.1',
npm sill addNameRange '0.6.0',
npm sill addNameRange '0.4.4',
npm sill addNameRange '0.4.3',
npm sill addNameRange '0.4.2',
npm sill addNameRange '0.2.6',
npm sill addNameRange '0.2.5',
npm sill addNameRange '0.2.3',
npm sill addNameRange '0.2.2',
npm sill addNameRange '0.2.1',
npm sill addNameRange '0.2.0' ] ]
npm sill addNamed [email protected]
npm verb addNamed "3.8.0" is a plain semver version for node-sass
npm sill mapToRegistry name node-sass
npm sill mapToRegistry using default registry
npm sill mapToRegistry registry https://registry.npm.taobao.org/
npm sill mapToRegistry data Result {
npm sill mapToRegistry raw: 'node-sass',
npm sill mapToRegistry scope: null,
npm sill mapToRegistry name: 'node-sass',
npm sill mapToRegistry rawSpec: '',
npm sill mapToRegistry spec: 'latest',
npm sill mapToRegistry type: 'tag' }
npm sill mapToRegistry uri https://registry.npm.taobao.org/node-sass
npm verb addRemoteTarball https://registry.npm.taobao.org/node-sass/download/node-sass-3.8.0.tgz not in flight; adding
npm verb addRemoteTarball [ 'https://registry.npm.taobao.org/node-sass/download/node-sass-3.8.0.tgz',
npm verb addRemoteTarball 'ec0f89ae6625e1d990dc7ff713b275ea15dfee05' ]
npm info retry fetch attempt 1 at 22:27:11
npm info attempt registry request try #1 at 22:27:11
npm http fetch GET https://registry.npm.taobao.org/node-sass/download/node-sass-3.8.0.tgz
npm http fetch 200 https://registry.npm.taobao.org/node-sass/download/node-sass-3.8.0.tgz
npm sill fetchAndShaCheck shasum ec0f89ae6625e1d990dc7ff713b275ea15dfee05
npm verb addTmpTarball /tmp/npm-70968-3d576a09/registry.npm.taobao.org/node-sass/download/node-sass-3.8.0.tgz not in flight; adding
npm verb addTmpTarball already have metadata; skipping unpack for [email protected]
npm verb correctMkdir /Users/wuchaoboy/.npm correctMkdir not in flight; initializing
npm sill cache afterAdd [email protected]
npm verb afterAdd /Users/wuchaoboy/.npm/node-sass/3.8.0/package/package.json not in flight; writing
npm verb correctMkdir /Users/wuchaoboy/.npm correctMkdir not in flight; initializing
npm verb afterAdd /Users/wuchaoboy/.npm/node-sass/3.8.0/package/package.json written
npm sill fetchNamedPackageData async-foreach
npm sill mapToRegistry name async-foreach
npm sill mapToRegistry using default registry
npm sill mapToRegistry registry https://registry.npm.taobao.org/
npm sill mapToRegistry data Result {
npm sill mapToRegistry raw: 'async-foreach',
npm sill mapToRegistry scope: null,
npm sill mapToRegistry name: 'async-foreach',
npm sill mapToRegistry rawSpec: '',
npm sill mapToRegistry spec: 'latest',
npm sill mapToRegistry type: 'tag' }
npm sill mapToRegistry uri https://registry.npm.taobao.org/async-foreach
npm sill fetchNamedPackageData cross-spawn
npm sill mapToRegistry name cross-spawn
npm sill mapToRegistry using default registry
npm sill mapToRegistry registry https://registry.npm.taobao.org/
npm sill mapToRegistry data Result {
npm sill mapToRegistry raw: 'cross-spawn',
npm sill mapToRegistry scope: null,
npm sill mapToRegistry name: 'cross-spawn',
npm sill mapToRegistry rawSpec: '',
npm sill mapToRegistry spec: 'latest',
npm sill mapToRegistry type: 'tag' }
npm sill mapToRegistry uri https://registry.npm.taobao.org/cross-spawn
npm sill fetchNamedPackageData gaze
npm sill mapToRegistry name gaze
npm sill mapToRegistry using default registry
npm sill mapToRegistry registry https://registry.npm.taobao.org/
npm sill mapToRegistry data Result {
npm sill mapToRegistry raw: 'gaze',
npm sill mapToRegistry scope: null,
npm sill mapToRegistry name: 'gaze',
npm sill mapToRegistry rawSpec: '',
npm sill mapToRegistry spec: 'latest',
npm sill mapToRegistry type: 'tag' }
npm sill mapToRegistry uri https://registry.npm.taobao.org/gaze
npm sill fetchNamedPackageData glob
npm sill mapToRegistry name glob
npm sill mapToRegistry using default registry
npm sill mapToRegistry registry https://registry.npm.taobao.org/
npm sill mapToRegistry data Result {
npm sill mapToRegistry raw: 'glob',
npm sill mapToRegistry scope: null,
npm sill mapToRegistry name: 'glob',
npm sill mapToRegistry rawSpec: '',
npm sill mapToRegistry spec: 'latest',
npm sill mapToRegistry type: 'tag' }
npm sill mapToRegistry uri https://registry.npm.taobao.org/glob
npm sill fetchNamedPackageData in-publish
npm sill mapToRegistry name in-publish
npm sill mapToRegistry using default registry
npm sill mapToRegistry registry https://registry.npm.taobao.org/
npm sill mapToRegistry data Result {
npm sill mapToRegistry raw: 'in-publish',
npm sill mapToRegistry scope: null,
npm sill mapToRegistry name: 'in-publish',
npm sill mapToRegistry rawSpec: '',
npm sill mapToRegistry spec: 'latest',
npm sill mapToRegistry type: 'tag' }
npm sill mapToRegistry uri https://registry.npm.taobao.org/in-publish
npm sill fetchNamedPackageData lodash.clonedeep
npm sill mapToRegistry name lodash.clonedeep
npm sill mapToRegistry using default registry
npm sill mapToRegistry registry https://registry.npm.taobao.org/
npm sill mapToRegistry data Result {
npm sill mapToRegistry raw: 'lodash.clonedeep',
npm sill mapToRegistry scope: null,
npm sill mapToRegistry name: 'lodash.clonedeep',
npm sill mapToRegistry rawSpec: '',
npm sill mapToRegistry spec: 'latest',
npm sill mapToRegistry type: 'tag' }
npm sill mapToRegistry uri https://registry.npm.taobao.org/lodash.clonedeep
npm sill fetchNamedPackageData node-gyp
npm sill mapToRegistry name node-gyp
npm sill mapToRegistry using default registry
npm sill mapToRegistry registry https://registry.npm.taobao.org/
npm sill mapToRegistry data Result {
npm sill mapToRegistry raw: 'node-gyp',
npm sill mapToRegistry scope: null,
npm sill mapToRegistry name: 'node-gyp',
npm sill mapToRegistry rawSpec: '',
npm sill mapToRegistry spec: 'latest',
npm sill mapToRegistry type: 'tag' }
npm sill mapToRegistry uri https://registry.npm.taobao.org/node-gyp
npm sill fetchNamedPackageData sass-graph
npm sill mapToRegistry name sass-graph
npm sill mapToRegistry using default registry
npm sill mapToRegistry registry https://registry.npm.taobao.org/
npm sill mapToRegistry data Result {
npm sill mapToRegistry raw: 'sass-graph',
npm sill mapToRegistry scope: null,
npm sill mapToRegistry name: 'sass-graph',
npm sill mapToRegistry rawSpec: '',
npm sill mapToRegistry spec: 'latest',
npm sill mapToRegistry type: 'tag' }
npm sill mapToRegistry uri https://registry.npm.taobao.org/sass-graph
npm verb request uri https://registry.npm.taobao.org/async-foreach
npm verb request no auth needed
npm info attempt registry request try #1 at 22:27:12
npm http request GET https://registry.npm.taobao.org/async-foreach
npm verb request uri https://registry.npm.taobao.org/cross-spawn
npm verb request no auth needed
npm info attempt registry request try #1 at 22:27:12
npm http request GET https://registry.npm.taobao.org/cross-spawn
npm verb request uri https://registry.npm.taobao.org/gaze
npm verb request no auth needed
npm info attempt registry request try #1 at 22:27:12
npm http request GET https://registry.npm.taobao.org/gaze
npm verb request uri https://registry.npm.taobao.org/glob
npm verb request no auth needed
npm info attempt registry request try #1 at 22:27:12
npm http request GET https://registry.npm.taobao.org/glob
npm verb request uri https://registry.npm.taobao.org/in-publish
npm verb request no auth needed
npm info attempt registry request try #1 at 22:27:12
npm http request GET https://registry.npm.taobao.org/in-publish
npm verb request uri https://registry.npm.taobao.org/lodash.clonedeep
npm verb request no auth needed
npm info attempt registry request try #1 at 22:27:12
npm http request GET https://registry.npm.taobao.org/lodash.clonedeep
npm verb request uri https://registry.npm.taobao.org/node-gyp
npm verb request no auth needed
npm info attempt registry request try #1 at 22:27:12
npm http request GET https://registry.npm.taobao.org/node-gyp
npm verb request uri https://registry.npm.taobao.org/sass-graph
npm verb request no auth needed
npm info attempt registry request try #1 at 22:27:12
npm http request GET https://registry.npm.taobao.org/sass-graph
npm http 200 https://registry.npm.taobao.org/async-foreach
npm verb headers { date: 'Tue, 12 Jul 2016 14:27:12 GMT',
npm verb headers 'content-type': 'application/json; charset=utf-8',
npm verb headers 'content-length': '8412',
npm verb headers connection: 'keep-alive',
npm verb headers etag: '"20dc-3p1kdMpMuPP4r3tY7FmNeQ"',
npm verb headers 'x-readtime': '27' }
npm sill get cb [ 200,
npm sill get { date: 'Tue, 12 Jul 2016 14:27:12 GMT',
npm sill get 'content-type': 'application/json; charset=utf-8',
npm sill get 'content-length': '8412',
npm sill get connection: 'keep-alive',
npm sill get etag: '"20dc-3p1kdMpMuPP4r3tY7FmNeQ"',
npm sill get 'x-readtime': '27' } ]
npm verb get saving async-foreach to /Users/wuchaoboy/.npm/registry.npm.taobao.org/async-foreach/.cache.json
npm verb correctMkdir /Users/wuchaoboy/.npm correctMkdir not in flight; initializing
npm sill resolveWithNewModule [email protected] checking installable status
npm sill cache add args [ 'async-foreach@^0.1.3', null ]
npm verb cache add spec async-foreach@^0.1.3
npm sill cache add parsed spec Result {
npm sill cache add raw: 'async-foreach@^0.1.3',
npm sill cache add scope: null,
npm sill cache add name: 'async-foreach',
npm sill cache add rawSpec: '^0.1.3',
npm sill cache add spec: '>=0.1.3 <0.2.0',
npm sill cache add type: 'range' }
npm sill addNamed async-foreach@>=0.1.3 <0.2.0
npm verb addNamed ">=0.1.3 <0.2.0" is a valid semver range for async-foreach
npm sill addNameRange { name: 'async-foreach',
npm sill addNameRange range: '>=0.1.3 <0.2.0',
npm sill addNameRange hasData: false }
npm sill mapToRegistry name async-foreach
npm sill mapToRegistry using default registry
npm sill mapToRegistry registry https://registry.npm.taobao.org/
npm sill mapToRegistry data Result {
npm sill mapToRegistry raw: 'async-foreach',
npm sill mapToRegistry scope: null,
npm sill mapToRegistry name: 'async-foreach',
npm sill mapToRegistry rawSpec: '',
npm sill mapToRegistry spec: 'latest',
npm sill mapToRegistry type: 'tag' }
npm sill mapToRegistry uri https://registry.npm.taobao.org/async-foreach
npm verb addNameRange registry:https://registry.npm.taobao.org/async-foreach not in flight; fetching
npm verb get https://registry.npm.taobao.org/async-foreach not expired, no request
npm sill addNameRange number 2 { name: 'async-foreach', range: '>=0.1.3 <0.2.0', hasData: true }
npm sill addNameRange versions [ 'async-foreach', [ '0.1.3', '0.1.2' ] ]
npm sill addNamed [email protected]
npm verb addNamed "0.1.3" is a plain semver version for async-foreach
npm sill mapToRegistry name async-foreach
npm sill mapToRegistry using default registry
npm sill mapToRegistry registry https://registry.npm.taobao.org/
npm sill mapToRegistry data Result {
npm sill mapToRegistry raw: 'async-foreach',
npm sill mapToRegistry scope: null,
npm sill mapToRegistry name: 'async-foreach',
npm sill mapToRegistry rawSpec: '',
npm sill mapToRegistry spec: 'latest',
npm sill mapToRegistry type: 'tag' }
npm sill mapToRegistry uri https://registry.npm.taobao.org/async-foreach
npm verb addRemoteTarball https://registry.npm.taobao.org/async-foreach/download/async-foreach-0.1.3.tgz not in flight; adding
npm verb addRemoteTarball [ 'https://registry.npm.taobao.org/async-foreach/download/async-foreach-0.1.3.tgz',
npm verb addRemoteTarball '36121f845c0578172de419a97dbeb1d16ec34542' ]
npm info retry fetch attempt 1 at 22:27:12
npm info attempt registry request try #1 at 22:27:12
npm http fetch GET https://registry.npm.taobao.org/async-foreach/download/async-foreach-0.1.3.tgz
npm http fetch 200 https://registry.npm.taobao.org/async-foreach/download/async-foreach-0.1.3.tgz
npm sill fetchAndShaCheck shasum 36121f845c0578172de419a97dbeb1d16ec34542
npm verb addTmpTarball /tmp/npm-70968-3d576a09/registry.npm.taobao.org/async-foreach/download/async-foreach-0.1.3.tgz not in flight; adding
npm verb addTmpTarball already have metadata; skipping unpack for [email protected]
npm verb correctMkdir /Users/wuchaoboy/.npm correctMkdir not in flight; initializing
npm sill cache afterAdd [email protected]
npm verb afterAdd /Users/wuchaoboy/.npm/async-foreach/0.1.3/package/package.json not in flight; writing
npm verb correctMkdir /Users/wuchaoboy/.npm correctMkdir not in flight; initializing
npm verb afterAdd /Users/wuchaoboy/.npm/async-foreach/0.1.3/package/package.json written
npm http 200 https://registry.npm.taobao.org/in-publish
npm verb headers { date: 'Tue, 12 Jul 2016 14:27:12 GMT',
npm verb headers 'content-type': 'application/json; charset=utf-8',
npm verb headers 'content-length': '6173',
npm verb headers connection: 'keep-alive',
npm verb headers etag: '"181d-sUT8ThTbgyy2jhvozOfF/w"',
npm verb headers 'x-readtime': '17' }
npm sill get cb [ 200,
npm sill get { date: 'Tue, 12 Jul 2016 14:27:12 GMT',
npm sill get 'content-type': 'application/json; charset=utf-8',
npm sill get 'content-length': '6173',
npm sill get connection: 'keep-alive',
npm sill get etag: '"181d-sUT8ThTbgyy2jhvozOfF/w"',
npm sill get 'x-readtime': '17' } ]
npm verb get saving in-publish to /Users/wuchaoboy/.npm/registry.npm.taobao.org/in-publish/.cache.json
npm verb correctMkdir /Users/wuchaoboy/.npm correctMkdir not in flight; initializing
npm sill resolveWithNewModule [email protected] checking installable status
npm sill cache add args [ 'in-publish@^2.0.0', null ]
npm verb cache add spec in-publish@^2.0.0
npm sill cache add parsed spec Result {
npm sill cache add raw: 'in-publish@^2.0.0',
npm sill cache add scope: null,
npm sill cache add name: 'in-publish',
npm sill cache add rawSpec: '^2.0.0',
npm sill cache add spec: '>=2.0.0 <3.0.0',
npm sill cache add type: 'range' }
npm sill addNamed in-publish@>=2.0.0 <3.0.0
npm verb addNamed ">=2.0.0 <3.0.0" is a valid semver range for in-publish
npm sill addNameRange { name: 'in-publish', range: '>=2.0.0 <3.0.0', hasData: false }
npm sill mapToRegistry name in-publish
npm sill mapToRegistry using default registry
npm sill mapToRegistry registry https://registry.npm.taobao.org/
npm sill mapToRegistry data Result {
npm sill mapToRegistry raw: 'in-publish',
npm sill mapToRegistry scope: null,
npm sill mapToRegistry name: 'in-publish',
npm sill mapToRegistry rawSpec: '',
npm sill mapToRegistry spec: 'latest',
npm sill mapToRegistry type: 'tag' }
npm sill mapToRegistry uri https://registry.npm.taobao.org/in-publish
npm verb addNameRange registry:https://registry.npm.taobao.org/in-publish not in flight; fetching
npm verb get https://registry.npm.taobao.org/in-publish not expired, no request
npm sill addNameRange number 2 { name: 'in-publish', range: '>=2.0.0 <3.0.0', hasData: true }
npm sill addNameRange versions [ 'in-publish', [ '2.0.0', '1.1.1', '1.1.0', '1.0.0' ] ]
npm sill addNamed [email protected]
npm verb addNamed "2.0.0" is a plain semver version for in-publish
npm sill mapToRegistry name in-publish
npm sill mapToRegistry using default registry
npm sill mapToRegistry registry https://registry.npm.taobao.org/
npm sill mapToRegistry data Result {
npm sill mapToRegistry raw: 'in-publish',
npm sill mapToRegistry scope: null,
npm sill mapToRegistry name: 'in-publish',
npm sill mapToRegistry rawSpec: '',
npm sill mapToRegistry spec: 'latest',
npm sill mapToRegistry type: 'tag' }
npm sill mapToRegistry uri https://registry.npm.taobao.org/in-publish
npm verb addRemoteTarball https://registry.npm.taobao.org/in-publish/download/in-publish-2.0.0.tgz not in flight; adding
npm verb addRemoteTarball [ 'https://registry.npm.taobao.org/in-publish/download/in-publish-2.0.0.tgz',
npm verb addRemoteTarball 'e20ff5e3a2afc2690320b6dc552682a9c7fadf51' ]
npm info retry fetch attempt 1 at 22:27:12
npm info attempt registry request try #1 at 22:27:12
npm http fetch GET https://registry.npm.taobao.org/in-publish/download/in-publish-2.0.0.tgz
npm http 200 https://registry.npm.taobao.org/sass-graph
npm verb headers { date: 'Tue, 12 Jul 2016 14:27:12 GMT',
npm verb headers 'content-type': 'application/json; charset=utf-8',
npm verb headers 'content-length': '22023',
npm verb headers connection: 'keep-alive',
npm verb headers etag: '"5607-9dh8uhzmRtY1+BzvuG5V6w"',
npm verb headers 'x-readtime': '24' }
npm sill get cb [ 200,
npm sill get { date: 'Tue, 12 Jul 2016 14:27:12 GMT',
npm sill get 'content-type': 'application/json; charset=utf-8',
npm sill get 'content-length': '22023',
npm sill get connection: 'keep-alive',
npm sill get etag: '"5607-9dh8uhzmRtY1+BzvuG5V6w"',
npm sill get 'x-readtime': '24' } ]
npm verb get saving sass-graph to /Users/wuchaoboy/.npm/registry.npm.taobao.org/sass-graph/.cache.json
npm verb correctMkdir /Users/wuchaoboy/.npm correctMkdir not in flight; initializing
npm sill resolveWithNewModule [email protected] checking installable status
npm sill cache add args [ 'sass-graph@^2.1.1', null ]
npm verb cache add spec sass-graph@^2.1.1
npm sill cache add parsed spec Result {
npm sill cache add raw: 'sass-graph@^2.1.1',
npm sill cache add scope: null,
npm sill cache add name: 'sass-graph',
npm sill cache add rawSpec: '^2.1.1',
npm sill cache add spec: '>=2.1.1 <3.0.0',
npm sill cache add type: 'range' }
npm sill addNamed sass-graph@>=2.1.1 <3.0.0
npm verb addNamed ">=2.1.1 <3.0.0" is a valid semver range for sass-graph
npm sill addNameRange { name: 'sass-graph', range: '>=2.1.1 <3.0.0', hasData: false }
npm sill mapToRegistry name sass-graph
npm sill mapToRegistry using default registry
npm sill mapToRegistry registry https://registry.npm.taobao.org/
npm sill mapToRegistry data Result {
npm sill mapToRegistry raw: 'sass-graph',
npm sill mapToRegistry scope: null,
npm sill mapToRegistry name: 'sass-graph',
npm sill mapToRegistry rawSpec: '',
npm sill mapToRegistry spec: 'latest',
npm sill mapToRegistry type: 'tag' }
npm sill mapToRegistry uri https://registry.npm.taobao.org/sass-graph
npm verb addNameRange registry:https://registry.npm.taobao.org/sass-graph not in flight; fetching
npm verb get https://registry.npm.taobao.org/sass-graph not expired, no request
npm sill addNameRange number 2 { name: 'sass-graph', range: '>=2.1.1 <3.0.0', hasData: true }
npm sill addNameRange versions [ 'sass-graph',
npm sill addNameRange [ '2.1.2',
npm sill addNameRange '2.1.1',
npm sill addNameRange '2.1.0',
npm sill addNameRange '2.0.1',
npm sill addNameRange '2.0.0',
npm sill addNameRange '1.3.0',
npm sill addNameRange '1.2.0',
npm sill addNameRange '1.1.0',
npm sill addNameRange '1.0.3',
npm sill addNameRange '1.0.2',
npm sill addNameRange '1.0.1',
npm sill addNameRange '1.0.0',
npm sill addNameRange '0.1.2',
npm sill addNameRange '0.1.1',
npm sill addNameRange '0.1.0' ] ]
npm sill addNamed [email protected]
npm verb addNamed "2.1.2" is a plain semver version for sass-graph
npm sill mapToRegistry name sass-graph
npm sill mapToRegistry using default registry
npm sill mapToRegistry registry https://registry.npm.taobao.org/
npm sill mapToRegistry data Result {
npm sill mapToRegistry raw: 'sass-graph',
npm sill mapToRegistry scope: null,
npm sill mapToRegistry name: 'sass-graph',
npm sill mapToRegistry rawSpec: '',
npm sill mapToRegistry spec: 'latest',
npm sill mapToRegistry type: 'tag' }
npm sill mapToRegistry uri https://registry.npm.taobao.org/sass-graph
npm verb addRemoteTarball https://registry.npm.taobao.org/sass-graph/download/sass-graph-2.1.2.tgz not in flight; adding
npm verb addRemoteTarball [ 'https://registry.npm.taobao.org/sass-graph/download/sass-graph-2.1.2.tgz',
npm verb addRemoteTarball '965104be23e8103cb7e5f710df65935b317da57b' ]
npm info retry fetch attempt 1 at 22:27:12
npm info attempt registry request try #1 at 22:27:12
npm http fetch GET https://registry.npm.taobao.org/sass-graph/download/sass-graph-2.1.2.tgz
npm http 200 https://registry.npm.taobao.org/lodash.clonedeep
npm verb headers { date: 'Tue, 12 Jul 2016 14:27:12 GMT',
npm verb headers 'content-type': 'application/json; charset=utf-8',
npm verb headers 'content-length': '37881',
npm verb headers connection: 'keep-alive',
npm verb headers etag: '"93f9-UbcaMD0owINXU50AXPA3wg"',
npm verb headers 'x-readtime': '29' }
npm sill get cb [ 200,
npm sill get { date: 'Tue, 12 Jul 2016 14:27:12 GMT',
npm sill get 'content-type': 'application/json; charset=utf-8',
npm sill get 'content-length': '37881',
npm sill get connection: 'keep-alive',
npm sill get etag: '"93f9-UbcaMD0owINXU50AXPA3wg"',
npm sill get 'x-readtime': '29' } ]
npm verb get saving lodash.clonedeep to /Users/wuchaoboy/.npm/registry.npm.taobao.org/lodash.clonedeep/.cache.json
npm verb correctMkdir /Users/wuchaoboy/.npm correctMkdir not in flight; initializing
npm sill resolveWithNewModule [email protected] checking installable status
npm sill cache add args [ 'lodash.clonedeep@^4.3.2', null ]
npm verb cache add spec lodash.clonedeep@^4.3.2
npm sill cache add parsed spec Result {
npm sill cache add raw: 'lodash.clonedeep@^4.3.2',
npm sill cache add scope: null,
npm sill cache add name: 'lodash.clonedeep',
npm sill cache add rawSpec: '^4.3.2',
npm sill cache add spec: '>=4.3.2 <5.0.0',
npm sill cache add type: 'range' }
npm sill addNamed lodash.clonedeep@>=4.3.2 <5.0.0
npm verb addNamed ">=4.3.2 <5.0.0" is a valid semver range for lodash.clonedeep
npm sill addNameRange { name: 'lodash.clonedeep',
npm sill addNameRange range: '>=4.3.2 <5.0.0',
npm sill addNameRange hasData: false }
npm sill mapToRegistry name lodash.clonedeep
npm sill mapToRegistry using default registry
npm sill mapToRegistry registry https://registry.npm.taobao.org/
npm sill mapToRegistry data Result {
npm sill mapToRegistry raw: 'lodash.clonedeep',
npm sill mapToRegistry scope: null,
npm sill mapToRegistry name: 'lodash.clonedeep',
npm sill mapToRegistry rawSpec: '',
npm sill mapToRegistry spec: 'latest',
npm sill mapToRegistry type: 'tag' }
npm sill mapToRegistry uri https://registry.npm.taobao.org/lodash.clonedeep
npm verb addNameRange registry:https://registry.npm.taobao.org/lodash.clonedeep not in flight; fetching
npm verb get https://registry.npm.taobao.org/lodash.clonedeep not expired, no request
npm sill addNameRange number 2 { name: 'lodash.clonedeep',
npm sill addNameRange range: '>=4.3.2 <5.0.0',
npm sill addNameRange hasData: true }
npm sill addNameRange versions [ 'lodash.clonedeep',
npm sill addNameRange [ '4.3.2',
npm sill addNameRange '4.3.1',
npm sill addNameRange '4.3.0',
npm sill addNameRange '4.2.0',
npm sill addNameRange '4.1.1',
npm sill addNameRange '4.1.0',
npm sill addNameRange '4.0.4',
npm sill addNameRange '4.0.3',
npm sill addNameRange '4.0.2',
npm sill addNameRange '4.0.1',
npm sill addNameRange '4.0.0',
npm sill addNameRange '3.0.2',
npm sill addNameRange '3.0.1',
npm sill addNameRange '3.0.0',
npm sill addNameRange '2.4.1',
npm sill addNameRange '2.4.0',
npm sill addNameRange '2.3.0',
npm sill addNameRange '2.2.1',
npm sill addNameRange '2.2.0',
npm sill addNameRange '2.1.0',
npm sill addNameRange '2.0.0' ] ]
npm sill addNamed [email protected]
npm verb addNamed "4.3.2" is a plain semver version for lodash.clonedeep
npm sill mapToRegistry name lodash.clonedeep
npm sill mapToRegistry using default registry
npm sill mapToRegistry registry https://registry.npm.taobao.org/
npm sill mapToRegistry data Result {
npm sill mapToRegistry raw: 'lodash.clonedeep',
npm sill mapToRegistry scope: null,
npm sill mapToRegistry name: 'lodash.clonedeep',
npm sill mapToRegistry rawSpec: '',
npm sill mapToRegistry spec: 'latest',
npm sill mapToRegistry type: 'tag' }
npm sill mapToRegistry uri https://registry.npm.taobao.org/lodash.clonedeep
npm verb addRemoteTarball https://registry.npm.taobao.org/lodash.clonedeep/download/lodash.clonedeep-4.3.2.tgz not in flight; adding
npm verb addRemoteTarball [ 'https://registry.npm.taobao.org/lodash.clonedeep/download/lodash.clonedeep-4.3.2.tgz',
npm verb addRemoteTarball 'd0112c02c76b5223833aebc6a4b6e334f0d057de' ]
npm info retry fetch attempt 1 at 22:27:12
npm info attempt registry request try #1 at 22:27:12
npm http fetch GET https://registry.npm.taobao.org/lodash.clonedeep/download/lodash.clonedeep-4.3.2.tgz
npm http 200 https://registry.npm.taobao.org/cross-spawn
npm verb headers { date: 'Tue, 12 Jul 2016 14:27:12 GMT',
npm verb headers 'content-type': 'application/json; charset=utf-8',
npm verb headers 'content-length': '59671',
npm verb headers connection: 'keep-alive',
npm verb headers etag: '"e917-8PSRsVKU+EyDNRB7VdXdpg"',
npm verb headers 'x-readtime': '38' }
npm sill get cb [ 200,
npm sill get { date: 'Tue, 12 Jul 2016 14:27:12 GMT',
npm sill get 'content-type': 'application/json; charset=utf-8',
npm sill get 'content-length': '59671',
npm sill get connection: 'keep-alive',
npm sill get etag: '"e917-8PSRsVKU+EyDNRB7VdXdpg"',
npm sill get 'x-readtime': '38' } ]
npm verb get saving cross-spawn to /Users/wuchaoboy/.npm/registry.npm.taobao.org/cross-spawn/.cache.json
npm verb correctMkdir /Users/wuchaoboy/.npm correctMkdir not in flight; initializing
npm sill resolveWithNewModule [email protected] checking installable status
npm sill cache add args [ 'cross-spawn@^3.0.0', null ]
npm verb cache add spec cross-spawn@^3.0.0
npm sill cache add parsed spec Result {
npm sill cache add raw: 'cross-spawn@^3.0.0',
npm sill cache add scope: null,
npm sill cache add name: 'cross-spawn',
npm sill cache add rawSpec: '^3.0.0',
npm sill cache add spec: '>=3.0.0 <4.0.0',
npm sill cache add type: 'range' }
npm sill addNamed cross-spawn@>=3.0.0 <4.0.0
npm verb addNamed ">=3.0.0 <4.0.0" is a valid semver range for cross-spawn
npm sill addNameRange { name: 'cross-spawn', range: '>=3.0.0 <4.0.0', hasData: false }
npm sill mapToRegistry name cross-spawn
npm sill mapToRegistry using default registry
npm sill mapToRegistry registry https://registry.npm.taobao.org/
npm sill mapToRegistry data Result {
npm sill mapToRegistry raw: 'cross-spawn',
npm sill mapToRegistry scope: null,
npm sill mapToRegistry name: 'cross-spawn',
npm sill mapToRegistry rawSpec: '',
npm sill mapToRegistry spec: 'latest',
npm sill mapToRegistry type: 'tag' }
npm sill mapToRegistry uri https://registry.npm.taobao.org/cross-spawn
npm verb addNameRange registry:https://registry.npm.taobao.org/cross-spawn not in flight; fetching
npm verb get https://registry.npm.taobao.org/cross-spawn not expired, no request
npm sill addNameRange number 2 { name: 'cross-spawn', range: '>=3.0.0 <4.0.0', hasData: true }
npm sill addNameRange versions [ 'cross-spawn',
npm sill addNameRange [ '4.0.0',
npm sill addNameRange '3.0.1',
npm sill addNameRange '3.0.0',
npm sill addNameRange '2.2.3',
npm sill addNameRange '2.2.2',
npm sill addNameRange '2.2.0',
npm sill addNameRange '2.1.5',
npm sill addNameRange '2.1.4',
npm sill addNameRange '2.1.3',
npm sill addNameRange '2.1.2',
npm sill addNameRange '2.1.1',
npm sill addNameRange '2.1.0',
npm sill addNameRange '2.0.1',
npm sill addNameRange '2.0.0',
npm sill addNameRange '1.0.4',
npm sill addNameRange '1.0.3',
npm sill addNameRange '1.0.2',
npm sill addNameRange '1.0.1',
npm sill addNameRange '1.0.0',
npm sill addNameRange '0.4.1',
npm sill addNameRange '0.4.0',
npm sill addNameRange '0.3.0',
npm sill addNameRange '0.2.9',
npm sill addNameRange '0.2.8',
npm sill addNameRange '0.2.7',
npm sill addNameRange '0.2.6',
npm sill addNameRange '0.2.5',
npm sill addNameRange '0.2.4',
npm sill addNameRange '0.2.3',
npm sill addNameRange '0.2.2',
npm sill addNameRange '0.2.1',
npm sill addNameRange '0.2.0',
npm sill addNameRange '0.1.7',
npm sill addNameRange '0.1.6',
npm sill addNameRange '0.1.5',
npm sill addNameRange '0.1.4',
npm sill addNameRange '0.1.3',
npm sill addNameRange '0.1.2',
npm sill addNameRange '0.1.1',
npm sill addNameRange '0.1.0' ] ]
npm sill addNamed [email protected]
npm verb addNamed "3.0.1" is a plain semver version for cross-spawn
npm http fetch 200 https://registry.npm.taobao.org/in-publish/download/in-publish-2.0.0.tgz
npm sill mapToRegistry name cross-spawn
npm sill mapToRegistry using default registry
npm sill mapToRegistry registry https://registry.npm.taobao.org/
npm sill mapToRegistry data Result {
npm sill mapToRegistry raw: 'cross-spawn',
npm sill mapToRegistry scope: null,
npm sill mapToRegistry name: 'cross-spawn',
npm sill mapToRegistry rawSpec: '',
npm sill mapToRegistry spec: 'latest',
npm sill mapToRegistry type: 'tag' }
npm sill mapToRegistry uri https://registry.npm.taobao.org/cross-spawn
npm verb addRemoteTarball https://registry.npm.taobao.org/cross-spawn/download/cross-spawn-3.0.1.tgz not in flight; adding
npm verb addRemoteTarball [ 'https://registry.npm.taobao.org/cross-spawn/download/cross-spawn-3.0.1.tgz',
npm verb addRemoteTarball '1256037ecb9f0c5f79e3d6ef135e30770184b982' ]
npm info retry fetch attempt 1 at 22:27:12
npm info attempt registry request try #1 at 22:27:12
npm http fetch GET https://registry.npm.taobao.org/cross-spawn/download/cross-spawn-3.0.1.tgz
npm sill fetchAndShaCheck shasum e20ff5e3a2afc2690320b6dc552682a9c7fadf51
npm verb addTmpTarball /tmp/npm-70968-3d576a09/registry.npm.taobao.org/in-publish/download/in-publish-2.0.0.tgz not in flight; adding
npm verb addTmpTarball already have metadata; skipping unpack for [email protected]
npm verb correctMkdir /Users/wuchaoboy/.npm correctMkdir not in flight; initializing
npm sill cache afterAdd [email protected]
npm verb afterAdd /Users/wuchaoboy/.npm/in-publish/2.0.0/package/package.json not in flight; writing
npm verb correctMkdir /Users/wuchaoboy/.npm correctMkdir not in flight; initializing
npm verb afterAdd /Users/wuchaoboy/.npm/in-publish/2.0.0/package/package.json written
npm http 200 https://registry.npm.taobao.org/gaze
npm verb headers { date: 'Tue, 12 Jul 2016 14:27:12 GMT',
npm verb headers 'content-type': 'application/json; charset=utf-8',
npm verb headers 'content-length': '57907',
npm verb headers connection: 'keep-alive',
npm verb headers etag: '"e233-8myDy5QVK2b95sPg7tbouA"',
npm verb headers 'x-readtime': '53' }
npm sill get cb [ 200,
npm sill get { date: 'Tue, 12 Jul 2016 14:27:12 GMT',
npm sill get 'content-type': 'application/json; charset=utf-8',
npm sill get 'content-length': '57907',
npm sill get connection: 'keep-alive',
npm sill get etag: '"e233-8myDy5QVK2b95sPg7tbouA"',
npm sill get 'x-readtime': '53' } ]
npm verb get saving gaze to /Users/wuchaoboy/.npm/registry.npm.taobao.org/gaze/.cache.json
npm verb correctMkdir /Users/wuchaoboy/.npm correctMkdir not in flight; initializing
npm sill resolveWithNewModule [email protected] checking installable status
npm sill cache add args [ 'gaze@^1.0.0', null ]
npm verb cache add spec gaze@^1.0.0
npm sill cache add parsed spec Result {
npm sill cache add raw: 'gaze@^1.0.0',
npm sill cache add scope: null,
npm sill cache add name: 'gaze',
npm sill cache add rawSpec: '^1.0.0',
npm sill cache add spec: '>=1.0.0 <2.0.0',
npm sill cache add type: 'range' }
npm sill addNamed gaze@>=1.0.0 <2.0.0
npm verb addNamed ">=1.0.0 <2.0.0" is a valid semver range for gaze
npm sill addNameRange { name: 'gaze', range: '>=1.0.0 <2.0.0', hasData: false }
npm sill mapToRegistry name gaze
npm sill mapToRegistry using default registry
npm sill mapToRegistry registry https://registry.npm.taobao.org/
npm sill mapToRegistry data Result {
npm sill mapToRegistry raw: 'gaze',
npm sill mapToRegistry scope: null,
npm sill mapToRegistry name: 'gaze',
npm sill mapToRegistry rawSpec: '',
npm sill mapToRegistry spec: 'latest',
npm sill mapToRegistry type: 'tag' }
npm sill mapToRegistry uri https://registry.npm.taobao.org/gaze
npm verb addNameRange registry:https://registry.npm.taobao.org/gaze not in flight; fetching
npm http fetch 200 https://registry.npm.taobao.org/sass-graph/download/sass-graph-2.1.2.tgz
npm verb get https://registry.npm.taobao.org/gaze not expired, no request
npm sill addNameRange number 2 { name: 'gaze', range: '>=1.0.0 <2.0.0', hasData: true }
npm sill addNameRange versions [ 'gaze',
npm sill addNameRange [ '1.1.0',
npm sill addNameRange '1.0.0',
npm sill addNameRange '0.5.2',
npm sill addNameRange '0.6.4',
npm sill addNameRange '0.6.3',
npm sill addNameRange '0.6.2',
npm sill addNameRange '0.6.1',
npm sill addNameRange '0.6.0',
npm sill addNameRange '0.5.1',
npm sill addNameRange '0.5.0',
npm sill addNameRange '0.4.3',
npm sill addNameRange '0.4.2',
npm sill addNameRange '0.4.1',
npm sill addNameRange '0.4.0',
npm sill addNameRange '0.3.4',
npm sill addNameRange '0.3.3',
npm sill addNameRange '0.3.2',
npm sill addNameRange '0.3.1',
npm sill addNameRange '0.3.0',
npm sill addNameRange '0.2.2',
npm sill addNameRange '0.2.1',
npm sill addNameRange '0.2.0',
npm sill addNameRange '0.1.6',
npm sill addNameRange '0.1.5',
npm sill addNameRange '0.1.4',
npm sill addNameRange '0.1.3',
npm sill addNameRange '0.1.2',
npm sill addNameRange '0.1.1',
npm sill addNameRange '0.1.0' ] ]
npm sill addNamed [email protected]
npm verb addNamed "1.1.0" is a plain semver version for gaze
npm sill mapToRegistry name gaze
npm sill mapToRegistry using default registry
npm sill mapToRegistry registry https://registry.npm.taobao.org/
npm sill mapToRegistry data Result {
npm sill mapToRegistry raw: 'gaze',
npm sill mapToRegistry scope: null,
npm sill mapToRegistry name: 'gaze',
npm sill mapToRegistry rawSpec: '',
npm sill mapToRegistry spec: 'latest',
npm sill mapToRegistry type: 'tag' }
npm sill mapToRegistry uri https://registry.npm.taobao.org/gaze
npm verb addRemoteTarball https://registry.npm.taobao.org/gaze/download/gaze-1.1.0.tgz not in flight; adding
npm verb addRemoteTarball [ 'https://registry.npm.taobao.org/gaze/download/gaze-1.1.0.tgz',
npm verb addRemoteTarball '74d3ffb0110ede715c9f15bba56c6e9b851d3ce0' ]
npm sill fetchAndShaCheck shasum 965104be23e8103cb7e5f710df65935b317da57b
npm verb addTmpTarball /tmp/npm-70968-3d576a09/registry.npm.taobao.org/sass-graph/download/sass-graph-2.1.2.tgz not in flight; adding
npm verb addTmpTarball already have metadata; skipping unpack for [email protected]
npm verb correctMkdir /Users/wuchaoboy/.npm correctMkdir not in flight; initializing
npm info retry fetch attempt 1 at 22:27:13
npm info attempt registry request try #1 at 22:27:13
npm http fetch GET https://registry.npm.taobao.org/gaze/download/gaze-1.1.0.tgz
npm http fetch 200 https://registry.npm.taobao.org/cross-spawn/download/cross-spawn-3.0.1.tgz
npm sill cache afterAdd [email protected]
npm verb afterAdd /Users/wuchaoboy/.npm/sass-graph/2.1.2/package/package.json not in flight; writing
npm verb correctMkdir /Users/wuchaoboy/.npm correctMkdir not in flight; initializing
npm verb afterAdd /Users/wuchaoboy/.npm/sass-graph/2.1.2/package/package.json written
npm sill fetchAndShaCheck shasum 1256037ecb9f0c5f79e3d6ef135e30770184b982
npm verb addTmpTarball /tmp/npm-70968-3d576a09/registry.npm.taobao.org/cross-spawn/download/cross-spawn-3.0.1.tgz not in flight; adding
npm verb addTmpTarball already have metadata; skipping unpack for [email protected]
npm verb correctMkdir /Users/wuchaoboy/.npm correctMkdir not in flight; initializing
npm sill cache afterAdd [email protected]
npm verb afterAdd /Users/wuchaoboy/.npm/cross-spawn/3.0.1/package/package.json not in flight; writing
npm verb correctMkdir /Users/wuchaoboy/.npm correctMkdir not in flight; initializing
npm verb afterAdd /Users/wuchaoboy/.npm/cross-spawn/3.0.1/package/package.json written
npm http fetch 200 https://registry.npm.taobao.org/lodash.clonedeep/download/lodash.clonedeep-4.3.2.tgz
npm http fetch 200 https://registry.npm.taobao.org/gaze/download/gaze-1.1.0.tgz
npm sill fetchAndShaCheck shasum d0112c02c76b5223833aebc6a4b6e334f0d057de
npm verb addTmpTarball /tmp/npm-70968-3d576a09/registry.npm.taobao.org/lodash.clonedeep/download/lodash.clonedeep-4.3.2.tgz not in flight; adding
npm verb addTmpTarball already have metadata; skipping unpack for [email protected]
npm verb correctMkdir /Users/wuchaoboy/.npm correctMkdir not in flight; initializing
npm sill fetchAndShaCheck shasum 74d3ffb0110ede715c9f15bba56c6e9b851d3ce0
npm verb addTmpTarball /tmp/npm-70968-3d576a09/registry.npm.taobao.org/gaze/download/gaze-1.1.0.tgz not in flight; adding
npm verb addTmpTarball already have metadata; skipping unpack for [email protected]
npm verb correctMkdir /Users/wuchaoboy/.npm correctMkdir not in flight; initializing
npm sill cache afterAdd [email protected]
npm verb afterAdd /Users/wuchaoboy/.npm/lodash.clonedeep/4.3.2/package/package.json not in flight; writing
npm verb correctMkdir /Users/wuchaoboy/.npm correctMkdir not in flight; initializing
npm verb afterAdd /Users/wuchaoboy/.npm/lodash.clonedeep/4.3.2/package/package.json written
npm sill cache afterAdd [email protected]
npm verb afterAdd /Users/wuchaoboy/.npm/gaze/1.1.0/package/package.json not in flight; writing
npm verb correctMkdir /Users/wuchaoboy/.npm correctMkdir not in flight; initializing
npm verb afterAdd /Users/wuchaoboy/.npm/gaze/1.1.0/package/package.json written
npm http 200 https://registry.npm.taobao.org/node-gyp
npm verb headers { date: 'Tue, 12 Jul 2016 14:27:12 GMT',
npm verb headers 'content-type': 'application/json; charset=utf-8',
npm verb headers 'content-length': '159370',
npm verb headers connection: 'keep-alive',
npm verb headers etag: '"26e8a-TS910LF1olHCKo1P/Y+qFA"',
npm verb headers 'x-readtime': '96' }
npm sill get cb [ 200,
npm sill get { date: 'Tue, 12 Jul 2016 14:27:12 GMT',
npm sill get 'content-type': 'application/json; charset=utf-8',
npm sill get 'content-length': '159370',
npm sill get connection: 'keep-alive',
npm sill get etag: '"26e8a-TS910LF1olHCKo1P/Y+qFA"',
npm sill get 'x-readtime': '96' } ]
npm verb get saving node-gyp to /Users/wuchaoboy/.npm/registry.npm.taobao.org/node-gyp/.cache.json
npm verb correctMkdir /Users/wuchaoboy/.npm correctMkdir not in flight; initializing
npm sill resolveWithNewModule [email protected] checking installable status
npm sill cache add args [ 'node-gyp@^3.3.1', null ]
npm verb cache add spec node-gyp@^3.3.1
npm sill cache add parsed spec Result {
npm sill cache add raw: 'node-gyp@^3.3.1',
npm sill cache add scope: null,
npm sill cache add name: 'node-gyp',
npm sill cache add rawSpec: '^3.3.1',
npm sill cache add spec: '>=3.3.1 <4.0.0',
npm sill cache add type: 'range' }
npm sill addNamed node-gyp@>=3.3.1 <4.0.0
npm verb addNamed ">=3.3.1 <4.0.0" is a valid semver range for node-gyp
npm sill addNameRange { name: 'node-gyp', range: '>=3.3.1 <4.0.0', hasData: false }
npm sill mapToRegistry name node-gyp
npm sill mapToRegistry using default registry
npm sill mapToRegistry registry https://registry.npm.taobao.org/
npm sill mapToRegistry data Result {
npm sill mapToRegistry raw: 'node-gyp',
npm sill mapToRegistry scope: null,
npm sill mapToRegistry name: 'node-gyp',
npm sill mapToRegistry rawSpec: '',
npm sill mapToRegistry spec: 'latest',
npm sill mapToRegistry type: 'tag' }
npm sill mapToRegistry uri https://registry.npm.taobao.org/node-gyp
npm verb addNameRange registry:https://registry.npm.taobao.org/node-gyp not in flight; fetching
npm verb get https://registry.npm.taobao.org/node-gyp not expired, no request
npm sill addNameRange number 2 { name: 'node-gyp', range: '>=3.3.1 <4.0.0', hasData: true }
npm sill addNameRange versions [ 'node-gyp',
npm sill addNameRange [ '3.4.0',
npm sill addNameRange '3.3.1',
npm sill addNameRange '3.3.0',
npm sill addNameRange '3.2.1',
npm sill addNameRange '3.2.0',
npm sill addNameRange '3.1.0',
npm sill addNameRange '3.0.3',
npm sill addNameRange '3.0.2',
npm sill addNameRange '3.0.1',
npm sill addNameRange '3.0.0',
npm sill addNameRange '2.0.2',
npm sill addNameRange '2.0.1',
npm sill addNameRange '2.0.0',
npm sill addNameRange '1.0.3',
npm sill addNameRange '1.0.2',
npm sill addNameRange '1.0.1',
npm sill addNameRange '1.0.0',
npm sill addNameRange '0.13.1',
npm sill addNameRange '0.13.0',
npm sill addNameRange '0.10.1',
npm sill addNameRange '0.9.1',
npm sill addNameRange '0.9.0',
npm sill addNameRange '0.5.0',
npm sill addNameRange '0.12.2',
npm sill addNameRange '0.12.1',
npm sill addNameRange '0.12.0',
npm sill addNameRange '0.11.0',
npm sill addNameRange '0.10.10',
npm sill addNameRange '0.10.9',
npm sill addNameRange '0.10.8',
npm sill addNameRange '0.10.7',
npm sill addNameRange '0.10.6',
npm sill addNameRange '0.10.5',
npm sill addNameRange '0.10.4',
npm sill addNameRange '0.10.3',
npm sill addNameRange '0.10.2',
npm sill addNameRange '0.10.0',
npm sill addNameRange '0.9.6',
npm sill addNameRange '0.9.5',
npm sill addNameRange '0.9.4',
npm sill addNameRange '0.9.3',
npm sill addNameRange '0.9.2',
npm sill addNameRange '0.8.5',
npm sill addNameRange '0.8.4',
npm sill addNameRange '0.8.3',
npm sill addNameRange '0.8.2',
npm sill addNameRange '0.8.1',
npm sill addNameRange '0.8.0',
npm sill addNameRange '0.7.3',
npm sill addNameRange '0.7.2',
npm sill addNameRange '0.7.1',
npm sill addNameRange '0.7.0',
npm sill addNameRange '0.6.11',
npm sill addNameRange '0.6.10',
npm sill addNameRange '0.6.9',
npm sill addNameRange '0.6.8',
npm sill addNameRange '0.6.7',
npm sill addNameRange '0.6.6',
npm sill addNameRange '0.6.5',
npm sill addNameRange '0.6.4',
npm sill addNameRange '0.6.3',
npm sill addNameRange '0.6.2',
npm sill addNameRange '0.6.1',
npm sill addNameRange '0.6.0',
npm sill addNameRange '0.5.8',
npm sill addNameRange '0.5.7',
npm sill addNameRange '0.5.6',
npm sill addNameRange '0.5.5',
npm sill addNameRange '0.5.4',
npm sill addNameRange '0.5.3',
npm sill addNameRange '0.5.2',
npm sill addNameRange '0.5.1',
npm sill addNameRange '0.4.5',
npm sill addNameRange '0.4.4',
npm sill addNameRange '0.4.3',
npm sill addNameRange '0.4.2',
npm sill addNameRange '0.4.1',
npm sill addNameRange '0.4.0',
npm sill addNameRange '0.3.11',
npm sill addNameRange '0.3.10',
npm sill addNameRange '0.3.9',