-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnpm-debug.log.5d2c77a7223a7b19427535b20866f02f
9944 lines (9944 loc) · 603 KB
/
npm-debug.log.5d2c77a7223a7b19427535b20866f02f
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 [ '/usr/bin/node',
1 verbose cli '/usr/bin/npm',
1 verbose cli 'install',
1 verbose cli 'grunt',
1 verbose cli '--save-dev' ]
2 info using [email protected]
3 info using [email protected]
4 verbose node symlink /usr/bin/node
5 verbose install initial load of /vagrant/package.json
6 verbose installManyTop reading scoped package data from /vagrant/node_modules/abbrev/package.json
7 verbose installManyTop reading scoped package data from /vagrant/node_modules/accepts/package.json
8 verbose installManyTop reading scoped package data from /vagrant/node_modules/amdefine/package.json
9 verbose installManyTop reading scoped package data from /vagrant/node_modules/ansi-regex/package.json
10 verbose installManyTop reading scoped package data from /vagrant/node_modules/ansi-styles/package.json
11 verbose installManyTop reading scoped package data from /vagrant/node_modules/any-promise/package.json
12 verbose installManyTop reading scoped package data from /vagrant/node_modules/argparse/package.json
13 verbose installManyTop reading scoped package data from /vagrant/node_modules/array-find-index/package.json
14 verbose installManyTop reading scoped package data from /vagrant/node_modules/array-flatten/package.json
15 verbose installManyTop reading scoped package data from /vagrant/node_modules/async/package.json
16 verbose installManyTop reading scoped package data from /vagrant/node_modules/balanced-match/package.json
17 verbose installManyTop reading scoped package data from /vagrant/node_modules/base64-url/package.json
18 verbose installManyTop reading scoped package data from /vagrant/node_modules/basic-auth/package.json
19 verbose installManyTop reading scoped package data from /vagrant/node_modules/bluebird/package.json
20 verbose installManyTop reading scoped package data from /vagrant/node_modules/body-parser/package.json
21 verbose installManyTop reading scoped package data from /vagrant/node_modules/brace-expansion/package.json
22 verbose installManyTop reading scoped package data from /vagrant/node_modules/browserify-zlib/package.json
23 verbose installManyTop reading scoped package data from /vagrant/node_modules/bson/package.json
24 verbose installManyTop reading scoped package data from /vagrant/node_modules/buffer-crc32/package.json
25 verbose installManyTop reading scoped package data from /vagrant/node_modules/builtin-modules/package.json
26 verbose installManyTop reading scoped package data from /vagrant/node_modules/bytes/package.json
27 verbose installManyTop reading scoped package data from /vagrant/node_modules/camelcase/package.json
28 verbose installManyTop reading scoped package data from /vagrant/node_modules/camelcase-keys/package.json
29 verbose installManyTop reading scoped package data from /vagrant/node_modules/chai/package.json
30 verbose installManyTop reading scoped package data from /vagrant/node_modules/chalk/package.json
31 verbose installManyTop reading scoped package data from /vagrant/node_modules/clean-css/package.json
32 verbose installManyTop reading scoped package data from /vagrant/node_modules/coffee-script/package.json
33 verbose installManyTop reading scoped package data from /vagrant/node_modules/colors/package.json
34 verbose installManyTop reading scoped package data from /vagrant/node_modules/combined-stream/package.json
35 verbose installManyTop reading scoped package data from /vagrant/node_modules/commander/package.json
36 verbose installManyTop reading scoped package data from /vagrant/node_modules/component-emitter/package.json
37 verbose installManyTop reading scoped package data from /vagrant/node_modules/compressible/package.json
38 verbose installManyTop reading scoped package data from /vagrant/node_modules/compression/package.json
39 verbose installManyTop reading scoped package data from /vagrant/node_modules/concat-map/package.json
40 verbose installManyTop reading scoped package data from /vagrant/node_modules/concat-stream/package.json
41 verbose installManyTop reading scoped package data from /vagrant/node_modules/connect-flash/package.json
42 verbose installManyTop reading scoped package data from /vagrant/node_modules/connect-redis/package.json
43 verbose installManyTop reading scoped package data from /vagrant/node_modules/content-disposition/package.json
44 verbose installManyTop reading scoped package data from /vagrant/node_modules/content-type/package.json
45 verbose installManyTop reading scoped package data from /vagrant/node_modules/cookie/package.json
46 verbose installManyTop reading scoped package data from /vagrant/node_modules/cookie-parser/package.json
47 verbose installManyTop reading scoped package data from /vagrant/node_modules/cookie-signature/package.json
48 verbose installManyTop reading scoped package data from /vagrant/node_modules/cookiejar/package.json
49 verbose installManyTop reading scoped package data from /vagrant/node_modules/core-util-is/package.json
50 verbose installManyTop reading scoped package data from /vagrant/node_modules/csslint/package.json
51 verbose installManyTop reading scoped package data from /vagrant/node_modules/dateformat/package.json
52 verbose installManyTop reading scoped package data from /vagrant/node_modules/debug/package.json
53 verbose installManyTop reading scoped package data from /vagrant/node_modules/decamelize/package.json
54 verbose installManyTop reading scoped package data from /vagrant/node_modules/delayed-stream/package.json
55 verbose installManyTop reading scoped package data from /vagrant/node_modules/depd/package.json
56 verbose installManyTop reading scoped package data from /vagrant/node_modules/destroy/package.json
57 verbose installManyTop reading scoped package data from /vagrant/node_modules/double-ended-queue/package.json
58 verbose installManyTop reading scoped package data from /vagrant/node_modules/ee-first/package.json
59 verbose installManyTop reading scoped package data from /vagrant/node_modules/ejs/package.json
60 verbose installManyTop reading scoped package data from /vagrant/node_modules/error-ex/package.json
61 verbose installManyTop reading scoped package data from /vagrant/node_modules/escape-html/package.json
62 verbose installManyTop reading scoped package data from /vagrant/node_modules/escape-string-regexp/package.json
63 verbose installManyTop reading scoped package data from /vagrant/node_modules/esprima/package.json
64 verbose installManyTop reading scoped package data from /vagrant/node_modules/etag/package.json
65 verbose installManyTop reading scoped package data from /vagrant/node_modules/eventemitter2/package.json
66 verbose installManyTop reading scoped package data from /vagrant/node_modules/exit/package.json
67 verbose installManyTop reading scoped package data from /vagrant/node_modules/express/package.json
68 verbose installManyTop reading scoped package data from /vagrant/node_modules/express-session/package.json
69 verbose installManyTop reading scoped package data from /vagrant/node_modules/extend/package.json
70 verbose installManyTop reading scoped package data from /vagrant/node_modules/faye-websocket/package.json
71 verbose installManyTop reading scoped package data from /vagrant/node_modules/figures/package.json
72 verbose installManyTop reading scoped package data from /vagrant/node_modules/file-sync-cmp/package.json
73 verbose installManyTop reading scoped package data from /vagrant/node_modules/finalhandler/package.json
74 verbose installManyTop reading scoped package data from /vagrant/node_modules/find-up/package.json
75 verbose installManyTop reading scoped package data from /vagrant/node_modules/findup-sync/package.json
76 verbose installManyTop reading scoped package data from /vagrant/node_modules/form-data/package.json
77 verbose installManyTop reading scoped package data from /vagrant/node_modules/formatio/package.json
78 verbose installManyTop reading scoped package data from /vagrant/node_modules/formidable/package.json
79 verbose installManyTop reading scoped package data from /vagrant/node_modules/forwarded/package.json
80 verbose installManyTop reading scoped package data from /vagrant/node_modules/fresh/package.json
81 verbose installManyTop reading scoped package data from /vagrant/node_modules/gaze/package.json
82 verbose installManyTop reading scoped package data from /vagrant/node_modules/get-stdin/package.json
83 verbose installManyTop reading scoped package data from /vagrant/node_modules/getobject/package.json
84 verbose installManyTop reading scoped package data from /vagrant/node_modules/glob/package.json
85 verbose installManyTop reading scoped package data from /vagrant/node_modules/globule/package.json
86 verbose installManyTop reading scoped package data from /vagrant/node_modules/graceful-fs/package.json
87 verbose installManyTop reading scoped package data from /vagrant/node_modules/graceful-readlink/package.json
88 verbose installManyTop reading scoped package data from /vagrant/node_modules/grunt/package.json
89 verbose installManyTop reading scoped package data from /vagrant/node_modules/grunt-contrib-clean/package.json
90 verbose installManyTop reading scoped package data from /vagrant/node_modules/grunt-contrib-copy/package.json
91 verbose installManyTop reading scoped package data from /vagrant/node_modules/grunt-contrib-csslint/package.json
92 verbose installManyTop reading scoped package data from /vagrant/node_modules/grunt-contrib-cssmin/package.json
93 verbose installManyTop reading scoped package data from /vagrant/node_modules/grunt-contrib-jshint/package.json
94 verbose installManyTop reading scoped package data from /vagrant/node_modules/grunt-contrib-watch/package.json
95 verbose installManyTop reading scoped package data from /vagrant/node_modules/grunt-express-server/package.json
96 verbose installManyTop reading scoped package data from /vagrant/node_modules/grunt-htmlhint/package.json
97 verbose installManyTop reading scoped package data from /vagrant/node_modules/grunt-legacy-log/package.json
98 verbose installManyTop reading scoped package data from /vagrant/node_modules/grunt-legacy-log-utils/package.json
99 verbose installManyTop reading scoped package data from /vagrant/node_modules/grunt-legacy-util/package.json
100 verbose installManyTop reading scoped package data from /vagrant/node_modules/grunt-min/package.json
101 verbose installManyTop reading scoped package data from /vagrant/node_modules/grunt-mocha-test/package.json
102 verbose installManyTop reading scoped package data from /vagrant/node_modules/gzip-size/package.json
103 verbose installManyTop reading scoped package data from /vagrant/node_modules/has-ansi/package.json
104 verbose installManyTop reading scoped package data from /vagrant/node_modules/hooker/package.json
105 verbose installManyTop reading scoped package data from /vagrant/node_modules/hooks/package.json
106 verbose installManyTop reading scoped package data from /vagrant/node_modules/hosted-git-info/package.json
107 verbose installManyTop reading scoped package data from /vagrant/node_modules/htmlhint/package.json
108 verbose installManyTop reading scoped package data from /vagrant/node_modules/http-errors/package.json
109 verbose installManyTop reading scoped package data from /vagrant/node_modules/iconv-lite/package.json
110 verbose installManyTop reading scoped package data from /vagrant/node_modules/indent-string/package.json
111 verbose installManyTop reading scoped package data from /vagrant/node_modules/inflight/package.json
112 verbose installManyTop reading scoped package data from /vagrant/node_modules/inherits/package.json
113 verbose installManyTop reading scoped package data from /vagrant/node_modules/ipaddr.js/package.json
114 verbose installManyTop reading scoped package data from /vagrant/node_modules/is-arrayish/package.json
115 verbose installManyTop reading scoped package data from /vagrant/node_modules/is-builtin-module/package.json
116 verbose installManyTop reading scoped package data from /vagrant/node_modules/is-finite/package.json
117 verbose installManyTop reading scoped package data from /vagrant/node_modules/is-utf8/package.json
118 verbose installManyTop reading scoped package data from /vagrant/node_modules/isarray/package.json
119 verbose installManyTop reading scoped package data from /vagrant/node_modules/js-yaml/package.json
120 verbose installManyTop reading scoped package data from /vagrant/node_modules/jshint/package.json
121 verbose installManyTop reading scoped package data from /vagrant/node_modules/kerberos/package.json
122 verbose installManyTop reading scoped package data from /vagrant/node_modules/livereload-js/package.json
123 verbose installManyTop reading scoped package data from /vagrant/node_modules/load-json-file/package.json
124 verbose installManyTop reading scoped package data from /vagrant/node_modules/lodash/package.json
125 verbose installManyTop reading scoped package data from /vagrant/node_modules/lolex/package.json
126 verbose installManyTop reading scoped package data from /vagrant/node_modules/loud-rejection/package.json
127 verbose installManyTop reading scoped package data from /vagrant/node_modules/lru-cache/package.json
128 verbose installManyTop reading scoped package data from /vagrant/node_modules/map-obj/package.json
129 verbose installManyTop reading scoped package data from /vagrant/node_modules/maxmin/package.json
130 verbose installManyTop reading scoped package data from /vagrant/node_modules/media-typer/package.json
131 verbose installManyTop reading scoped package data from /vagrant/node_modules/meow/package.json
132 verbose installManyTop reading scoped package data from /vagrant/node_modules/merge-descriptors/package.json
133 verbose installManyTop reading scoped package data from /vagrant/node_modules/method-override/package.json
134 verbose installManyTop reading scoped package data from /vagrant/node_modules/methods/package.json
135 verbose installManyTop reading scoped package data from /vagrant/node_modules/mime/package.json
136 verbose installManyTop reading scoped package data from /vagrant/node_modules/mime-db/package.json
137 verbose installManyTop reading scoped package data from /vagrant/node_modules/mime-types/package.json
138 verbose installManyTop reading scoped package data from /vagrant/node_modules/minimatch/package.json
139 verbose installManyTop reading scoped package data from /vagrant/node_modules/minimist/package.json
140 verbose installManyTop reading scoped package data from /vagrant/node_modules/mkdirp/package.json
141 verbose installManyTop reading scoped package data from /vagrant/node_modules/mocha/package.json
142 verbose installManyTop reading scoped package data from /vagrant/node_modules/mongodb/package.json
143 verbose installManyTop reading scoped package data from /vagrant/node_modules/mongoose/package.json
144 verbose installManyTop reading scoped package data from /vagrant/node_modules/morgan/package.json
145 verbose installManyTop reading scoped package data from /vagrant/node_modules/mpath/package.json
146 verbose installManyTop reading scoped package data from /vagrant/node_modules/mpromise/package.json
147 verbose installManyTop reading scoped package data from /vagrant/node_modules/mquery/package.json
148 verbose installManyTop reading scoped package data from /vagrant/node_modules/ms/package.json
149 verbose installManyTop reading scoped package data from /vagrant/node_modules/muri/package.json
150 verbose installManyTop reading scoped package data from /vagrant/node_modules/mz/package.json
151 verbose installManyTop reading scoped package data from /vagrant/node_modules/nan/package.json
152 verbose installManyTop reading scoped package data from /vagrant/node_modules/native-or-bluebird/package.json
153 verbose installManyTop reading scoped package data from /vagrant/node_modules/negotiator/package.json
154 verbose installManyTop reading scoped package data from /vagrant/node_modules/nopt/package.json
155 verbose installManyTop reading scoped package data from /vagrant/node_modules/normalize-package-data/package.json
156 verbose installManyTop reading scoped package data from /vagrant/node_modules/number-is-nan/package.json
157 verbose installManyTop reading scoped package data from /vagrant/node_modules/object-assign/package.json
158 verbose installManyTop reading scoped package data from /vagrant/node_modules/on-finished/package.json
159 verbose installManyTop reading scoped package data from /vagrant/node_modules/on-headers/package.json
160 verbose installManyTop reading scoped package data from /vagrant/node_modules/once/package.json
161 verbose installManyTop reading scoped package data from /vagrant/node_modules/pako/package.json
162 verbose installManyTop reading scoped package data from /vagrant/node_modules/parse-json/package.json
163 verbose installManyTop reading scoped package data from /vagrant/node_modules/parseurl/package.json
164 verbose installManyTop reading scoped package data from /vagrant/node_modules/passport/package.json
165 verbose installManyTop reading scoped package data from /vagrant/node_modules/passport-local/package.json
166 verbose installManyTop reading scoped package data from /vagrant/node_modules/passport-strategy/package.json
167 verbose installManyTop reading scoped package data from /vagrant/node_modules/path-exists/package.json
168 verbose installManyTop reading scoped package data from /vagrant/node_modules/path-is-absolute/package.json
169 verbose installManyTop reading scoped package data from /vagrant/node_modules/path-to-regexp/package.json
170 verbose installManyTop reading scoped package data from /vagrant/node_modules/path-type/package.json
171 verbose installManyTop reading scoped package data from /vagrant/node_modules/pause/package.json
172 verbose installManyTop reading scoped package data from /vagrant/node_modules/pify/package.json
173 verbose installManyTop reading scoped package data from /vagrant/node_modules/pinkie/package.json
174 verbose installManyTop reading scoped package data from /vagrant/node_modules/pinkie-promise/package.json
175 verbose installManyTop reading scoped package data from /vagrant/node_modules/pretty-bytes/package.json
176 verbose installManyTop reading scoped package data from /vagrant/node_modules/process-nextick-args/package.json
177 verbose installManyTop reading scoped package data from /vagrant/node_modules/proxy-addr/package.json
178 verbose installManyTop reading scoped package data from /vagrant/node_modules/qs/package.json
179 verbose installManyTop reading scoped package data from /vagrant/node_modules/range-parser/package.json
180 verbose installManyTop reading scoped package data from /vagrant/node_modules/raw-body/package.json
181 verbose installManyTop reading scoped package data from /vagrant/node_modules/read-pkg/package.json
182 verbose installManyTop reading scoped package data from /vagrant/node_modules/read-pkg-up/package.json
183 verbose installManyTop reading scoped package data from /vagrant/node_modules/readable-stream/package.json
184 verbose installManyTop reading scoped package data from /vagrant/node_modules/redent/package.json
185 verbose installManyTop reading scoped package data from /vagrant/node_modules/redis/package.json
186 verbose installManyTop reading scoped package data from /vagrant/node_modules/redis-commands/package.json
187 verbose installManyTop reading scoped package data from /vagrant/node_modules/reduce-component/package.json
188 verbose installManyTop reading scoped package data from /vagrant/node_modules/regexp-clone/package.json
189 verbose installManyTop reading scoped package data from /vagrant/node_modules/repeating/package.json
190 verbose installManyTop reading scoped package data from /vagrant/node_modules/rimraf/package.json
191 verbose installManyTop reading scoped package data from /vagrant/node_modules/samsam/package.json
192 verbose installManyTop reading scoped package data from /vagrant/node_modules/semver/package.json
193 verbose installManyTop reading scoped package data from /vagrant/node_modules/send/package.json
194 verbose installManyTop reading scoped package data from /vagrant/node_modules/serve-favicon/package.json
195 verbose installManyTop reading scoped package data from /vagrant/node_modules/serve-static/package.json
196 verbose installManyTop reading scoped package data from /vagrant/node_modules/sigmund/package.json
197 verbose installManyTop reading scoped package data from /vagrant/node_modules/signal-exit/package.json
198 verbose installManyTop reading scoped package data from /vagrant/node_modules/sinon/package.json
199 verbose installManyTop reading scoped package data from /vagrant/node_modules/sliced/package.json
200 verbose installManyTop reading scoped package data from /vagrant/node_modules/source-map/package.json
201 verbose installManyTop reading scoped package data from /vagrant/node_modules/spdx-correct/package.json
202 verbose installManyTop reading scoped package data from /vagrant/node_modules/spdx-exceptions/package.json
203 verbose installManyTop reading scoped package data from /vagrant/node_modules/spdx-expression-parse/package.json
204 verbose installManyTop reading scoped package data from /vagrant/node_modules/spdx-license-ids/package.json
205 verbose installManyTop reading scoped package data from /vagrant/node_modules/statuses/package.json
206 verbose installManyTop reading scoped package data from /vagrant/node_modules/string_decoder/package.json
207 verbose installManyTop reading scoped package data from /vagrant/node_modules/strip-ansi/package.json
208 verbose installManyTop reading scoped package data from /vagrant/node_modules/strip-bom/package.json
209 verbose installManyTop reading scoped package data from /vagrant/node_modules/strip-indent/package.json
210 verbose installManyTop reading scoped package data from /vagrant/node_modules/superagent/package.json
211 verbose installManyTop reading scoped package data from /vagrant/node_modules/supertest/package.json
212 verbose installManyTop reading scoped package data from /vagrant/node_modules/supports-color/package.json
213 verbose installManyTop reading scoped package data from /vagrant/node_modules/thenify/package.json
214 verbose installManyTop reading scoped package data from /vagrant/node_modules/thenify-all/package.json
215 verbose installManyTop reading scoped package data from /vagrant/node_modules/tiny-lr/package.json
216 verbose installManyTop reading scoped package data from /vagrant/node_modules/trim-newlines/package.json
217 verbose installManyTop reading scoped package data from /vagrant/node_modules/type-is/package.json
218 verbose installManyTop reading scoped package data from /vagrant/node_modules/typedarray/package.json
219 verbose installManyTop reading scoped package data from /vagrant/node_modules/uid-safe/package.json
220 verbose installManyTop reading scoped package data from /vagrant/node_modules/underscore/package.json
221 verbose installManyTop reading scoped package data from /vagrant/node_modules/underscore.string/package.json
222 verbose installManyTop reading scoped package data from /vagrant/node_modules/unpipe/package.json
223 verbose installManyTop reading scoped package data from /vagrant/node_modules/util/package.json
224 verbose installManyTop reading scoped package data from /vagrant/node_modules/util-deprecate/package.json
225 verbose installManyTop reading scoped package data from /vagrant/node_modules/utils-merge/package.json
226 verbose installManyTop reading scoped package data from /vagrant/node_modules/validate-npm-package-license/package.json
227 verbose installManyTop reading scoped package data from /vagrant/node_modules/vary/package.json
228 verbose installManyTop reading scoped package data from /vagrant/node_modules/websocket-driver/package.json
229 verbose installManyTop reading scoped package data from /vagrant/node_modules/websocket-extensions/package.json
230 verbose installManyTop reading scoped package data from /vagrant/node_modules/which/package.json
231 verbose installManyTop reading scoped package data from /vagrant/node_modules/wrappy/package.json
232 info package.json [email protected] No license field.
233 info package.json [email protected] No license field.
234 info package.json [email protected] No license field.
235 info package.json [email protected] No license field.
236 info package.json [email protected] No license field.
237 info package.json [email protected] No license field.
238 info package.json [email protected] No license field.
239 info package.json [email protected] No license field.
240 info package.json [email protected] No license field.
241 info package.json [email protected] No license field.
242 info package.json [email protected] No license field.
243 info package.json [email protected] No license field.
244 info package.json [email protected] No license field.
245 info package.json [email protected] license should be a valid SPDX license expression
246 info package.json [email protected] No license field.
247 info package.json [email protected] No license field.
248 info package.json [email protected] No license field.
249 info package.json [email protected] No license field.
250 info package.json [email protected] license should be a valid SPDX license expression
251 info package.json [email protected] No license field.
252 info package.json [email protected] No license field.
253 info package.json [email protected] No license field.
254 info package.json [email protected] No license field.
255 info package.json [email protected] license should be a valid SPDX license expression
256 info package.json [email protected] license should be a valid SPDX license expression
257 info package.json [email protected] No license field.
258 info package.json [email protected] No license field.
259 info package.json [email protected] No repository field.
260 info package.json [email protected] No license field.
261 info package.json [email protected] No license field.
262 info package.json [email protected] No license field.
263 info package.json [email protected] No license field.
264 info package.json [email protected] license should be a valid SPDX license expression
265 info package.json [email protected] license should be a valid SPDX license expression
266 info package.json [email protected] license should be a valid SPDX license expression
267 info package.json [email protected] No license field.
268 info package.json [email protected] No repository field.
269 info package.json [email protected] No license field.
270 info package.json [email protected] No license field.
271 info package.json [email protected] license should be a valid SPDX license expression
272 info package.json [email protected] license should be a valid SPDX license expression
273 info package.json [email protected] No license field.
274 info package.json [email protected] string_decoder is also the name of a node core module.
275 info package.json [email protected] No license field.
276 info package.json [email protected] No license field.
277 info package.json [email protected] No license field.
278 info package.json [email protected] util is also the name of a node core module.
279 info package.json [email protected] No license field.
280 info package.json [email protected] No license field.
281 info package.json [email protected] No license field.
282 info package.json [email protected] No license field.
283 verbose readDependencies loading dependencies from /vagrant/package.json
284 verbose install grunt is installed as 1.0.1
285 silly cache add args [ 'grunt', null ]
286 verbose cache add spec grunt
287 silly cache add parsed spec { raw: 'grunt',
287 silly cache add scope: null,
287 silly cache add name: 'grunt',
287 silly cache add rawSpec: '',
287 silly cache add spec: '*',
287 silly cache add type: 'range' }
288 silly addNamed grunt@*
289 verbose addNamed "*" is a valid semver range for grunt
290 silly addNameRange { name: 'grunt', range: '*', hasData: false }
291 silly mapToRegistry name grunt
292 silly mapToRegistry using default registry
293 silly mapToRegistry registry http://172.23.238.253:4873/
294 silly mapToRegistry uri http://172.23.238.253:4873/grunt
295 verbose addNameRange registry:http://172.23.238.253:4873/grunt not in flight; fetching
296 verbose request uri http://172.23.238.253:4873/grunt
297 verbose request no auth needed
298 info attempt registry request try #1 at 09:59:58
299 verbose request id 1a16e143a53dd109
300 verbose etag "d96a4227dcddf5d1ae7dedc1086d9d92"
301 http request GET http://172.23.238.253:4873/grunt
302 http 304 http://172.23.238.253:4873/grunt
303 silly get cb [ 304,
303 silly get { 'x-powered-by': 'Sinopia/1.4.0',
303 silly get etag: '"d96a4227dcddf5d1ae7dedc1086d9d92"',
303 silly get 'x-status-cat': 'http://flic.kr/p/aXY3dH',
303 silly get date: 'Wed, 06 Apr 2016 10:00:48 GMT',
303 silly get connection: 'keep-alive' } ]
304 verbose etag http://172.23.238.253:4873/grunt from cache
305 verbose get saving grunt to /home/vagrant/.npm/172.23.238.253_4873/grunt/.cache.json
306 silly addNameRange number 2 { name: 'grunt', range: '*', hasData: true }
307 silly addNameRange versions [ 'grunt',
307 silly addNameRange [ '0.1.0',
307 silly addNameRange '0.1.1',
307 silly addNameRange '0.1.2',
307 silly addNameRange '0.2.0',
307 silly addNameRange '0.2.1',
307 silly addNameRange '0.2.2',
307 silly addNameRange '0.2.3',
307 silly addNameRange '0.2.4',
307 silly addNameRange '0.2.5',
307 silly addNameRange '0.2.6',
307 silly addNameRange '0.2.7',
307 silly addNameRange '0.2.8',
307 silly addNameRange '0.2.9',
307 silly addNameRange '0.2.10',
307 silly addNameRange '0.2.11',
307 silly addNameRange '0.2.12',
307 silly addNameRange '0.2.13',
307 silly addNameRange '0.2.14',
307 silly addNameRange '0.2.15',
307 silly addNameRange '0.3.0',
307 silly addNameRange '0.3.1',
307 silly addNameRange '0.3.2',
307 silly addNameRange '0.3.3',
307 silly addNameRange '0.3.4',
307 silly addNameRange '0.3.5',
307 silly addNameRange '0.3.6',
307 silly addNameRange '0.3.7',
307 silly addNameRange '0.3.8',
307 silly addNameRange '0.3.9',
307 silly addNameRange '0.3.10',
307 silly addNameRange '0.3.11',
307 silly addNameRange '0.3.12',
307 silly addNameRange '0.3.13',
307 silly addNameRange '0.3.14',
307 silly addNameRange '0.3.15',
307 silly addNameRange '0.3.16',
307 silly addNameRange '0.3.17',
307 silly addNameRange '0.4.0',
307 silly addNameRange '0.4.1',
307 silly addNameRange '0.4.2',
307 silly addNameRange '0.4.3',
307 silly addNameRange '0.4.4',
307 silly addNameRange '0.4.5',
307 silly addNameRange '0.3.13-a',
307 silly addNameRange '0.4.0-a',
307 silly addNameRange '0.4.0-rc1',
307 silly addNameRange '0.4.0-rc2',
307 silly addNameRange '0.4.0-rc3',
307 silly addNameRange '0.4.0-rc4',
307 silly addNameRange '0.4.0-rc5',
307 silly addNameRange '0.4.0-rc6',
307 silly addNameRange '0.4.0-rc7',
307 silly addNameRange '0.4.0-rc8',
307 silly addNameRange '1.0.0-rc1',
307 silly addNameRange '1.0.0',
307 silly addNameRange '1.0.1' ] ]
308 silly addNamed [email protected]
309 verbose addNamed "1.0.1" is a plain semver version for grunt
310 silly cache afterAdd [email protected]
311 verbose afterAdd /home/vagrant/.npm/grunt/1.0.1/package/package.json not in flight; writing
312 verbose afterAdd /home/vagrant/.npm/grunt/1.0.1/package/package.json written
313 silly install resolved [ { name: 'grunt',
313 silly install resolved description: 'The JavaScript Task Runner',
313 silly install resolved version: '1.0.1',
313 silly install resolved author:
313 silly install resolved { name: 'Grunt Development Team',
313 silly install resolved url: 'http://gruntjs.com/development-team' },
313 silly install resolved homepage: 'http://gruntjs.com/',
313 silly install resolved repository: { type: 'git', url: 'git+https://github.com/gruntjs/grunt.git' },
313 silly install resolved license: 'MIT',
313 silly install resolved engines: { node: '>=0.10.0' },
313 silly install resolved scripts: { test: 'grunt test', 'test-tap': 'grunt test:tap' },
313 silly install resolved main: 'lib/grunt',
313 silly install resolved bin: { grunt: 'bin/grunt' },
313 silly install resolved keywords:
313 silly install resolved [ 'task',
313 silly install resolved 'async',
313 silly install resolved 'cli',
313 silly install resolved 'minify',
313 silly install resolved 'uglify',
313 silly install resolved 'build',
313 silly install resolved 'lodash',
313 silly install resolved 'unit',
313 silly install resolved 'test',
313 silly install resolved 'qunit',
313 silly install resolved 'nodeunit',
313 silly install resolved 'server',
313 silly install resolved 'init',
313 silly install resolved 'scaffold',
313 silly install resolved 'make',
313 silly install resolved 'jake',
313 silly install resolved 'tool' ],
313 silly install resolved dependencies:
313 silly install resolved { 'coffee-script': '~1.10.0',
313 silly install resolved dateformat: '~1.0.12',
313 silly install resolved eventemitter2: '~0.4.13',
313 silly install resolved exit: '~0.1.1',
313 silly install resolved 'findup-sync': '~0.3.0',
313 silly install resolved glob: '~7.0.0',
313 silly install resolved 'grunt-cli': '~1.2.0',
313 silly install resolved 'grunt-known-options': '~1.1.0',
313 silly install resolved 'grunt-legacy-log': '~1.0.0',
313 silly install resolved 'grunt-legacy-util': '~1.0.0',
313 silly install resolved 'iconv-lite': '~0.4.13',
313 silly install resolved 'js-yaml': '~3.5.2',
313 silly install resolved minimatch: '~3.0.0',
313 silly install resolved nopt: '~3.0.6',
313 silly install resolved 'path-is-absolute': '~1.0.0',
313 silly install resolved rimraf: '~2.2.8' },
313 silly install resolved devDependencies:
313 silly install resolved { difflet: '~0.2.3',
313 silly install resolved 'grunt-contrib-jshint': '~1.0.0',
313 silly install resolved 'grunt-contrib-nodeunit': '~0.4.1',
313 silly install resolved 'grunt-contrib-watch': '~1.0.0',
313 silly install resolved 'grunt-jscs': '~2.8.0',
313 silly install resolved semver: '2.1.0',
313 silly install resolved shelljs: '~0.5.3',
313 silly install resolved temporary: '~0.0.4',
313 silly install resolved through2: '~2.0.0' },
313 silly install resolved files: [ 'lib', 'bin' ],
313 silly install resolved contributors: [ [Object], [Object], [Object], [Object], [Object] ],
313 silly install resolved gitHead: '8ada4948b69c6ec9b1e956b5e6b2e6814fa054ca',
313 silly install resolved bugs: { url: 'https://github.com/gruntjs/grunt/issues' },
313 silly install resolved _id: '[email protected]',
313 silly install resolved _shasum: 'e8778764e944b18f32bb0f10b9078475c9dfb56b',
313 silly install resolved _from: 'grunt@*',
313 silly install resolved _npmVersion: '2.15.2',
313 silly install resolved _nodeVersion: '4.4.1',
313 silly install resolved _npmUser: { name: 'shama', email: '[email protected]' },
313 silly install resolved maintainers: [ [Object], [Object], [Object], [Object] ],
313 silly install resolved dist:
313 silly install resolved { shasum: 'e8778764e944b18f32bb0f10b9078475c9dfb56b',
313 silly install resolved tarball: 'http://172.23.238.253:4873/grunt/-/grunt-1.0.1.tgz' },
313 silly install resolved _npmOperationalInternal:
313 silly install resolved { host: 'packages-12-west.internal.npmjs.com',
313 silly install resolved tmp: 'tmp/grunt-1.0.1.tgz_1459880209209_0.8634267684537917' },
313 silly install resolved directories: {},
313 silly install resolved _resolved: 'http://172.23.238.253:4873/grunt/-/grunt-1.0.1.tgz',
313 silly install resolved readme: 'ERROR: No README data found!' } ]
314 info install [email protected] into /vagrant
315 info installOne [email protected]
316 verbose installOne of grunt to /vagrant not in flight; installing
317 verbose lock using /home/vagrant/.npm/_locks/grunt-4939ace40e15c429.lock for /vagrant/node_modules/grunt
318 silly install write writing grunt 1.0.1 to /vagrant/node_modules/grunt
319 verbose unbuild node_modules/grunt
320 info preuninstall [email protected]
321 info uninstall [email protected]
322 verbose unbuild rmStuff [email protected] from /vagrant/node_modules
323 silly gentlyRm /vagrant/node_modules/.bin/grunt is being gently removed
324 silly gentlyRm verifying /vagrant is an npm working directory
325 silly gentlyRm containing path /vagrant is under npm's control, in /vagrant
326 silly gentlyRm deletion target /vagrant/node_modules/.bin/grunt is under /vagrant
327 verbose gentlyRm vacuuming from /vagrant/node_modules/.bin/grunt up to /vagrant
328 info postuninstall [email protected]
329 silly gentlyRm /vagrant/node_modules/grunt is being purged from base /vagrant
330 verbose gentlyRm don't care about contents; nuking /vagrant/node_modules/grunt
331 silly vacuum-fs purging /vagrant/node_modules/grunt
332 silly vacuum-fs quitting because other entries in /vagrant/node_modules
333 verbose tar unpack /home/vagrant/.npm/grunt/1.0.1/package.tgz
334 verbose tar unpacking to /vagrant/node_modules/grunt
335 silly gentlyRm /vagrant/node_modules/grunt is being purged
336 verbose gentlyRm don't care about contents; nuking /vagrant/node_modules/grunt
337 silly gunzTarPerm modes [ '775', '664' ]
338 silly gunzTarPerm extractEntry package.json
339 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
340 silly gunzTarPerm extractEntry README.md
341 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
342 silly gunzTarPerm extractEntry LICENSE
343 silly gunzTarPerm modified mode [ 'LICENSE', 420, 436 ]
344 silly gunzTarPerm extractEntry CHANGELOG
345 silly gunzTarPerm modified mode [ 'CHANGELOG', 420, 436 ]
346 silly gunzTarPerm extractEntry bin/grunt
347 silly gunzTarPerm modified mode [ 'bin/grunt', 493, 509 ]
348 silly gunzTarPerm extractEntry lib/grunt.js
349 silly gunzTarPerm modified mode [ 'lib/grunt.js', 420, 436 ]
350 silly gunzTarPerm extractEntry lib/grunt/cli.js
351 silly gunzTarPerm modified mode [ 'lib/grunt/cli.js', 420, 436 ]
352 silly gunzTarPerm extractEntry lib/grunt/config.js
353 silly gunzTarPerm modified mode [ 'lib/grunt/config.js', 420, 436 ]
354 silly gunzTarPerm extractEntry lib/grunt/event.js
355 silly gunzTarPerm modified mode [ 'lib/grunt/event.js', 420, 436 ]
356 silly gunzTarPerm extractEntry lib/grunt/fail.js
357 silly gunzTarPerm modified mode [ 'lib/grunt/fail.js', 420, 436 ]
358 silly gunzTarPerm extractEntry lib/grunt/file.js
359 silly gunzTarPerm modified mode [ 'lib/grunt/file.js', 420, 436 ]
360 silly gunzTarPerm extractEntry lib/grunt/help.js
361 silly gunzTarPerm modified mode [ 'lib/grunt/help.js', 420, 436 ]
362 silly gunzTarPerm extractEntry lib/grunt/option.js
363 silly gunzTarPerm modified mode [ 'lib/grunt/option.js', 420, 436 ]
364 silly gunzTarPerm extractEntry lib/grunt/task.js
365 silly gunzTarPerm modified mode [ 'lib/grunt/task.js', 420, 436 ]
366 silly gunzTarPerm extractEntry lib/grunt/template.js
367 silly gunzTarPerm modified mode [ 'lib/grunt/template.js', 420, 436 ]
368 silly gunzTarPerm extractEntry lib/util/task.js
369 silly gunzTarPerm modified mode [ 'lib/util/task.js', 420, 436 ]
370 verbose write writing to /vagrant/node_modules/grunt/package.json
371 info preinstall [email protected]
372 verbose readDependencies loading dependencies from /vagrant/node_modules/grunt/package.json
373 silly prepareForInstallMany adding coffee-script@~1.10.0 from grunt dependencies
374 silly prepareForInstallMany adding dateformat@~1.0.12 from grunt dependencies
375 silly prepareForInstallMany adding findup-sync@~0.3.0 from grunt dependencies
376 silly prepareForInstallMany adding glob@~7.0.0 from grunt dependencies
377 silly prepareForInstallMany adding grunt-cli@~1.2.0 from grunt dependencies
378 silly prepareForInstallMany adding grunt-known-options@~1.1.0 from grunt dependencies
379 silly prepareForInstallMany adding grunt-legacy-log@~1.0.0 from grunt dependencies
380 silly prepareForInstallMany adding grunt-legacy-util@~1.0.0 from grunt dependencies
381 silly prepareForInstallMany adding iconv-lite@~0.4.13 from grunt dependencies
382 silly prepareForInstallMany adding js-yaml@~3.5.2 from grunt dependencies
383 silly prepareForInstallMany adding minimatch@~3.0.0 from grunt dependencies
384 silly prepareForInstallMany adding nopt@~3.0.6 from grunt dependencies
385 verbose readDependencies loading dependencies from /vagrant/node_modules/grunt/package.json
386 silly cache add args [ 'glob@~7.0.0', null ]
387 verbose cache add spec glob@~7.0.0
388 silly cache add parsed spec { raw: 'glob@~7.0.0',
388 silly cache add scope: null,
388 silly cache add name: 'glob',
388 silly cache add rawSpec: '~7.0.0',
388 silly cache add spec: '>=7.0.0 <7.1.0',
388 silly cache add type: 'range' }
389 silly addNamed glob@>=7.0.0 <7.1.0
390 verbose addNamed ">=7.0.0 <7.1.0" is a valid semver range for glob
391 silly addNameRange { name: 'glob', range: '>=7.0.0 <7.1.0', hasData: false }
392 silly mapToRegistry name glob
393 silly mapToRegistry using default registry
394 silly mapToRegistry registry http://172.23.238.253:4873/
395 silly mapToRegistry uri http://172.23.238.253:4873/glob
396 verbose addNameRange registry:http://172.23.238.253:4873/glob not in flight; fetching
397 silly cache add args [ 'grunt-cli@~1.2.0', null ]
398 verbose cache add spec grunt-cli@~1.2.0
399 silly cache add parsed spec { raw: 'grunt-cli@~1.2.0',
399 silly cache add scope: null,
399 silly cache add name: 'grunt-cli',
399 silly cache add rawSpec: '~1.2.0',
399 silly cache add spec: '>=1.2.0 <1.3.0',
399 silly cache add type: 'range' }
400 silly addNamed grunt-cli@>=1.2.0 <1.3.0
401 verbose addNamed ">=1.2.0 <1.3.0" is a valid semver range for grunt-cli
402 silly addNameRange { name: 'grunt-cli', range: '>=1.2.0 <1.3.0', hasData: false }
403 silly mapToRegistry name grunt-cli
404 silly mapToRegistry using default registry
405 silly mapToRegistry registry http://172.23.238.253:4873/
406 silly mapToRegistry uri http://172.23.238.253:4873/grunt-cli
407 verbose addNameRange registry:http://172.23.238.253:4873/grunt-cli not in flight; fetching
408 silly cache add args [ 'grunt-known-options@~1.1.0', null ]
409 verbose cache add spec grunt-known-options@~1.1.0
410 silly cache add parsed spec { raw: 'grunt-known-options@~1.1.0',
410 silly cache add scope: null,
410 silly cache add name: 'grunt-known-options',
410 silly cache add rawSpec: '~1.1.0',
410 silly cache add spec: '>=1.1.0 <1.2.0',
410 silly cache add type: 'range' }
411 silly addNamed grunt-known-options@>=1.1.0 <1.2.0
412 verbose addNamed ">=1.1.0 <1.2.0" is a valid semver range for grunt-known-options
413 silly addNameRange { name: 'grunt-known-options',
413 silly addNameRange range: '>=1.1.0 <1.2.0',
413 silly addNameRange hasData: false }
414 silly mapToRegistry name grunt-known-options
415 silly mapToRegistry using default registry
416 silly mapToRegistry registry http://172.23.238.253:4873/
417 silly mapToRegistry uri http://172.23.238.253:4873/grunt-known-options
418 verbose addNameRange registry:http://172.23.238.253:4873/grunt-known-options not in flight; fetching
419 silly cache add args [ 'grunt-legacy-log@~1.0.0', null ]
420 verbose cache add spec grunt-legacy-log@~1.0.0
421 silly cache add parsed spec { raw: 'grunt-legacy-log@~1.0.0',
421 silly cache add scope: null,
421 silly cache add name: 'grunt-legacy-log',
421 silly cache add rawSpec: '~1.0.0',
421 silly cache add spec: '>=1.0.0 <1.1.0',
421 silly cache add type: 'range' }
422 silly addNamed grunt-legacy-log@>=1.0.0 <1.1.0
423 verbose addNamed ">=1.0.0 <1.1.0" is a valid semver range for grunt-legacy-log
424 silly addNameRange { name: 'grunt-legacy-log',
424 silly addNameRange range: '>=1.0.0 <1.1.0',
424 silly addNameRange hasData: false }
425 silly mapToRegistry name grunt-legacy-log
426 silly mapToRegistry using default registry
427 silly mapToRegistry registry http://172.23.238.253:4873/
428 silly mapToRegistry uri http://172.23.238.253:4873/grunt-legacy-log
429 verbose addNameRange registry:http://172.23.238.253:4873/grunt-legacy-log not in flight; fetching
430 silly cache add args [ 'grunt-legacy-util@~1.0.0', null ]
431 verbose cache add spec grunt-legacy-util@~1.0.0
432 silly cache add parsed spec { raw: 'grunt-legacy-util@~1.0.0',
432 silly cache add scope: null,
432 silly cache add name: 'grunt-legacy-util',
432 silly cache add rawSpec: '~1.0.0',
432 silly cache add spec: '>=1.0.0 <1.1.0',
432 silly cache add type: 'range' }
433 silly addNamed grunt-legacy-util@>=1.0.0 <1.1.0
434 verbose addNamed ">=1.0.0 <1.1.0" is a valid semver range for grunt-legacy-util
435 silly addNameRange { name: 'grunt-legacy-util',
435 silly addNameRange range: '>=1.0.0 <1.1.0',
435 silly addNameRange hasData: false }
436 silly mapToRegistry name grunt-legacy-util
437 silly mapToRegistry using default registry
438 silly mapToRegistry registry http://172.23.238.253:4873/
439 silly mapToRegistry uri http://172.23.238.253:4873/grunt-legacy-util
440 verbose addNameRange registry:http://172.23.238.253:4873/grunt-legacy-util not in flight; fetching
441 silly cache add args [ 'iconv-lite@~0.4.13', null ]
442 verbose cache add spec iconv-lite@~0.4.13
443 silly cache add parsed spec { raw: 'iconv-lite@~0.4.13',
443 silly cache add scope: null,
443 silly cache add name: 'iconv-lite',
443 silly cache add rawSpec: '~0.4.13',
443 silly cache add spec: '>=0.4.13 <0.5.0',
443 silly cache add type: 'range' }
444 silly addNamed iconv-lite@>=0.4.13 <0.5.0
445 verbose addNamed ">=0.4.13 <0.5.0" is a valid semver range for iconv-lite
446 silly addNameRange { name: 'iconv-lite', range: '>=0.4.13 <0.5.0', hasData: false }
447 silly mapToRegistry name iconv-lite
448 silly mapToRegistry using default registry
449 silly mapToRegistry registry http://172.23.238.253:4873/
450 silly mapToRegistry uri http://172.23.238.253:4873/iconv-lite
451 verbose addNameRange registry:http://172.23.238.253:4873/iconv-lite not in flight; fetching
452 silly cache add args [ 'js-yaml@~3.5.2', null ]
453 verbose cache add spec js-yaml@~3.5.2
454 silly cache add parsed spec { raw: 'js-yaml@~3.5.2',
454 silly cache add scope: null,
454 silly cache add name: 'js-yaml',
454 silly cache add rawSpec: '~3.5.2',
454 silly cache add spec: '>=3.5.2 <3.6.0',
454 silly cache add type: 'range' }
455 silly addNamed js-yaml@>=3.5.2 <3.6.0
456 verbose addNamed ">=3.5.2 <3.6.0" is a valid semver range for js-yaml
457 silly addNameRange { name: 'js-yaml', range: '>=3.5.2 <3.6.0', hasData: false }
458 silly mapToRegistry name js-yaml
459 silly mapToRegistry using default registry
460 silly mapToRegistry registry http://172.23.238.253:4873/
461 silly mapToRegistry uri http://172.23.238.253:4873/js-yaml
462 verbose addNameRange registry:http://172.23.238.253:4873/js-yaml not in flight; fetching
463 silly cache add args [ 'minimatch@~3.0.0', null ]
464 verbose cache add spec minimatch@~3.0.0
465 silly cache add parsed spec { raw: 'minimatch@~3.0.0',
465 silly cache add scope: null,
465 silly cache add name: 'minimatch',
465 silly cache add rawSpec: '~3.0.0',
465 silly cache add spec: '>=3.0.0 <3.1.0',
465 silly cache add type: 'range' }
466 silly addNamed minimatch@>=3.0.0 <3.1.0
467 verbose addNamed ">=3.0.0 <3.1.0" is a valid semver range for minimatch
468 silly addNameRange { name: 'minimatch', range: '>=3.0.0 <3.1.0', hasData: false }
469 silly mapToRegistry name minimatch
470 silly mapToRegistry using default registry
471 silly mapToRegistry registry http://172.23.238.253:4873/
472 silly mapToRegistry uri http://172.23.238.253:4873/minimatch
473 verbose addNameRange registry:http://172.23.238.253:4873/minimatch not in flight; fetching
474 silly cache add args [ 'nopt@~3.0.6', null ]
475 verbose cache add spec nopt@~3.0.6
476 silly cache add parsed spec { raw: 'nopt@~3.0.6',
476 silly cache add scope: null,
476 silly cache add name: 'nopt',
476 silly cache add rawSpec: '~3.0.6',
476 silly cache add spec: '>=3.0.6 <3.1.0',
476 silly cache add type: 'range' }
477 silly addNamed nopt@>=3.0.6 <3.1.0
478 verbose addNamed ">=3.0.6 <3.1.0" is a valid semver range for nopt
479 silly addNameRange { name: 'nopt', range: '>=3.0.6 <3.1.0', hasData: false }
480 silly mapToRegistry name nopt
481 silly mapToRegistry using default registry
482 silly mapToRegistry registry http://172.23.238.253:4873/
483 silly mapToRegistry uri http://172.23.238.253:4873/nopt
484 verbose addNameRange registry:http://172.23.238.253:4873/nopt not in flight; fetching
485 silly cache add args [ 'coffee-script@~1.10.0', null ]
486 verbose cache add spec coffee-script@~1.10.0
487 silly cache add parsed spec { raw: 'coffee-script@~1.10.0',
487 silly cache add scope: null,
487 silly cache add name: 'coffee-script',
487 silly cache add rawSpec: '~1.10.0',
487 silly cache add spec: '>=1.10.0 <1.11.0',
487 silly cache add type: 'range' }
488 silly addNamed coffee-script@>=1.10.0 <1.11.0
489 verbose addNamed ">=1.10.0 <1.11.0" is a valid semver range for coffee-script
490 silly addNameRange { name: 'coffee-script',
490 silly addNameRange range: '>=1.10.0 <1.11.0',
490 silly addNameRange hasData: false }
491 silly mapToRegistry name coffee-script
492 silly mapToRegistry using default registry
493 silly mapToRegistry registry http://172.23.238.253:4873/
494 silly mapToRegistry uri http://172.23.238.253:4873/coffee-script
495 verbose addNameRange registry:http://172.23.238.253:4873/coffee-script not in flight; fetching
496 silly cache add args [ 'dateformat@~1.0.12', null ]
497 verbose cache add spec dateformat@~1.0.12
498 silly cache add parsed spec { raw: 'dateformat@~1.0.12',
498 silly cache add scope: null,
498 silly cache add name: 'dateformat',
498 silly cache add rawSpec: '~1.0.12',
498 silly cache add spec: '>=1.0.12 <1.1.0',
498 silly cache add type: 'range' }
499 silly addNamed dateformat@>=1.0.12 <1.1.0
500 verbose addNamed ">=1.0.12 <1.1.0" is a valid semver range for dateformat
501 silly addNameRange { name: 'dateformat', range: '>=1.0.12 <1.1.0', hasData: false }
502 silly mapToRegistry name dateformat
503 silly mapToRegistry using default registry
504 silly mapToRegistry registry http://172.23.238.253:4873/
505 silly mapToRegistry uri http://172.23.238.253:4873/dateformat
506 verbose addNameRange registry:http://172.23.238.253:4873/dateformat not in flight; fetching
507 silly cache add args [ 'findup-sync@~0.3.0', null ]
508 verbose cache add spec findup-sync@~0.3.0
509 silly cache add parsed spec { raw: 'findup-sync@~0.3.0',
509 silly cache add scope: null,
509 silly cache add name: 'findup-sync',
509 silly cache add rawSpec: '~0.3.0',
509 silly cache add spec: '>=0.3.0 <0.4.0',
509 silly cache add type: 'range' }
510 silly addNamed findup-sync@>=0.3.0 <0.4.0
511 verbose addNamed ">=0.3.0 <0.4.0" is a valid semver range for findup-sync
512 silly addNameRange { name: 'findup-sync', range: '>=0.3.0 <0.4.0', hasData: false }
513 silly mapToRegistry name findup-sync
514 silly mapToRegistry using default registry
515 silly mapToRegistry registry http://172.23.238.253:4873/
516 silly mapToRegistry uri http://172.23.238.253:4873/findup-sync
517 verbose addNameRange registry:http://172.23.238.253:4873/findup-sync not in flight; fetching
518 verbose request uri http://172.23.238.253:4873/glob
519 verbose request no auth needed
520 info attempt registry request try #1 at 10:00:05
521 verbose etag "3178b0a9298ce1be2a1e6b51c6d64b24"
522 http request GET http://172.23.238.253:4873/glob
523 verbose request uri http://172.23.238.253:4873/grunt-cli
524 verbose request no auth needed
525 info attempt registry request try #1 at 10:00:05
526 verbose etag "0969b90ee6209cbf2b2f14dfa41773d9"
527 http request GET http://172.23.238.253:4873/grunt-cli
528 verbose request uri http://172.23.238.253:4873/grunt-known-options
529 verbose request no auth needed
530 info attempt registry request try #1 at 10:00:05
531 verbose etag "99500bbef3d70a7ab7f27b18eb488dc4"
532 http request GET http://172.23.238.253:4873/grunt-known-options
533 verbose request uri http://172.23.238.253:4873/grunt-legacy-log
534 verbose request no auth needed
535 info attempt registry request try #1 at 10:00:05
536 verbose etag "576ef60337d7c8162c31bf4e3dbfff0c"
537 http request GET http://172.23.238.253:4873/grunt-legacy-log
538 verbose request uri http://172.23.238.253:4873/grunt-legacy-util
539 verbose request no auth needed
540 info attempt registry request try #1 at 10:00:05
541 verbose etag "cba413bf9f768d386e8e04730560e732"
542 http request GET http://172.23.238.253:4873/grunt-legacy-util
543 verbose request uri http://172.23.238.253:4873/iconv-lite
544 verbose request no auth needed
545 info attempt registry request try #1 at 10:00:05
546 verbose etag "281ca5e7317b42ca15cbb0213d0127e2"
547 http request GET http://172.23.238.253:4873/iconv-lite
548 verbose request uri http://172.23.238.253:4873/js-yaml
549 verbose request no auth needed
550 info attempt registry request try #1 at 10:00:05
551 verbose etag "eee1fbca152b312a9f6e4d1047cf3161"
552 http request GET http://172.23.238.253:4873/js-yaml
553 verbose request uri http://172.23.238.253:4873/minimatch
554 verbose request no auth needed
555 info attempt registry request try #1 at 10:00:05
556 verbose etag "2fa23b9b6bc960b6b876a99e87ebf033"
557 http request GET http://172.23.238.253:4873/minimatch
558 verbose request uri http://172.23.238.253:4873/nopt
559 verbose request no auth needed
560 info attempt registry request try #1 at 10:00:05
561 verbose etag "ac31f107f19f555f9ffa04cbe7d2306c"
562 http request GET http://172.23.238.253:4873/nopt
563 verbose request uri http://172.23.238.253:4873/coffee-script
564 verbose request no auth needed
565 info attempt registry request try #1 at 10:00:05
566 verbose etag "d65515112d3e21a36deba436259a316d"
567 http request GET http://172.23.238.253:4873/coffee-script
568 verbose request uri http://172.23.238.253:4873/dateformat
569 verbose request no auth needed
570 info attempt registry request try #1 at 10:00:05
571 verbose etag "4348f8a953b34cec13dedb6c8b1f65ff"
572 http request GET http://172.23.238.253:4873/dateformat
573 verbose request uri http://172.23.238.253:4873/findup-sync
574 verbose request no auth needed
575 info attempt registry request try #1 at 10:00:05
576 verbose etag "3448f3909c3d4419d7fb8d4b218700c9"
577 http request GET http://172.23.238.253:4873/findup-sync
578 http 304 http://172.23.238.253:4873/grunt-legacy-util
579 silly get cb [ 304,
579 silly get { 'x-powered-by': 'Sinopia/1.4.0',
579 silly get etag: '"cba413bf9f768d386e8e04730560e732"',
579 silly get 'x-status-cat': 'http://flic.kr/p/aXY3dH',
579 silly get date: 'Wed, 06 Apr 2016 10:00:56 GMT',
579 silly get connection: 'keep-alive' } ]
580 verbose etag http://172.23.238.253:4873/grunt-legacy-util from cache
581 verbose get saving grunt-legacy-util to /home/vagrant/.npm/172.23.238.253_4873/grunt-legacy-util/.cache.json
582 silly addNameRange number 2 { name: 'grunt-legacy-util',
582 silly addNameRange range: '>=1.0.0 <1.1.0',
582 silly addNameRange hasData: true }
583 silly addNameRange versions [ 'grunt-legacy-util',
583 silly addNameRange [ '0.1.0', '0.1.1', '0.1.2', '0.2.0', '1.0.0-rc1', '1.0.0' ] ]
584 silly addNamed [email protected]
585 verbose addNamed "1.0.0" is a plain semver version for grunt-legacy-util
586 silly cache afterAdd [email protected]
587 verbose afterAdd /home/vagrant/.npm/grunt-legacy-util/1.0.0/package/package.json not in flight; writing
588 http 304 http://172.23.238.253:4873/js-yaml
589 silly get cb [ 304,
589 silly get { 'x-powered-by': 'Sinopia/1.4.0',
589 silly get etag: '"eee1fbca152b312a9f6e4d1047cf3161"',
589 silly get 'x-status-cat': 'http://flic.kr/p/aXY3dH',
589 silly get date: 'Wed, 06 Apr 2016 10:00:56 GMT',
589 silly get connection: 'keep-alive' } ]
590 verbose etag http://172.23.238.253:4873/js-yaml from cache
591 verbose get saving js-yaml to /home/vagrant/.npm/172.23.238.253_4873/js-yaml/.cache.json
592 http 304 http://172.23.238.253:4873/findup-sync
593 silly get cb [ 304,
593 silly get { 'x-powered-by': 'Sinopia/1.4.0',
593 silly get etag: '"3448f3909c3d4419d7fb8d4b218700c9"',
593 silly get 'x-status-cat': 'http://flic.kr/p/aXY3dH',
593 silly get date: 'Wed, 06 Apr 2016 10:00:56 GMT',
593 silly get connection: 'keep-alive' } ]
594 verbose etag http://172.23.238.253:4873/findup-sync from cache
595 verbose get saving findup-sync to /home/vagrant/.npm/172.23.238.253_4873/findup-sync/.cache.json
596 http 304 http://172.23.238.253:4873/nopt
597 silly get cb [ 304,
597 silly get { 'x-powered-by': 'Sinopia/1.4.0',
597 silly get etag: '"ac31f107f19f555f9ffa04cbe7d2306c"',
597 silly get 'x-status-cat': 'http://flic.kr/p/aXY3dH',
597 silly get date: 'Wed, 06 Apr 2016 10:00:56 GMT',
597 silly get connection: 'keep-alive' } ]
598 verbose etag http://172.23.238.253:4873/nopt from cache
599 verbose get saving nopt to /home/vagrant/.npm/172.23.238.253_4873/nopt/.cache.json
600 verbose afterAdd /home/vagrant/.npm/grunt-legacy-util/1.0.0/package/package.json written
601 http 304 http://172.23.238.253:4873/coffee-script
602 silly get cb [ 304,
602 silly get { 'x-powered-by': 'Sinopia/1.4.0',
602 silly get etag: '"d65515112d3e21a36deba436259a316d"',
602 silly get 'x-status-cat': 'http://flic.kr/p/aXY3dH',
602 silly get date: 'Wed, 06 Apr 2016 10:00:56 GMT',
602 silly get connection: 'keep-alive' } ]
603 verbose etag http://172.23.238.253:4873/coffee-script from cache
604 verbose get saving coffee-script to /home/vagrant/.npm/172.23.238.253_4873/coffee-script/.cache.json
605 http 200 http://172.23.238.253:4873/grunt-known-options
606 silly get cb [ 200,
606 silly get { 'x-powered-by': 'Sinopia/1.4.0',
606 silly get 'content-type': 'application/json; charset=utf-8',
606 silly get etag: '"5a3010aafda8b3a4a7fbb4bc264053d0"',
606 silly get vary: 'Accept-Encoding',
606 silly get 'content-encoding': 'gzip',
606 silly get 'x-status-cat': 'http://flic.kr/p/aVuVsF',
606 silly get date: 'Wed, 06 Apr 2016 10:00:56 GMT',
606 silly get connection: 'keep-alive',
606 silly get 'transfer-encoding': 'chunked' } ]
607 verbose get saving grunt-known-options to /home/vagrant/.npm/172.23.238.253_4873/grunt-known-options/.cache.json
608 http 304 http://172.23.238.253:4873/iconv-lite
609 silly get cb [ 304,
609 silly get { 'x-powered-by': 'Sinopia/1.4.0',
609 silly get etag: '"281ca5e7317b42ca15cbb0213d0127e2"',
609 silly get 'x-status-cat': 'http://flic.kr/p/aXY3dH',
609 silly get date: 'Wed, 06 Apr 2016 10:00:56 GMT',
609 silly get connection: 'keep-alive' } ]
610 verbose etag http://172.23.238.253:4873/iconv-lite from cache
611 verbose get saving iconv-lite to /home/vagrant/.npm/172.23.238.253_4873/iconv-lite/.cache.json
612 silly addNameRange number 2 { name: 'js-yaml', range: '>=3.5.2 <3.6.0', hasData: true }
613 silly addNameRange versions [ 'js-yaml',
613 silly addNameRange [ '0.2.0',
613 silly addNameRange '0.2.1',
613 silly addNameRange '0.2.2',
613 silly addNameRange '0.3.0',
613 silly addNameRange '0.3.1',
613 silly addNameRange '0.3.2',
613 silly addNameRange '0.3.3',
613 silly addNameRange '0.3.4',
613 silly addNameRange '0.3.5',
613 silly addNameRange '0.3.6',
613 silly addNameRange '0.3.7',
613 silly addNameRange '1.0.0',
613 silly addNameRange '1.0.1',
613 silly addNameRange '1.0.2',
613 silly addNameRange '1.0.3',
613 silly addNameRange '2.0.0',
613 silly addNameRange '2.0.1',
613 silly addNameRange '2.0.2',
613 silly addNameRange '2.0.3',
613 silly addNameRange '2.0.4',
613 silly addNameRange '2.0.5',
613 silly addNameRange '2.1.0',
613 silly addNameRange '2.1.1',
613 silly addNameRange '2.1.2',
613 silly addNameRange '2.1.3',
613 silly addNameRange '3.0.0',
613 silly addNameRange '3.0.1',
613 silly addNameRange '3.0.2',
613 silly addNameRange '3.1.0',
613 silly addNameRange '3.2.1',
613 silly addNameRange '3.2.2',
613 silly addNameRange '3.2.3',
613 silly addNameRange '3.2.4',
613 silly addNameRange '3.2.5',
613 silly addNameRange '3.2.6',
613 silly addNameRange '3.2.7',
613 silly addNameRange '3.3.0',
613 silly addNameRange '3.3.1',
613 silly addNameRange '3.4.0',
613 silly addNameRange '3.4.1',
613 silly addNameRange '3.4.2',
613 silly addNameRange '3.4.3',
613 silly addNameRange '3.4.4',
613 silly addNameRange '3.4.5',
613 silly addNameRange '3.4.6',
613 silly addNameRange '3.5.0',
613 silly addNameRange '3.5.1',
613 silly addNameRange '3.5.2',
613 silly addNameRange '3.5.3',
613 silly addNameRange '3.5.4',
613 silly addNameRange '3.5.5' ] ]
614 silly addNamed [email protected]
615 verbose addNamed "3.5.5" is a plain semver version for js-yaml
616 silly addNameRange number 2 { name: 'findup-sync', range: '>=0.3.0 <0.4.0', hasData: true }
617 silly addNameRange versions [ 'findup-sync',
617 silly addNameRange [ '0.1.0',
617 silly addNameRange '0.1.1',
617 silly addNameRange '0.1.2',
617 silly addNameRange '0.1.3',
617 silly addNameRange '0.2.0',
617 silly addNameRange '0.2.1',
617 silly addNameRange '0.3.0',
617 silly addNameRange '0.4.0' ] ]
618 silly addNamed [email protected]
619 verbose addNamed "0.3.0" is a plain semver version for findup-sync
620 silly addNameRange number 2 { name: 'nopt', range: '>=3.0.6 <3.1.0', hasData: true }
621 silly addNameRange versions [ 'nopt',
621 silly addNameRange [ '1.0.0',
621 silly addNameRange '1.0.1',
621 silly addNameRange '1.0.2',
621 silly addNameRange '1.0.3',
621 silly addNameRange '1.0.4',
621 silly addNameRange '1.0.5',
621 silly addNameRange '1.0.6',
621 silly addNameRange '1.0.7',
621 silly addNameRange '1.0.8',
621 silly addNameRange '1.0.9',
621 silly addNameRange '1.0.10',
621 silly addNameRange '2.0.0',
621 silly addNameRange '2.1.0',
621 silly addNameRange '2.1.1',
621 silly addNameRange '2.1.2',
621 silly addNameRange '2.2.0',
621 silly addNameRange '2.2.1',
621 silly addNameRange '3.0.0',
621 silly addNameRange '3.0.1',
621 silly addNameRange '3.0.2',
621 silly addNameRange '3.0.3',
621 silly addNameRange '3.0.4',
621 silly addNameRange '3.0.5',
621 silly addNameRange '3.0.6' ] ]
622 silly addNamed [email protected]
623 verbose addNamed "3.0.6" is a plain semver version for nopt
624 silly addNameRange number 2 { name: 'coffee-script',
624 silly addNameRange range: '>=1.10.0 <1.11.0',
624 silly addNameRange hasData: true }
625 silly addNameRange versions [ 'coffee-script',
625 silly addNameRange [ '0.7.0',
625 silly addNameRange '0.7.1',
625 silly addNameRange '0.7.2',
625 silly addNameRange '0.9.0',
625 silly addNameRange '0.9.1',
625 silly addNameRange '0.9.2',
625 silly addNameRange '0.9.3',
625 silly addNameRange '0.9.4',
625 silly addNameRange '0.9.5',
625 silly addNameRange '0.9.6',
625 silly addNameRange '1.0.0',
625 silly addNameRange '1.0.1',
625 silly addNameRange '1.1.0',
625 silly addNameRange '1.1.1',
625 silly addNameRange '1.1.2',
625 silly addNameRange '1.1.3',
625 silly addNameRange '1.2.0',
625 silly addNameRange '1.3.0',
625 silly addNameRange '1.3.1',
625 silly addNameRange '1.3.2',
625 silly addNameRange '1.3.3',
625 silly addNameRange '1.4.0',
625 silly addNameRange '1.5.0',
625 silly addNameRange '1.6.0',
625 silly addNameRange '1.6.1',
625 silly addNameRange '1.6.2',
625 silly addNameRange '1.6.3',
625 silly addNameRange '1.7.0',
625 silly addNameRange '1.7.1',
625 silly addNameRange '1.8.0',
625 silly addNameRange '1.9.0',
625 silly addNameRange '1.9.1',