This repository has been archived by the owner on Apr 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
npm-debug.log
5128 lines (5128 loc) · 249 KB
/
npm-debug.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
0 info it worked if it ends with ok
1 verbose cli [ '/Users/itaigendler/.nvm/versions/node/v0.12.2/bin/node',
1 verbose cli '/Users/itaigendler/.nvm/versions/node/v0.12.2/bin/npm',
1 verbose cli 'install' ]
2 info using [email protected]
3 info using [email protected]
4 verbose install where, deps [ '/Users/itaigendler/workspace/userstudy',
4 verbose install [ 'express',
4 verbose install 'morgan',
4 verbose install 'body-parser',
4 verbose install 'method-override',
4 verbose install 'serve-favicon',
4 verbose install 'cookie-parser',
4 verbose install 'express-session',
4 verbose install 'errorhandler',
4 verbose install 'compression',
4 verbose install 'lodash',
4 verbose install 'ejs',
4 verbose install 'mongoose',
4 verbose install 'composable-middleware',
4 verbose install 'connect-mongo',
4 verbose install 'grunt',
4 verbose install 'grunt-autoprefixer',
4 verbose install 'grunt-wiredep',
4 verbose install 'grunt-concurrent',
4 verbose install 'grunt-contrib-clean',
4 verbose install 'grunt-contrib-concat',
4 verbose install 'grunt-contrib-copy',
4 verbose install 'grunt-contrib-cssmin',
4 verbose install 'grunt-contrib-htmlmin',
4 verbose install 'grunt-contrib-imagemin',
4 verbose install 'grunt-contrib-jshint',
4 verbose install 'grunt-contrib-uglify',
4 verbose install 'grunt-contrib-watch',
4 verbose install 'grunt-google-cdn',
4 verbose install 'grunt-newer',
4 verbose install 'grunt-ng-annotate',
4 verbose install 'grunt-rev',
4 verbose install 'grunt-svgmin',
4 verbose install 'grunt-usemin',
4 verbose install 'grunt-env',
4 verbose install 'grunt-node-inspector',
4 verbose install 'grunt-nodemon',
4 verbose install 'grunt-angular-templates',
4 verbose install 'grunt-dom-munger',
4 verbose install 'grunt-protractor-runner',
4 verbose install 'grunt-asset-injector',
4 verbose install 'grunt-karma',
4 verbose install 'grunt-build-control',
4 verbose install 'grunt-mocha-test',
4 verbose install 'grunt-contrib-sass',
4 verbose install 'jit-grunt',
4 verbose install 'time-grunt',
4 verbose install 'grunt-express-server',
4 verbose install 'grunt-open',
4 verbose install 'open',
4 verbose install 'jshint-stylish',
4 verbose install 'connect-livereload',
4 verbose install 'karma-ng-scenario',
4 verbose install 'karma-firefox-launcher',
4 verbose install 'karma-script-launcher',
4 verbose install 'karma-html2js-preprocessor',
4 verbose install 'karma-ng-jade2js-preprocessor',
4 verbose install 'karma-jasmine',
4 verbose install 'karma-chrome-launcher',
4 verbose install 'requirejs',
4 verbose install 'karma-requirejs',
4 verbose install 'karma-coffee-preprocessor',
4 verbose install 'karma-jade-preprocessor',
4 verbose install 'karma-phantomjs-launcher',
4 verbose install 'karma',
4 verbose install 'karma-ng-html2js-preprocessor',
4 verbose install 'supertest',
4 verbose install 'should' ] ]
5 verbose install where, peers [ '/Users/itaigendler/workspace/userstudy', [] ]
6 info preinstall [email protected]
7 silly cache add args [ 'body-parser@~1.5.0', null ]
8 verbose cache add spec body-parser@~1.5.0
9 silly cache add parsed spec { raw: 'body-parser@~1.5.0',
9 silly cache add scope: null,
9 silly cache add name: 'body-parser',
9 silly cache add rawSpec: '~1.5.0',
9 silly cache add spec: '>=1.5.0 <1.6.0',
9 silly cache add type: 'range' }
10 verbose addNamed body-parser@>=1.5.0 <1.6.0
11 silly addNamed semver.valid null
12 silly addNamed semver.validRange >=1.5.0 <1.6.0
13 silly addNameRange { name: 'body-parser', range: '>=1.5.0 <1.6.0', hasData: false }
14 silly mapToRegistry name body-parser
15 silly mapToRegistry using default registry
16 silly mapToRegistry registry https://registry.npmjs.org/
17 silly mapToRegistry uri https://registry.npmjs.org/body-parser
18 verbose addNameRange registry:https://registry.npmjs.org/body-parser not in flight; fetching
19 silly cache add args [ 'method-override@~1.0.0', null ]
20 verbose cache add spec method-override@~1.0.0
21 silly cache add parsed spec { raw: 'method-override@~1.0.0',
21 silly cache add scope: null,
21 silly cache add name: 'method-override',
21 silly cache add rawSpec: '~1.0.0',
21 silly cache add spec: '>=1.0.0 <1.1.0',
21 silly cache add type: 'range' }
22 verbose addNamed method-override@>=1.0.0 <1.1.0
23 silly addNamed semver.valid null
24 silly addNamed semver.validRange >=1.0.0 <1.1.0
25 silly addNameRange { name: 'method-override',
25 silly addNameRange range: '>=1.0.0 <1.1.0',
25 silly addNameRange hasData: false }
26 silly mapToRegistry name method-override
27 silly mapToRegistry using default registry
28 silly mapToRegistry registry https://registry.npmjs.org/
29 silly mapToRegistry uri https://registry.npmjs.org/method-override
30 verbose addNameRange registry:https://registry.npmjs.org/method-override not in flight; fetching
31 silly cache add args [ 'serve-favicon@~2.0.1', null ]
32 verbose cache add spec serve-favicon@~2.0.1
33 silly cache add parsed spec { raw: 'serve-favicon@~2.0.1',
33 silly cache add scope: null,
33 silly cache add name: 'serve-favicon',
33 silly cache add rawSpec: '~2.0.1',
33 silly cache add spec: '>=2.0.1 <2.1.0',
33 silly cache add type: 'range' }
34 verbose addNamed serve-favicon@>=2.0.1 <2.1.0
35 silly addNamed semver.valid null
36 silly addNamed semver.validRange >=2.0.1 <2.1.0
37 silly addNameRange { name: 'serve-favicon',
37 silly addNameRange range: '>=2.0.1 <2.1.0',
37 silly addNameRange hasData: false }
38 silly mapToRegistry name serve-favicon
39 silly mapToRegistry using default registry
40 silly mapToRegistry registry https://registry.npmjs.org/
41 silly mapToRegistry uri https://registry.npmjs.org/serve-favicon
42 verbose addNameRange registry:https://registry.npmjs.org/serve-favicon not in flight; fetching
43 silly cache add args [ 'cookie-parser@~1.0.1', null ]
44 verbose cache add spec cookie-parser@~1.0.1
45 silly cache add parsed spec { raw: 'cookie-parser@~1.0.1',
45 silly cache add scope: null,
45 silly cache add name: 'cookie-parser',
45 silly cache add rawSpec: '~1.0.1',
45 silly cache add spec: '>=1.0.1 <1.1.0',
45 silly cache add type: 'range' }
46 verbose addNamed cookie-parser@>=1.0.1 <1.1.0
47 silly addNamed semver.valid null
48 silly addNamed semver.validRange >=1.0.1 <1.1.0
49 silly addNameRange { name: 'cookie-parser',
49 silly addNameRange range: '>=1.0.1 <1.1.0',
49 silly addNameRange hasData: false }
50 silly mapToRegistry name cookie-parser
51 silly mapToRegistry using default registry
52 silly mapToRegistry registry https://registry.npmjs.org/
53 silly mapToRegistry uri https://registry.npmjs.org/cookie-parser
54 verbose addNameRange registry:https://registry.npmjs.org/cookie-parser not in flight; fetching
55 silly cache add args [ 'express-session@~1.0.2', null ]
56 verbose cache add spec express-session@~1.0.2
57 silly cache add parsed spec { raw: 'express-session@~1.0.2',
57 silly cache add scope: null,
57 silly cache add name: 'express-session',
57 silly cache add rawSpec: '~1.0.2',
57 silly cache add spec: '>=1.0.2 <1.1.0',
57 silly cache add type: 'range' }
58 verbose addNamed express-session@>=1.0.2 <1.1.0
59 silly addNamed semver.valid null
60 silly addNamed semver.validRange >=1.0.2 <1.1.0
61 silly addNameRange { name: 'express-session',
61 silly addNameRange range: '>=1.0.2 <1.1.0',
61 silly addNameRange hasData: false }
62 silly mapToRegistry name express-session
63 silly mapToRegistry using default registry
64 silly mapToRegistry registry https://registry.npmjs.org/
65 silly mapToRegistry uri https://registry.npmjs.org/express-session
66 verbose addNameRange registry:https://registry.npmjs.org/express-session not in flight; fetching
67 silly cache add args [ 'errorhandler@~1.0.0', null ]
68 verbose cache add spec errorhandler@~1.0.0
69 silly cache add parsed spec { raw: 'errorhandler@~1.0.0',
69 silly cache add scope: null,
69 silly cache add name: 'errorhandler',
69 silly cache add rawSpec: '~1.0.0',
69 silly cache add spec: '>=1.0.0 <1.1.0',
69 silly cache add type: 'range' }
70 verbose addNamed errorhandler@>=1.0.0 <1.1.0
71 silly addNamed semver.valid null
72 silly addNamed semver.validRange >=1.0.0 <1.1.0
73 silly addNameRange { name: 'errorhandler', range: '>=1.0.0 <1.1.0', hasData: false }
74 silly mapToRegistry name errorhandler
75 silly mapToRegistry using default registry
76 silly mapToRegistry registry https://registry.npmjs.org/
77 silly mapToRegistry uri https://registry.npmjs.org/errorhandler
78 verbose addNameRange registry:https://registry.npmjs.org/errorhandler not in flight; fetching
79 silly cache add args [ 'compression@~1.0.1', null ]
80 verbose cache add spec compression@~1.0.1
81 silly cache add parsed spec { raw: 'compression@~1.0.1',
81 silly cache add scope: null,
81 silly cache add name: 'compression',
81 silly cache add rawSpec: '~1.0.1',
81 silly cache add spec: '>=1.0.1 <1.1.0',
81 silly cache add type: 'range' }
82 verbose addNamed compression@>=1.0.1 <1.1.0
83 silly addNamed semver.valid null
84 silly addNamed semver.validRange >=1.0.1 <1.1.0
85 silly addNameRange { name: 'compression', range: '>=1.0.1 <1.1.0', hasData: false }
86 silly mapToRegistry name compression
87 silly mapToRegistry using default registry
88 silly mapToRegistry registry https://registry.npmjs.org/
89 silly mapToRegistry uri https://registry.npmjs.org/compression
90 verbose addNameRange registry:https://registry.npmjs.org/compression not in flight; fetching
91 silly cache add args [ 'lodash@~2.4.1', null ]
92 verbose cache add spec lodash@~2.4.1
93 silly cache add parsed spec { raw: 'lodash@~2.4.1',
93 silly cache add scope: null,
93 silly cache add name: 'lodash',
93 silly cache add rawSpec: '~2.4.1',
93 silly cache add spec: '>=2.4.1 <2.5.0',
93 silly cache add type: 'range' }
94 verbose addNamed lodash@>=2.4.1 <2.5.0
95 silly addNamed semver.valid null
96 silly addNamed semver.validRange >=2.4.1 <2.5.0
97 silly addNameRange { name: 'lodash', range: '>=2.4.1 <2.5.0', hasData: false }
98 silly mapToRegistry name lodash
99 silly mapToRegistry using default registry
100 silly mapToRegistry registry https://registry.npmjs.org/
101 silly mapToRegistry uri https://registry.npmjs.org/lodash
102 verbose addNameRange registry:https://registry.npmjs.org/lodash not in flight; fetching
103 silly cache add args [ 'ejs@~0.8.4', null ]
104 verbose cache add spec ejs@~0.8.4
105 silly cache add parsed spec { raw: 'ejs@~0.8.4',
105 silly cache add scope: null,
105 silly cache add name: 'ejs',
105 silly cache add rawSpec: '~0.8.4',
105 silly cache add spec: '>=0.8.4 <0.9.0',
105 silly cache add type: 'range' }
106 verbose addNamed ejs@>=0.8.4 <0.9.0
107 silly addNamed semver.valid null
108 silly addNamed semver.validRange >=0.8.4 <0.9.0
109 silly addNameRange { name: 'ejs', range: '>=0.8.4 <0.9.0', hasData: false }
110 silly mapToRegistry name ejs
111 silly mapToRegistry using default registry
112 silly mapToRegistry registry https://registry.npmjs.org/
113 silly mapToRegistry uri https://registry.npmjs.org/ejs
114 verbose addNameRange registry:https://registry.npmjs.org/ejs not in flight; fetching
115 silly cache add args [ 'mongoose@~3.8.8', null ]
116 verbose cache add spec mongoose@~3.8.8
117 silly cache add parsed spec { raw: 'mongoose@~3.8.8',
117 silly cache add scope: null,
117 silly cache add name: 'mongoose',
117 silly cache add rawSpec: '~3.8.8',
117 silly cache add spec: '>=3.8.8 <3.9.0',
117 silly cache add type: 'range' }
118 verbose addNamed mongoose@>=3.8.8 <3.9.0
119 silly addNamed semver.valid null
120 silly addNamed semver.validRange >=3.8.8 <3.9.0
121 silly addNameRange { name: 'mongoose', range: '>=3.8.8 <3.9.0', hasData: false }
122 silly mapToRegistry name mongoose
123 silly mapToRegistry using default registry
124 silly mapToRegistry registry https://registry.npmjs.org/
125 silly mapToRegistry uri https://registry.npmjs.org/mongoose
126 verbose addNameRange registry:https://registry.npmjs.org/mongoose not in flight; fetching
127 silly cache add args [ 'composable-middleware@^0.3.0', null ]
128 verbose cache add spec composable-middleware@^0.3.0
129 silly cache add parsed spec { raw: 'composable-middleware@^0.3.0',
129 silly cache add scope: null,
129 silly cache add name: 'composable-middleware',
129 silly cache add rawSpec: '^0.3.0',
129 silly cache add spec: '>=0.3.0 <0.4.0',
129 silly cache add type: 'range' }
130 verbose addNamed composable-middleware@>=0.3.0 <0.4.0
131 silly addNamed semver.valid null
132 silly addNamed semver.validRange >=0.3.0 <0.4.0
133 silly addNameRange { name: 'composable-middleware',
133 silly addNameRange range: '>=0.3.0 <0.4.0',
133 silly addNameRange hasData: false }
134 silly mapToRegistry name composable-middleware
135 silly mapToRegistry using default registry
136 silly mapToRegistry registry https://registry.npmjs.org/
137 silly mapToRegistry uri https://registry.npmjs.org/composable-middleware
138 verbose addNameRange registry:https://registry.npmjs.org/composable-middleware not in flight; fetching
139 silly cache add args [ 'connect-mongo@^0.4.1', null ]
140 verbose cache add spec connect-mongo@^0.4.1
141 silly cache add parsed spec { raw: 'connect-mongo@^0.4.1',
141 silly cache add scope: null,
141 silly cache add name: 'connect-mongo',
141 silly cache add rawSpec: '^0.4.1',
141 silly cache add spec: '>=0.4.1 <0.5.0',
141 silly cache add type: 'range' }
142 verbose addNamed connect-mongo@>=0.4.1 <0.5.0
143 silly addNamed semver.valid null
144 silly addNamed semver.validRange >=0.4.1 <0.5.0
145 silly addNameRange { name: 'connect-mongo',
145 silly addNameRange range: '>=0.4.1 <0.5.0',
145 silly addNameRange hasData: false }
146 silly mapToRegistry name connect-mongo
147 silly mapToRegistry using default registry
148 silly mapToRegistry registry https://registry.npmjs.org/
149 silly mapToRegistry uri https://registry.npmjs.org/connect-mongo
150 verbose addNameRange registry:https://registry.npmjs.org/connect-mongo not in flight; fetching
151 silly cache add args [ 'grunt@~0.4.4', null ]
152 verbose cache add spec grunt@~0.4.4
153 silly cache add parsed spec { raw: 'grunt@~0.4.4',
153 silly cache add scope: null,
153 silly cache add name: 'grunt',
153 silly cache add rawSpec: '~0.4.4',
153 silly cache add spec: '>=0.4.4 <0.5.0',
153 silly cache add type: 'range' }
154 verbose addNamed grunt@>=0.4.4 <0.5.0
155 silly addNamed semver.valid null
156 silly addNamed semver.validRange >=0.4.4 <0.5.0
157 silly addNameRange { name: 'grunt', range: '>=0.4.4 <0.5.0', hasData: false }
158 silly mapToRegistry name grunt
159 silly mapToRegistry using default registry
160 silly mapToRegistry registry https://registry.npmjs.org/
161 silly mapToRegistry uri https://registry.npmjs.org/grunt
162 verbose addNameRange registry:https://registry.npmjs.org/grunt not in flight; fetching
163 silly cache add args [ 'grunt-autoprefixer@~0.7.2', null ]
164 verbose cache add spec grunt-autoprefixer@~0.7.2
165 silly cache add parsed spec { raw: 'grunt-autoprefixer@~0.7.2',
165 silly cache add scope: null,
165 silly cache add name: 'grunt-autoprefixer',
165 silly cache add rawSpec: '~0.7.2',
165 silly cache add spec: '>=0.7.2 <0.8.0',
165 silly cache add type: 'range' }
166 verbose addNamed grunt-autoprefixer@>=0.7.2 <0.8.0
167 silly addNamed semver.valid null
168 silly addNamed semver.validRange >=0.7.2 <0.8.0
169 silly addNameRange { name: 'grunt-autoprefixer',
169 silly addNameRange range: '>=0.7.2 <0.8.0',
169 silly addNameRange hasData: false }
170 silly mapToRegistry name grunt-autoprefixer
171 silly mapToRegistry using default registry
172 silly mapToRegistry registry https://registry.npmjs.org/
173 silly mapToRegistry uri https://registry.npmjs.org/grunt-autoprefixer
174 verbose addNameRange registry:https://registry.npmjs.org/grunt-autoprefixer not in flight; fetching
175 silly cache add args [ 'grunt-wiredep@~1.8.0', null ]
176 verbose cache add spec grunt-wiredep@~1.8.0
177 silly cache add parsed spec { raw: 'grunt-wiredep@~1.8.0',
177 silly cache add scope: null,
177 silly cache add name: 'grunt-wiredep',
177 silly cache add rawSpec: '~1.8.0',
177 silly cache add spec: '>=1.8.0 <1.9.0',
177 silly cache add type: 'range' }
178 verbose addNamed grunt-wiredep@>=1.8.0 <1.9.0
179 silly addNamed semver.valid null
180 silly addNamed semver.validRange >=1.8.0 <1.9.0
181 silly addNameRange { name: 'grunt-wiredep',
181 silly addNameRange range: '>=1.8.0 <1.9.0',
181 silly addNameRange hasData: false }
182 silly mapToRegistry name grunt-wiredep
183 silly mapToRegistry using default registry
184 silly mapToRegistry registry https://registry.npmjs.org/
185 silly mapToRegistry uri https://registry.npmjs.org/grunt-wiredep
186 verbose addNameRange registry:https://registry.npmjs.org/grunt-wiredep not in flight; fetching
187 silly cache add args [ 'grunt-concurrent@~0.5.0', null ]
188 verbose cache add spec grunt-concurrent@~0.5.0
189 silly cache add parsed spec { raw: 'grunt-concurrent@~0.5.0',
189 silly cache add scope: null,
189 silly cache add name: 'grunt-concurrent',
189 silly cache add rawSpec: '~0.5.0',
189 silly cache add spec: '>=0.5.0 <0.6.0',
189 silly cache add type: 'range' }
190 verbose addNamed grunt-concurrent@>=0.5.0 <0.6.0
191 silly addNamed semver.valid null
192 silly addNamed semver.validRange >=0.5.0 <0.6.0
193 silly addNameRange { name: 'grunt-concurrent',
193 silly addNameRange range: '>=0.5.0 <0.6.0',
193 silly addNameRange hasData: false }
194 silly mapToRegistry name grunt-concurrent
195 silly mapToRegistry using default registry
196 silly mapToRegistry registry https://registry.npmjs.org/
197 silly mapToRegistry uri https://registry.npmjs.org/grunt-concurrent
198 verbose addNameRange registry:https://registry.npmjs.org/grunt-concurrent not in flight; fetching
199 silly cache add args [ 'grunt-contrib-clean@~0.5.0', null ]
200 verbose cache add spec grunt-contrib-clean@~0.5.0
201 silly cache add parsed spec { raw: 'grunt-contrib-clean@~0.5.0',
201 silly cache add scope: null,
201 silly cache add name: 'grunt-contrib-clean',
201 silly cache add rawSpec: '~0.5.0',
201 silly cache add spec: '>=0.5.0 <0.6.0',
201 silly cache add type: 'range' }
202 verbose addNamed grunt-contrib-clean@>=0.5.0 <0.6.0
203 silly addNamed semver.valid null
204 silly addNamed semver.validRange >=0.5.0 <0.6.0
205 silly addNameRange { name: 'grunt-contrib-clean',
205 silly addNameRange range: '>=0.5.0 <0.6.0',
205 silly addNameRange hasData: false }
206 silly mapToRegistry name grunt-contrib-clean
207 silly mapToRegistry using default registry
208 silly mapToRegistry registry https://registry.npmjs.org/
209 silly mapToRegistry uri https://registry.npmjs.org/grunt-contrib-clean
210 verbose addNameRange registry:https://registry.npmjs.org/grunt-contrib-clean not in flight; fetching
211 silly cache add args [ 'grunt-contrib-concat@~0.4.0', null ]
212 verbose cache add spec grunt-contrib-concat@~0.4.0
213 silly cache add parsed spec { raw: 'grunt-contrib-concat@~0.4.0',
213 silly cache add scope: null,
213 silly cache add name: 'grunt-contrib-concat',
213 silly cache add rawSpec: '~0.4.0',
213 silly cache add spec: '>=0.4.0 <0.5.0',
213 silly cache add type: 'range' }
214 verbose addNamed grunt-contrib-concat@>=0.4.0 <0.5.0
215 silly addNamed semver.valid null
216 silly addNamed semver.validRange >=0.4.0 <0.5.0
217 silly addNameRange { name: 'grunt-contrib-concat',
217 silly addNameRange range: '>=0.4.0 <0.5.0',
217 silly addNameRange hasData: false }
218 silly mapToRegistry name grunt-contrib-concat
219 silly mapToRegistry using default registry
220 silly mapToRegistry registry https://registry.npmjs.org/
221 silly mapToRegistry uri https://registry.npmjs.org/grunt-contrib-concat
222 verbose addNameRange registry:https://registry.npmjs.org/grunt-contrib-concat not in flight; fetching
223 silly cache add args [ 'grunt-contrib-copy@~0.5.0', null ]
224 verbose cache add spec grunt-contrib-copy@~0.5.0
225 silly cache add parsed spec { raw: 'grunt-contrib-copy@~0.5.0',
225 silly cache add scope: null,
225 silly cache add name: 'grunt-contrib-copy',
225 silly cache add rawSpec: '~0.5.0',
225 silly cache add spec: '>=0.5.0 <0.6.0',
225 silly cache add type: 'range' }
226 verbose addNamed grunt-contrib-copy@>=0.5.0 <0.6.0
227 silly addNamed semver.valid null
228 silly addNamed semver.validRange >=0.5.0 <0.6.0
229 silly addNameRange { name: 'grunt-contrib-copy',
229 silly addNameRange range: '>=0.5.0 <0.6.0',
229 silly addNameRange hasData: false }
230 silly mapToRegistry name grunt-contrib-copy
231 silly mapToRegistry using default registry
232 silly mapToRegistry registry https://registry.npmjs.org/
233 silly mapToRegistry uri https://registry.npmjs.org/grunt-contrib-copy
234 verbose addNameRange registry:https://registry.npmjs.org/grunt-contrib-copy not in flight; fetching
235 silly cache add args [ 'grunt-contrib-cssmin@~0.9.0', null ]
236 verbose cache add spec grunt-contrib-cssmin@~0.9.0
237 silly cache add parsed spec { raw: 'grunt-contrib-cssmin@~0.9.0',
237 silly cache add scope: null,
237 silly cache add name: 'grunt-contrib-cssmin',
237 silly cache add rawSpec: '~0.9.0',
237 silly cache add spec: '>=0.9.0 <0.10.0',
237 silly cache add type: 'range' }
238 verbose addNamed grunt-contrib-cssmin@>=0.9.0 <0.10.0
239 silly addNamed semver.valid null
240 silly addNamed semver.validRange >=0.9.0 <0.10.0
241 silly addNameRange { name: 'grunt-contrib-cssmin',
241 silly addNameRange range: '>=0.9.0 <0.10.0',
241 silly addNameRange hasData: false }
242 silly mapToRegistry name grunt-contrib-cssmin
243 silly mapToRegistry using default registry
244 silly mapToRegistry registry https://registry.npmjs.org/
245 silly mapToRegistry uri https://registry.npmjs.org/grunt-contrib-cssmin
246 verbose addNameRange registry:https://registry.npmjs.org/grunt-contrib-cssmin not in flight; fetching
247 silly cache add args [ 'grunt-contrib-htmlmin@~0.2.0', null ]
248 verbose cache add spec grunt-contrib-htmlmin@~0.2.0
249 silly cache add parsed spec { raw: 'grunt-contrib-htmlmin@~0.2.0',
249 silly cache add scope: null,
249 silly cache add name: 'grunt-contrib-htmlmin',
249 silly cache add rawSpec: '~0.2.0',
249 silly cache add spec: '>=0.2.0 <0.3.0',
249 silly cache add type: 'range' }
250 verbose addNamed grunt-contrib-htmlmin@>=0.2.0 <0.3.0
251 silly addNamed semver.valid null
252 silly addNamed semver.validRange >=0.2.0 <0.3.0
253 silly addNameRange { name: 'grunt-contrib-htmlmin',
253 silly addNameRange range: '>=0.2.0 <0.3.0',
253 silly addNameRange hasData: false }
254 silly mapToRegistry name grunt-contrib-htmlmin
255 silly mapToRegistry using default registry
256 silly mapToRegistry registry https://registry.npmjs.org/
257 silly mapToRegistry uri https://registry.npmjs.org/grunt-contrib-htmlmin
258 verbose addNameRange registry:https://registry.npmjs.org/grunt-contrib-htmlmin not in flight; fetching
259 silly cache add args [ 'grunt-contrib-imagemin@~0.7.1', null ]
260 verbose cache add spec grunt-contrib-imagemin@~0.7.1
261 silly cache add parsed spec { raw: 'grunt-contrib-imagemin@~0.7.1',
261 silly cache add scope: null,
261 silly cache add name: 'grunt-contrib-imagemin',
261 silly cache add rawSpec: '~0.7.1',
261 silly cache add spec: '>=0.7.1 <0.8.0',
261 silly cache add type: 'range' }
262 verbose addNamed grunt-contrib-imagemin@>=0.7.1 <0.8.0
263 silly addNamed semver.valid null
264 silly addNamed semver.validRange >=0.7.1 <0.8.0
265 silly addNameRange { name: 'grunt-contrib-imagemin',
265 silly addNameRange range: '>=0.7.1 <0.8.0',
265 silly addNameRange hasData: false }
266 silly mapToRegistry name grunt-contrib-imagemin
267 silly mapToRegistry using default registry
268 silly mapToRegistry registry https://registry.npmjs.org/
269 silly mapToRegistry uri https://registry.npmjs.org/grunt-contrib-imagemin
270 verbose addNameRange registry:https://registry.npmjs.org/grunt-contrib-imagemin not in flight; fetching
271 silly cache add args [ 'grunt-contrib-jshint@~0.10.0', null ]
272 verbose cache add spec grunt-contrib-jshint@~0.10.0
273 silly cache add parsed spec { raw: 'grunt-contrib-jshint@~0.10.0',
273 silly cache add scope: null,
273 silly cache add name: 'grunt-contrib-jshint',
273 silly cache add rawSpec: '~0.10.0',
273 silly cache add spec: '>=0.10.0 <0.11.0',
273 silly cache add type: 'range' }
274 verbose addNamed grunt-contrib-jshint@>=0.10.0 <0.11.0
275 silly addNamed semver.valid null
276 silly addNamed semver.validRange >=0.10.0 <0.11.0
277 silly addNameRange { name: 'grunt-contrib-jshint',
277 silly addNameRange range: '>=0.10.0 <0.11.0',
277 silly addNameRange hasData: false }
278 silly mapToRegistry name grunt-contrib-jshint
279 silly mapToRegistry using default registry
280 silly mapToRegistry registry https://registry.npmjs.org/
281 silly mapToRegistry uri https://registry.npmjs.org/grunt-contrib-jshint
282 verbose addNameRange registry:https://registry.npmjs.org/grunt-contrib-jshint not in flight; fetching
283 silly cache add args [ 'grunt-contrib-uglify@~0.4.0', null ]
284 verbose cache add spec grunt-contrib-uglify@~0.4.0
285 silly cache add parsed spec { raw: 'grunt-contrib-uglify@~0.4.0',
285 silly cache add scope: null,
285 silly cache add name: 'grunt-contrib-uglify',
285 silly cache add rawSpec: '~0.4.0',
285 silly cache add spec: '>=0.4.0 <0.5.0',
285 silly cache add type: 'range' }
286 verbose addNamed grunt-contrib-uglify@>=0.4.0 <0.5.0
287 silly addNamed semver.valid null
288 silly addNamed semver.validRange >=0.4.0 <0.5.0
289 silly addNameRange { name: 'grunt-contrib-uglify',
289 silly addNameRange range: '>=0.4.0 <0.5.0',
289 silly addNameRange hasData: false }
290 silly mapToRegistry name grunt-contrib-uglify
291 silly mapToRegistry using default registry
292 silly mapToRegistry registry https://registry.npmjs.org/
293 silly mapToRegistry uri https://registry.npmjs.org/grunt-contrib-uglify
294 verbose addNameRange registry:https://registry.npmjs.org/grunt-contrib-uglify not in flight; fetching
295 silly cache add args [ 'grunt-contrib-watch@~0.6.1', null ]
296 verbose cache add spec grunt-contrib-watch@~0.6.1
297 silly cache add parsed spec { raw: 'grunt-contrib-watch@~0.6.1',
297 silly cache add scope: null,
297 silly cache add name: 'grunt-contrib-watch',
297 silly cache add rawSpec: '~0.6.1',
297 silly cache add spec: '>=0.6.1 <0.7.0',
297 silly cache add type: 'range' }
298 verbose addNamed grunt-contrib-watch@>=0.6.1 <0.7.0
299 silly addNamed semver.valid null
300 silly addNamed semver.validRange >=0.6.1 <0.7.0
301 silly addNameRange { name: 'grunt-contrib-watch',
301 silly addNameRange range: '>=0.6.1 <0.7.0',
301 silly addNameRange hasData: false }
302 silly mapToRegistry name grunt-contrib-watch
303 silly mapToRegistry using default registry
304 silly mapToRegistry registry https://registry.npmjs.org/
305 silly mapToRegistry uri https://registry.npmjs.org/grunt-contrib-watch
306 verbose addNameRange registry:https://registry.npmjs.org/grunt-contrib-watch not in flight; fetching
307 silly cache add args [ 'grunt-google-cdn@~0.4.0', null ]
308 verbose cache add spec grunt-google-cdn@~0.4.0
309 silly cache add parsed spec { raw: 'grunt-google-cdn@~0.4.0',
309 silly cache add scope: null,
309 silly cache add name: 'grunt-google-cdn',
309 silly cache add rawSpec: '~0.4.0',
309 silly cache add spec: '>=0.4.0 <0.5.0',
309 silly cache add type: 'range' }
310 verbose addNamed grunt-google-cdn@>=0.4.0 <0.5.0
311 silly addNamed semver.valid null
312 silly addNamed semver.validRange >=0.4.0 <0.5.0
313 silly addNameRange { name: 'grunt-google-cdn',
313 silly addNameRange range: '>=0.4.0 <0.5.0',
313 silly addNameRange hasData: false }
314 silly mapToRegistry name grunt-google-cdn
315 silly mapToRegistry using default registry
316 silly mapToRegistry registry https://registry.npmjs.org/
317 silly mapToRegistry uri https://registry.npmjs.org/grunt-google-cdn
318 verbose addNameRange registry:https://registry.npmjs.org/grunt-google-cdn not in flight; fetching
319 silly cache add args [ 'grunt-newer@~0.7.0', null ]
320 verbose cache add spec grunt-newer@~0.7.0
321 silly cache add parsed spec { raw: 'grunt-newer@~0.7.0',
321 silly cache add scope: null,
321 silly cache add name: 'grunt-newer',
321 silly cache add rawSpec: '~0.7.0',
321 silly cache add spec: '>=0.7.0 <0.8.0',
321 silly cache add type: 'range' }
322 verbose addNamed grunt-newer@>=0.7.0 <0.8.0
323 silly addNamed semver.valid null
324 silly addNamed semver.validRange >=0.7.0 <0.8.0
325 silly addNameRange { name: 'grunt-newer', range: '>=0.7.0 <0.8.0', hasData: false }
326 silly mapToRegistry name grunt-newer
327 silly mapToRegistry using default registry
328 silly mapToRegistry registry https://registry.npmjs.org/
329 silly mapToRegistry uri https://registry.npmjs.org/grunt-newer
330 verbose addNameRange registry:https://registry.npmjs.org/grunt-newer not in flight; fetching
331 silly cache add args [ 'grunt-ng-annotate@^0.2.3', null ]
332 verbose cache add spec grunt-ng-annotate@^0.2.3
333 silly cache add parsed spec { raw: 'grunt-ng-annotate@^0.2.3',
333 silly cache add scope: null,
333 silly cache add name: 'grunt-ng-annotate',
333 silly cache add rawSpec: '^0.2.3',
333 silly cache add spec: '>=0.2.3 <0.3.0',
333 silly cache add type: 'range' }
334 verbose addNamed grunt-ng-annotate@>=0.2.3 <0.3.0
335 silly addNamed semver.valid null
336 silly addNamed semver.validRange >=0.2.3 <0.3.0
337 silly addNameRange { name: 'grunt-ng-annotate',
337 silly addNameRange range: '>=0.2.3 <0.3.0',
337 silly addNameRange hasData: false }
338 silly mapToRegistry name grunt-ng-annotate
339 silly mapToRegistry using default registry
340 silly mapToRegistry registry https://registry.npmjs.org/
341 silly mapToRegistry uri https://registry.npmjs.org/grunt-ng-annotate
342 verbose addNameRange registry:https://registry.npmjs.org/grunt-ng-annotate not in flight; fetching
343 silly cache add args [ 'grunt-rev@~0.1.0', null ]
344 verbose cache add spec grunt-rev@~0.1.0
345 silly cache add parsed spec { raw: 'grunt-rev@~0.1.0',
345 silly cache add scope: null,
345 silly cache add name: 'grunt-rev',
345 silly cache add rawSpec: '~0.1.0',
345 silly cache add spec: '>=0.1.0 <0.2.0',
345 silly cache add type: 'range' }
346 verbose addNamed grunt-rev@>=0.1.0 <0.2.0
347 silly addNamed semver.valid null
348 silly addNamed semver.validRange >=0.1.0 <0.2.0
349 silly addNameRange { name: 'grunt-rev', range: '>=0.1.0 <0.2.0', hasData: false }
350 silly mapToRegistry name grunt-rev
351 silly mapToRegistry using default registry
352 silly mapToRegistry registry https://registry.npmjs.org/
353 silly mapToRegistry uri https://registry.npmjs.org/grunt-rev
354 verbose addNameRange registry:https://registry.npmjs.org/grunt-rev not in flight; fetching
355 silly cache add args [ 'grunt-svgmin@~0.4.0', null ]
356 verbose cache add spec grunt-svgmin@~0.4.0
357 silly cache add parsed spec { raw: 'grunt-svgmin@~0.4.0',
357 silly cache add scope: null,
357 silly cache add name: 'grunt-svgmin',
357 silly cache add rawSpec: '~0.4.0',
357 silly cache add spec: '>=0.4.0 <0.5.0',
357 silly cache add type: 'range' }
358 verbose addNamed grunt-svgmin@>=0.4.0 <0.5.0
359 silly addNamed semver.valid null
360 silly addNamed semver.validRange >=0.4.0 <0.5.0
361 silly addNameRange { name: 'grunt-svgmin', range: '>=0.4.0 <0.5.0', hasData: false }
362 silly mapToRegistry name grunt-svgmin
363 silly mapToRegistry using default registry
364 silly mapToRegistry registry https://registry.npmjs.org/
365 silly mapToRegistry uri https://registry.npmjs.org/grunt-svgmin
366 verbose addNameRange registry:https://registry.npmjs.org/grunt-svgmin not in flight; fetching
367 silly cache add args [ 'grunt-usemin@~2.1.1', null ]
368 verbose cache add spec grunt-usemin@~2.1.1
369 silly cache add parsed spec { raw: 'grunt-usemin@~2.1.1',
369 silly cache add scope: null,
369 silly cache add name: 'grunt-usemin',
369 silly cache add rawSpec: '~2.1.1',
369 silly cache add spec: '>=2.1.1 <2.2.0',
369 silly cache add type: 'range' }
370 verbose addNamed grunt-usemin@>=2.1.1 <2.2.0
371 silly addNamed semver.valid null
372 silly addNamed semver.validRange >=2.1.1 <2.2.0
373 silly addNameRange { name: 'grunt-usemin', range: '>=2.1.1 <2.2.0', hasData: false }
374 silly mapToRegistry name grunt-usemin
375 silly mapToRegistry using default registry
376 silly mapToRegistry registry https://registry.npmjs.org/
377 silly mapToRegistry uri https://registry.npmjs.org/grunt-usemin
378 verbose addNameRange registry:https://registry.npmjs.org/grunt-usemin not in flight; fetching
379 silly cache add args [ 'grunt-env@~0.4.1', null ]
380 verbose cache add spec grunt-env@~0.4.1
381 silly cache add parsed spec { raw: 'grunt-env@~0.4.1',
381 silly cache add scope: null,
381 silly cache add name: 'grunt-env',
381 silly cache add rawSpec: '~0.4.1',
381 silly cache add spec: '>=0.4.1 <0.5.0',
381 silly cache add type: 'range' }
382 verbose addNamed grunt-env@>=0.4.1 <0.5.0
383 silly addNamed semver.valid null
384 silly addNamed semver.validRange >=0.4.1 <0.5.0
385 silly addNameRange { name: 'grunt-env', range: '>=0.4.1 <0.5.0', hasData: false }
386 silly mapToRegistry name grunt-env
387 silly mapToRegistry using default registry
388 silly mapToRegistry registry https://registry.npmjs.org/
389 silly mapToRegistry uri https://registry.npmjs.org/grunt-env
390 verbose addNameRange registry:https://registry.npmjs.org/grunt-env not in flight; fetching
391 silly cache add args [ 'grunt-node-inspector@~0.1.5', null ]
392 verbose cache add spec grunt-node-inspector@~0.1.5
393 silly cache add parsed spec { raw: 'grunt-node-inspector@~0.1.5',
393 silly cache add scope: null,
393 silly cache add name: 'grunt-node-inspector',
393 silly cache add rawSpec: '~0.1.5',
393 silly cache add spec: '>=0.1.5 <0.2.0',
393 silly cache add type: 'range' }
394 verbose addNamed grunt-node-inspector@>=0.1.5 <0.2.0
395 silly addNamed semver.valid null
396 silly addNamed semver.validRange >=0.1.5 <0.2.0
397 silly addNameRange { name: 'grunt-node-inspector',
397 silly addNameRange range: '>=0.1.5 <0.2.0',
397 silly addNameRange hasData: false }
398 silly mapToRegistry name grunt-node-inspector
399 silly mapToRegistry using default registry
400 silly mapToRegistry registry https://registry.npmjs.org/
401 silly mapToRegistry uri https://registry.npmjs.org/grunt-node-inspector
402 verbose addNameRange registry:https://registry.npmjs.org/grunt-node-inspector not in flight; fetching
403 silly cache add args [ 'grunt-nodemon@~0.2.0', null ]
404 verbose cache add spec grunt-nodemon@~0.2.0
405 silly cache add parsed spec { raw: 'grunt-nodemon@~0.2.0',
405 silly cache add scope: null,
405 silly cache add name: 'grunt-nodemon',
405 silly cache add rawSpec: '~0.2.0',
405 silly cache add spec: '>=0.2.0 <0.3.0',
405 silly cache add type: 'range' }
406 verbose addNamed grunt-nodemon@>=0.2.0 <0.3.0
407 silly addNamed semver.valid null
408 silly addNamed semver.validRange >=0.2.0 <0.3.0
409 silly addNameRange { name: 'grunt-nodemon',
409 silly addNameRange range: '>=0.2.0 <0.3.0',
409 silly addNameRange hasData: false }
410 silly mapToRegistry name grunt-nodemon
411 silly mapToRegistry using default registry
412 silly mapToRegistry registry https://registry.npmjs.org/
413 silly mapToRegistry uri https://registry.npmjs.org/grunt-nodemon
414 verbose addNameRange registry:https://registry.npmjs.org/grunt-nodemon not in flight; fetching
415 silly cache add args [ 'grunt-angular-templates@^0.5.4', null ]
416 verbose cache add spec grunt-angular-templates@^0.5.4
417 silly cache add parsed spec { raw: 'grunt-angular-templates@^0.5.4',
417 silly cache add scope: null,
417 silly cache add name: 'grunt-angular-templates',
417 silly cache add rawSpec: '^0.5.4',
417 silly cache add spec: '>=0.5.4 <0.6.0',
417 silly cache add type: 'range' }
418 verbose addNamed grunt-angular-templates@>=0.5.4 <0.6.0
419 silly addNamed semver.valid null
420 silly addNamed semver.validRange >=0.5.4 <0.6.0
421 silly addNameRange { name: 'grunt-angular-templates',
421 silly addNameRange range: '>=0.5.4 <0.6.0',
421 silly addNameRange hasData: false }
422 silly mapToRegistry name grunt-angular-templates
423 silly mapToRegistry using default registry
424 silly mapToRegistry registry https://registry.npmjs.org/
425 silly mapToRegistry uri https://registry.npmjs.org/grunt-angular-templates
426 verbose addNameRange registry:https://registry.npmjs.org/grunt-angular-templates not in flight; fetching
427 silly cache add args [ 'grunt-dom-munger@^3.4.0', null ]
428 verbose cache add spec grunt-dom-munger@^3.4.0
429 silly cache add parsed spec { raw: 'grunt-dom-munger@^3.4.0',
429 silly cache add scope: null,
429 silly cache add name: 'grunt-dom-munger',
429 silly cache add rawSpec: '^3.4.0',
429 silly cache add spec: '>=3.4.0 <4.0.0',
429 silly cache add type: 'range' }
430 verbose addNamed grunt-dom-munger@>=3.4.0 <4.0.0
431 silly addNamed semver.valid null
432 silly addNamed semver.validRange >=3.4.0 <4.0.0
433 silly addNameRange { name: 'grunt-dom-munger',
433 silly addNameRange range: '>=3.4.0 <4.0.0',
433 silly addNameRange hasData: false }
434 silly mapToRegistry name grunt-dom-munger
435 silly mapToRegistry using default registry
436 silly mapToRegistry registry https://registry.npmjs.org/
437 silly mapToRegistry uri https://registry.npmjs.org/grunt-dom-munger
438 verbose addNameRange registry:https://registry.npmjs.org/grunt-dom-munger not in flight; fetching
439 silly cache add args [ 'grunt-protractor-runner@^1.1.0', null ]
440 verbose cache add spec grunt-protractor-runner@^1.1.0
441 silly cache add parsed spec { raw: 'grunt-protractor-runner@^1.1.0',
441 silly cache add scope: null,
441 silly cache add name: 'grunt-protractor-runner',
441 silly cache add rawSpec: '^1.1.0',
441 silly cache add spec: '>=1.1.0 <2.0.0',
441 silly cache add type: 'range' }
442 verbose addNamed grunt-protractor-runner@>=1.1.0 <2.0.0
443 silly addNamed semver.valid null
444 silly addNamed semver.validRange >=1.1.0 <2.0.0
445 silly addNameRange { name: 'grunt-protractor-runner',
445 silly addNameRange range: '>=1.1.0 <2.0.0',
445 silly addNameRange hasData: false }
446 silly mapToRegistry name grunt-protractor-runner
447 silly mapToRegistry using default registry
448 silly mapToRegistry registry https://registry.npmjs.org/
449 silly mapToRegistry uri https://registry.npmjs.org/grunt-protractor-runner
450 verbose addNameRange registry:https://registry.npmjs.org/grunt-protractor-runner not in flight; fetching
451 silly cache add args [ 'grunt-asset-injector@^0.1.0', null ]
452 verbose cache add spec grunt-asset-injector@^0.1.0
453 silly cache add parsed spec { raw: 'grunt-asset-injector@^0.1.0',
453 silly cache add scope: null,
453 silly cache add name: 'grunt-asset-injector',
453 silly cache add rawSpec: '^0.1.0',
453 silly cache add spec: '>=0.1.0 <0.2.0',
453 silly cache add type: 'range' }
454 verbose addNamed grunt-asset-injector@>=0.1.0 <0.2.0
455 silly addNamed semver.valid null
456 silly addNamed semver.validRange >=0.1.0 <0.2.0
457 silly addNameRange { name: 'grunt-asset-injector',
457 silly addNameRange range: '>=0.1.0 <0.2.0',
457 silly addNameRange hasData: false }
458 silly mapToRegistry name grunt-asset-injector
459 silly mapToRegistry using default registry
460 silly mapToRegistry registry https://registry.npmjs.org/
461 silly mapToRegistry uri https://registry.npmjs.org/grunt-asset-injector
462 verbose addNameRange registry:https://registry.npmjs.org/grunt-asset-injector not in flight; fetching
463 silly cache add args [ 'grunt-karma@~0.8.2', null ]
464 verbose cache add spec grunt-karma@~0.8.2
465 silly cache add parsed spec { raw: 'grunt-karma@~0.8.2',
465 silly cache add scope: null,
465 silly cache add name: 'grunt-karma',
465 silly cache add rawSpec: '~0.8.2',
465 silly cache add spec: '>=0.8.2 <0.9.0',
465 silly cache add type: 'range' }
466 verbose addNamed grunt-karma@>=0.8.2 <0.9.0
467 silly addNamed semver.valid null
468 silly addNamed semver.validRange >=0.8.2 <0.9.0
469 silly addNameRange { name: 'grunt-karma', range: '>=0.8.2 <0.9.0', hasData: false }
470 silly mapToRegistry name grunt-karma
471 silly mapToRegistry using default registry
472 silly mapToRegistry registry https://registry.npmjs.org/
473 silly mapToRegistry uri https://registry.npmjs.org/grunt-karma
474 verbose addNameRange registry:https://registry.npmjs.org/grunt-karma not in flight; fetching
475 silly cache add args [ 'grunt-build-control@git+https://github.com/DaftMonk/grunt-build-control',
475 silly cache add null ]
476 verbose cache add spec grunt-build-control@git+https://github.com/DaftMonk/grunt-build-control
477 silly cache add args [ 'grunt-mocha-test@~0.10.2', null ]
478 verbose cache add spec grunt-mocha-test@~0.10.2
479 silly cache add parsed spec { raw: 'grunt-mocha-test@~0.10.2',
479 silly cache add scope: null,
479 silly cache add name: 'grunt-mocha-test',
479 silly cache add rawSpec: '~0.10.2',
479 silly cache add spec: '>=0.10.2 <0.11.0',
479 silly cache add type: 'range' }
480 verbose addNamed grunt-mocha-test@>=0.10.2 <0.11.0
481 silly addNamed semver.valid null
482 silly addNamed semver.validRange >=0.10.2 <0.11.0
483 silly addNameRange { name: 'grunt-mocha-test',
483 silly addNameRange range: '>=0.10.2 <0.11.0',
483 silly addNameRange hasData: false }
484 silly mapToRegistry name grunt-mocha-test
485 silly mapToRegistry using default registry
486 silly mapToRegistry registry https://registry.npmjs.org/
487 silly mapToRegistry uri https://registry.npmjs.org/grunt-mocha-test
488 verbose addNameRange registry:https://registry.npmjs.org/grunt-mocha-test not in flight; fetching
489 silly cache add args [ 'grunt-contrib-sass@^0.7.3', null ]
490 verbose cache add spec grunt-contrib-sass@^0.7.3
491 silly cache add parsed spec { raw: 'grunt-contrib-sass@^0.7.3',
491 silly cache add scope: null,
491 silly cache add name: 'grunt-contrib-sass',
491 silly cache add rawSpec: '^0.7.3',
491 silly cache add spec: '>=0.7.3 <0.8.0',
491 silly cache add type: 'range' }
492 verbose addNamed grunt-contrib-sass@>=0.7.3 <0.8.0
493 silly addNamed semver.valid null
494 silly addNamed semver.validRange >=0.7.3 <0.8.0
495 silly addNameRange { name: 'grunt-contrib-sass',
495 silly addNameRange range: '>=0.7.3 <0.8.0',
495 silly addNameRange hasData: false }
496 silly mapToRegistry name grunt-contrib-sass
497 silly mapToRegistry using default registry
498 silly mapToRegistry registry https://registry.npmjs.org/
499 silly mapToRegistry uri https://registry.npmjs.org/grunt-contrib-sass
500 verbose addNameRange registry:https://registry.npmjs.org/grunt-contrib-sass not in flight; fetching
501 silly cache add args [ 'jit-grunt@^0.5.0', null ]
502 verbose cache add spec jit-grunt@^0.5.0
503 silly cache add parsed spec { raw: 'jit-grunt@^0.5.0',
503 silly cache add scope: null,
503 silly cache add name: 'jit-grunt',
503 silly cache add rawSpec: '^0.5.0',
503 silly cache add spec: '>=0.5.0 <0.6.0',
503 silly cache add type: 'range' }
504 verbose addNamed jit-grunt@>=0.5.0 <0.6.0
505 silly addNamed semver.valid null
506 silly addNamed semver.validRange >=0.5.0 <0.6.0
507 silly addNameRange { name: 'jit-grunt', range: '>=0.5.0 <0.6.0', hasData: false }
508 silly mapToRegistry name jit-grunt
509 silly mapToRegistry using default registry
510 silly mapToRegistry registry https://registry.npmjs.org/
511 silly mapToRegistry uri https://registry.npmjs.org/jit-grunt
512 verbose addNameRange registry:https://registry.npmjs.org/jit-grunt not in flight; fetching
513 silly cache add args [ 'time-grunt@~0.3.1', null ]
514 verbose cache add spec time-grunt@~0.3.1
515 silly cache add parsed spec { raw: 'time-grunt@~0.3.1',
515 silly cache add scope: null,
515 silly cache add name: 'time-grunt',
515 silly cache add rawSpec: '~0.3.1',
515 silly cache add spec: '>=0.3.1 <0.4.0',
515 silly cache add type: 'range' }
516 verbose addNamed time-grunt@>=0.3.1 <0.4.0
517 silly addNamed semver.valid null
518 silly addNamed semver.validRange >=0.3.1 <0.4.0
519 silly addNameRange { name: 'time-grunt', range: '>=0.3.1 <0.4.0', hasData: false }
520 silly mapToRegistry name time-grunt
521 silly mapToRegistry using default registry
522 silly mapToRegistry registry https://registry.npmjs.org/
523 silly mapToRegistry uri https://registry.npmjs.org/time-grunt
524 verbose addNameRange registry:https://registry.npmjs.org/time-grunt not in flight; fetching
525 silly cache add args [ 'grunt-express-server@~0.4.17', null ]
526 verbose cache add spec grunt-express-server@~0.4.17
527 silly cache add parsed spec { raw: 'grunt-express-server@~0.4.17',
527 silly cache add scope: null,
527 silly cache add name: 'grunt-express-server',
527 silly cache add rawSpec: '~0.4.17',
527 silly cache add spec: '>=0.4.17 <0.5.0',
527 silly cache add type: 'range' }
528 verbose addNamed grunt-express-server@>=0.4.17 <0.5.0
529 silly addNamed semver.valid null
530 silly addNamed semver.validRange >=0.4.17 <0.5.0
531 silly addNameRange { name: 'grunt-express-server',
531 silly addNameRange range: '>=0.4.17 <0.5.0',
531 silly addNameRange hasData: false }
532 silly mapToRegistry name grunt-express-server
533 silly mapToRegistry using default registry
534 silly mapToRegistry registry https://registry.npmjs.org/
535 silly mapToRegistry uri https://registry.npmjs.org/grunt-express-server
536 verbose addNameRange registry:https://registry.npmjs.org/grunt-express-server not in flight; fetching
537 silly cache add args [ 'grunt-open@~0.2.3', null ]
538 verbose cache add spec grunt-open@~0.2.3
539 silly cache add parsed spec { raw: 'grunt-open@~0.2.3',
539 silly cache add scope: null,
539 silly cache add name: 'grunt-open',
539 silly cache add rawSpec: '~0.2.3',
539 silly cache add spec: '>=0.2.3 <0.3.0',
539 silly cache add type: 'range' }
540 verbose addNamed grunt-open@>=0.2.3 <0.3.0
541 silly addNamed semver.valid null
542 silly addNamed semver.validRange >=0.2.3 <0.3.0
543 silly addNameRange { name: 'grunt-open', range: '>=0.2.3 <0.3.0', hasData: false }
544 silly mapToRegistry name grunt-open
545 silly mapToRegistry using default registry
546 silly mapToRegistry registry https://registry.npmjs.org/
547 silly mapToRegistry uri https://registry.npmjs.org/grunt-open
548 verbose addNameRange registry:https://registry.npmjs.org/grunt-open not in flight; fetching
549 silly cache add args [ 'open@~0.0.4', null ]
550 verbose cache add spec open@~0.0.4
551 silly cache add parsed spec { raw: 'open@~0.0.4',
551 silly cache add scope: null,
551 silly cache add name: 'open',
551 silly cache add rawSpec: '~0.0.4',
551 silly cache add spec: '>=0.0.4 <0.1.0',
551 silly cache add type: 'range' }
552 verbose addNamed open@>=0.0.4 <0.1.0
553 silly addNamed semver.valid null
554 silly addNamed semver.validRange >=0.0.4 <0.1.0
555 silly addNameRange { name: 'open', range: '>=0.0.4 <0.1.0', hasData: false }
556 silly mapToRegistry name open
557 silly mapToRegistry using default registry
558 silly mapToRegistry registry https://registry.npmjs.org/
559 silly mapToRegistry uri https://registry.npmjs.org/open
560 verbose addNameRange registry:https://registry.npmjs.org/open not in flight; fetching
561 silly cache add args [ 'jshint-stylish@~0.1.5', null ]
562 verbose cache add spec jshint-stylish@~0.1.5
563 silly cache add parsed spec { raw: 'jshint-stylish@~0.1.5',
563 silly cache add scope: null,
563 silly cache add name: 'jshint-stylish',
563 silly cache add rawSpec: '~0.1.5',
563 silly cache add spec: '>=0.1.5 <0.2.0',
563 silly cache add type: 'range' }
564 verbose addNamed jshint-stylish@>=0.1.5 <0.2.0
565 silly addNamed semver.valid null
566 silly addNamed semver.validRange >=0.1.5 <0.2.0
567 silly addNameRange { name: 'jshint-stylish',
567 silly addNameRange range: '>=0.1.5 <0.2.0',
567 silly addNameRange hasData: false }
568 silly mapToRegistry name jshint-stylish
569 silly mapToRegistry using default registry
570 silly mapToRegistry registry https://registry.npmjs.org/
571 silly mapToRegistry uri https://registry.npmjs.org/jshint-stylish
572 verbose addNameRange registry:https://registry.npmjs.org/jshint-stylish not in flight; fetching
573 silly cache add args [ 'connect-livereload@~0.4.0', null ]
574 verbose cache add spec connect-livereload@~0.4.0
575 silly cache add parsed spec { raw: 'connect-livereload@~0.4.0',
575 silly cache add scope: null,
575 silly cache add name: 'connect-livereload',
575 silly cache add rawSpec: '~0.4.0',
575 silly cache add spec: '>=0.4.0 <0.5.0',
575 silly cache add type: 'range' }
576 verbose addNamed connect-livereload@>=0.4.0 <0.5.0
577 silly addNamed semver.valid null
578 silly addNamed semver.validRange >=0.4.0 <0.5.0
579 silly addNameRange { name: 'connect-livereload',
579 silly addNameRange range: '>=0.4.0 <0.5.0',
579 silly addNameRange hasData: false }
580 silly mapToRegistry name connect-livereload
581 silly mapToRegistry using default registry
582 silly mapToRegistry registry https://registry.npmjs.org/
583 silly mapToRegistry uri https://registry.npmjs.org/connect-livereload
584 verbose addNameRange registry:https://registry.npmjs.org/connect-livereload not in flight; fetching
585 silly cache add args [ 'karma-ng-scenario@~0.1.0', null ]
586 verbose cache add spec karma-ng-scenario@~0.1.0
587 silly cache add parsed spec { raw: 'karma-ng-scenario@~0.1.0',
587 silly cache add scope: null,
587 silly cache add name: 'karma-ng-scenario',
587 silly cache add rawSpec: '~0.1.0',
587 silly cache add spec: '>=0.1.0 <0.2.0',
587 silly cache add type: 'range' }
588 verbose addNamed karma-ng-scenario@>=0.1.0 <0.2.0
589 silly addNamed semver.valid null
590 silly addNamed semver.validRange >=0.1.0 <0.2.0
591 silly addNameRange { name: 'karma-ng-scenario',
591 silly addNameRange range: '>=0.1.0 <0.2.0',
591 silly addNameRange hasData: false }
592 silly mapToRegistry name karma-ng-scenario
593 silly mapToRegistry using default registry
594 silly mapToRegistry registry https://registry.npmjs.org/
595 silly mapToRegistry uri https://registry.npmjs.org/karma-ng-scenario
596 verbose addNameRange registry:https://registry.npmjs.org/karma-ng-scenario not in flight; fetching
597 silly cache add args [ 'karma-firefox-launcher@~0.1.3', null ]
598 verbose cache add spec karma-firefox-launcher@~0.1.3
599 silly cache add parsed spec { raw: 'karma-firefox-launcher@~0.1.3',
599 silly cache add scope: null,
599 silly cache add name: 'karma-firefox-launcher',
599 silly cache add rawSpec: '~0.1.3',
599 silly cache add spec: '>=0.1.3 <0.2.0',
599 silly cache add type: 'range' }
600 verbose addNamed karma-firefox-launcher@>=0.1.3 <0.2.0
601 silly addNamed semver.valid null
602 silly addNamed semver.validRange >=0.1.3 <0.2.0
603 silly addNameRange { name: 'karma-firefox-launcher',
603 silly addNameRange range: '>=0.1.3 <0.2.0',
603 silly addNameRange hasData: false }
604 silly mapToRegistry name karma-firefox-launcher
605 silly mapToRegistry using default registry
606 silly mapToRegistry registry https://registry.npmjs.org/
607 silly mapToRegistry uri https://registry.npmjs.org/karma-firefox-launcher
608 verbose addNameRange registry:https://registry.npmjs.org/karma-firefox-launcher not in flight; fetching
609 silly cache add args [ 'karma-script-launcher@~0.1.0', null ]
610 verbose cache add spec karma-script-launcher@~0.1.0
611 silly cache add parsed spec { raw: 'karma-script-launcher@~0.1.0',
611 silly cache add scope: null,
611 silly cache add name: 'karma-script-launcher',