forked from exKAZUu/RepositoryProbe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjavascript.txt
1998 lines (1998 loc) · 107 KB
/
javascript.txt
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
[TestCase(@"https://github.com/jquery/jquery.git",
@"99d735ab4662f45c3b65ea1200fa0d3e2b671111", 30340)]
[TestCase(@"https://github.com/joyent/node.git",
@"940974ed039d3c9a8befe608d9c95b2ffdb457d3", 28954)]
[TestCase(@"https://github.com/mbostock/d3.git",
@"49ba8afebb2ae813ab66dc2f48f533aa7f333c3c", 24562)]
[TestCase(@"https://github.com/angular/angular.js.git",
@"b10a4371a6592ea1c54b5b9eb401842af7f63c90", 22642)]
[TestCase(@"https://github.com/bartaz/impress.js.git",
@"d505df4e4ed20f91b589893cba306fe693ab17d3", 19873)]
[TestCase(@"https://github.com/jashkenas/backbone.git",
@"285e07b6b3d6241966866d0662595ac9611c0f61", 17626)]
[TestCase(@"https://github.com/blueimp/jQuery-File-Upload.git",
@"8dc29ded32a0f2caad86ebbdf8b23a22375ae78c", 15847)]
[TestCase(@"https://github.com/adobe/brackets.git",
@"23f4531238fcefed98885d5cc1b3c8401b1ac4fd", 15494)]
[TestCase(@"https://github.com/moment/moment.git",
@"a05fec84f049fcc4ad81e2c220f430a708458b8a", 15315)]
[TestCase(@"https://github.com/mrdoob/three.js.git",
@"4d690145512178c97d4307aecf132b636c5c22ce", 14871)]
[TestCase(@"https://github.com/hakimel/reveal.js.git",
@"9da952fea30906090446d038430186b11dba7f13", 14663)]
[TestCase(@"https://github.com/visionmedia/express.git",
@"e1ab302234d82390f280ecfb478994cdff8809b6", 13362)]
[TestCase(@"https://github.com/meteor/meteor.git",
@"e7a85a39b6803c72a3241f6b6aa455d42eb09f6f", 12130)]
[TestCase(@"https://github.com/Modernizr/Modernizr.git",
@"d3043c26388532386b682faf038d3ddba21e27ae", 11846)]
[TestCase(@"https://github.com/LearnBoost/socket.io.git",
@"94905500e492d8128e17a355ebf9885bbc4bf93b", 11351)]
[TestCase(@"https://github.com/jashkenas/underscore.git",
@"955b57335ab2b458a33465b380c322d2880aa92c", 11037)]
[TestCase(@"https://github.com/ivaynberg/select2.git",
@"100266bbb5a16eaefaa45e23de69e1e06464f97a", 10332)]
[TestCase(@"https://github.com/less/less.js.git",
@"d6d983f727f6f8342c4d439c784ab90c3c7fea0d", 10283)]
[TestCase(@"https://github.com/TryGhost/Ghost.git",
@"0806c3188e202bd15011684332d69848161840f3", 9982)]
[TestCase(@"https://github.com/emberjs/ember.js.git",
@"efd72af4ca25f246f241bcf5efd736a17c5ba87c", 9867)]
[TestCase(@"https://github.com/resume/resume.github.com.git",
@"c537d43f3eeb259578f4a0501cb5c0014edd3b72", 9746)]
[TestCase(@"https://github.com/bower/bower.git",
@"03f035cdf03ce027892a46d8e0f731dc9b950561", 9334)]
[TestCase(@"https://github.com/defunkt/jquery-pjax.git",
@"67fbdced9825864a7949c3103c4d90cf6a8b1e29", 9059)]
[TestCase(@"https://github.com/tastejs/todomvc.git",
@"35fe24713c3ed08ab8bcafcf16a58c4334713ca7", 9037)]
[TestCase(@"https://github.com/jquery/jquery-mobile.git",
@"1f95855f47bf0b4302b1749dda88a4d64b1345bf", 9031)]
[TestCase(@"https://github.com/caolan/async.git",
@"931d15412c5081e35f96dee3cc7a98d8322e7b17", 8311)]
[TestCase(@"https://github.com/jquery/jquery-ui.git",
@"919d9185f2cf586f794b367a2570368fd81f3879", 8249)]
[TestCase(@"https://github.com/Prinzhorn/skrollr.git",
@"a08d11500a50d22cfca549864e9a486c17b29c90", 8238)]
[TestCase(@"https://github.com/mozilla/pdf.js.git",
@"1b636532d680d269069ca976b02a053392ab5ab2", 8126)]
[TestCase(@"https://github.com/addyosmani/backbone-fundamentals.git",
@"7372900a65b6942d234f69f1ed982f094ff5b0bf", 7748)]
[TestCase(@"https://github.com/gruntjs/grunt.git",
@"4ae8a07d3854f5affd3002d3395725dc25648ee3", 7721)]
[TestCase(@"https://github.com/nnnick/Chart.js.git",
@"8f025f33c08c66991a12f02f908bab156a963aef", 7660)]
[TestCase(@"https://github.com/Semantic-Org/Semantic-UI.git",
@"14d97f7336efde50efddf0ddee7ebd42734afb40", 7656)]
[TestCase(@"https://github.com/ajaxorg/ace.git",
@"993df16bdb4cf80dac13f0fe8f449bb7adb05a65", 7636)]
[TestCase(@"https://github.com/EightMedia/hammer.js.git",
@"b9e3ecec174c7ae217489dc3a24540a64243692e", 7444)]
[TestCase(@"https://github.com/Leaflet/Leaflet.git",
@"c5091eefdaa88c5d924c364312f50bf5ab7ba5a5", 7297)]
[TestCase(@"https://github.com/twitter/typeahead.js.git",
@"0caa797de2bee9c7f06af08cb5579f8cdfb6a7b9", 7087)]
[TestCase(@"https://github.com/rwaldron/idiomatic.js.git",
@"4b2938bd2e2ca3251367572e3613a7a2935aba53", 6831)]
[TestCase(@"https://github.com/usablica/intro.js.git",
@"10fab7d91f0ea28e61f32812abb70112ffb3d624", 6827)]
[TestCase(@"https://github.com/rstacruz/nprogress.git",
@"4c3af762a7576632a0ca2718a53a17bdeb45efe8", 6789)]
[TestCase(@"https://github.com/scottjehl/Respond.git",
@"3fde2627484f8cb38e2bd4dbf2374cf41184b0f4", 6766)]
[TestCase(@"https://github.com/pivotal/jasmine.git",
@"00c8e372576438243a8f977b8bc7b81f04389dd6", 6653)]
[TestCase(@"https://github.com/madrobby/zepto.git",
@"579c0971f4b21ebb25831278a7012fa76494d5cc", 6550)]
[TestCase(@"https://github.com/Shopify/dashing.git",
@"ff3acd8074e57edba29bf731d3d0a8b6761f97ca", 6383)]
[TestCase(@"https://github.com/visionmedia/jade.git",
@"aa1f1f059b4ca858811c66b6d8b817ff9f41009f", 6340)]
[TestCase(@"https://github.com/browserstate/history.js.git",
@"14968aa3cf2a27335f71d26386de0a5c4073835d", 6285)]
[TestCase(@"https://github.com/janl/mustache.js.git",
@"0295646b677b8c9e15527e8b63583ed6728b77d0", 6260)]
[TestCase(@"https://github.com/ftlabs/fastclick.git",
@"3497d2e92ccc8a959c7efb326c0fc437302d5bcf", 6250)]
[TestCase(@"https://github.com/wycats/handlebars.js.git",
@"085e5e1937b442a4d4add5525db2627e825538aa", 6222)]
[TestCase(@"https://github.com/NUKnightLab/TimelineJS.git",
@"cede826f6212af83361ecd571481b5bb95f7a610", 6175)]
[TestCase(@"https://github.com/DmitryBaranovskiy/raphael.git",
@"5234aa33d04be07b0fea7627504ab4b53d872e19", 6165)]
[TestCase(@"https://github.com/fgnass/spin.js.git",
@"cdf391a8e41b6ad8f902dc9a10cae80486d472ef", 6062)]
[TestCase(@"https://github.com/wagerfield/parallax.git",
@"a42beb93b7cdcb9dbfdb0e96e5eafd5232b86ba2", 6060)]
[TestCase(@"https://github.com/desandro/masonry.git",
@"b9df286dc6a3004b8a7f90599c7ba79d09e8ce2e", 5871)]
[TestCase(@"https://github.com/balderdashy/sails.git",
@"6adfdf85eebdc6e001bacdc5098a58a1cd93aa38", 5852)]
[TestCase(@"https://github.com/xing/wysihtml5.git",
@"56960b31adc37e07797382d8e8b10109f206b19c", 5823)]
[TestCase(@"https://github.com/facebook/react.git",
@"ea361e884e1b6c8458fb64312069e89df0053883", 5638)]
[TestCase(@"https://github.com/kamens/jQuery-menu-aim.git",
@"86ac9a0782ebc417b50114c2475f2a4b106cf121", 5615)]
[TestCase(@"https://github.com/shichuan/javascript-patterns.git",
@"1a1805763e54c99359d96792e0396b47af649d6c", 5545)]
[TestCase(@"https://github.com/jrburke/requirejs.git",
@"f1c533d181da5b759adc7f6297e87d556ef02ce2", 5521)]
[TestCase(@"https://github.com/gulpjs/gulp.git",
@"160933474a7d8e566de699dbc6e2f8c4e49c1b5f", 5455)]
[TestCase(@"https://github.com/etsy/statsd.git",
@"f95dd0360fdf0e14ef2fe9080611d1b3594b6297", 5423)]
[TestCase(@"https://github.com/enyo/dropzone.git",
@"ac87ee44d7219afb091e22db0748e58ca989b466", 5409)]
[TestCase(@"https://github.com/videojs/video.js.git",
@"3bafdeef51d9f135de13fe4c51158942031ce6c2", 5242)]
[TestCase(@"https://github.com/flightjs/flight.git",
@"4b71426ac4776f09ef6c318f4b01c3fbee31b127", 5185)]
[TestCase(@"https://github.com/carhartl/jquery-cookie.git",
@"9481ec9eb649e10cd8650d58c0170a36b2da10e7", 5173)]
[TestCase(@"https://github.com/peachananr/onepage-scroll.git",
@"fb65fb933553220982fe2c96da2bdc5afb52475b", 5145)]
[TestCase(@"https://github.com/kriskowal/q.git",
@"93c00699f22354973e0bccf800d7f03c9413d0d8", 5049)]
[TestCase(@"https://github.com/kenwheeler/slick.git",
@"027e8fe6320d2031303acfdbb3b8531d61743093", 4958)]
[TestCase(@"https://github.com/FredrikNoren/ungit.git",
@"91c2681cfd9816db2973a06fd5b1c1f81f4f5746", 4947)]
[TestCase(@"https://github.com/Widen/fine-uploader.git",
@"55166f33438e4915045f17d8c4e1adea008af19b", 4901)]
[TestCase(@"https://github.com/jquery-ui-bootstrap/jquery-ui-bootstrap.git",
@"439e6662414f4dc7feb2032186d1f2a784f6455d", 4886)]
[TestCase(@"https://github.com/guillaumepotier/Parsley.js.git",
@"2f5ebd0422a2c1207738c212563b5da16b2bb032", 4848)]
[TestCase(@"https://github.com/knockout/knockout.git",
@"80120969d8cb5341325f76ec1e74dde6e2af00fc", 4846)]
[TestCase(@"https://github.com/rstacruz/jquery.transit.git",
@"857c438ed80120f20052edd78872175bff4343dc", 4834)]
[TestCase(@"https://github.com/mishoo/UglifyJS.git",
@"2bc1d02363db3798d5df41fb5059a19edca9b7eb", 4810)]
[TestCase(@"https://github.com/ccampbell/mousetrap.git",
@"afaaf95f984f2e2a80670b980d421683ac42eed6", 4777)]
[TestCase(@"https://github.com/marionettejs/backbone.marionette.git",
@"84e735d7d7cf85957fe08caebcd086cf7ee11e42", 4743)]
[TestCase(@"https://github.com/lodash/lodash.git",
@"7384c42d7a7e63804fd8503cecbc26c13c25eb2a", 4723)]
[TestCase(@"https://github.com/LearnBoost/mongoose.git",
@"f243bc9453a3c43cd00f89d0df0f7feb097f3668", 4704)]
[TestCase(@"https://github.com/scottjehl/picturefill.git",
@"bc7b1250a2d7795210f9f1f4650de61ceb117d0f", 4687)]
[TestCase(@"https://github.com/ajaxorg/cloud9.git",
@"5b62a7c83445ccba9f50592d41a7128b1f1fe868", 4681)]
[TestCase(@"https://github.com/angular/angular-seed.git",
@"d38e34855b4bda3efaeed63a81844ef94331e3b2", 4668)]
[TestCase(@"https://github.com/driftyco/ionic.git",
@"14a2790749f2d65ec6f0c652d5aac7a4a9d72c24", 4663)]
[TestCase(@"https://github.com/angular-ui/bootstrap.git",
@"2423f6d4c05cb0eb3fd2104dedbeb0e3740f7f68", 4610)]
[TestCase(@"https://github.com/Kicksend/mailcheck.git",
@"5ff8678cc4b7ec36c4442ccc6213910aa734f4d7", 4536)]
[TestCase(@"https://github.com/javve/list.js.git",
@"9754c28262b07e647e0ad3de181cdb4e323e7db7", 4533)]
[TestCase(@"https://github.com/mikeal/request.git",
@"6a4fd9ad6f57ba27a24f7cea01d0c702f7f5fefa", 4507)]
[TestCase(@"https://github.com/HPNeo/gmaps.git",
@"edbb7362d6fd050a38bded00a7396a760d3f556a", 4494)]
[TestCase(@"https://github.com/hakimel/Ladda.git",
@"5ec83261fbd2fd2613ec8efe83c90996ac289e7c", 4479)]
[TestCase(@"https://github.com/marijnh/CodeMirror.git",
@"8a6778baf496da5c80fe785304fdd0e3d5ec8adb", 4461)]
[TestCase(@"https://github.com/desandro/isotope.git",
@"829eaeadc6434e4d313b627ccff4e74c759a1051", 4437)]
[TestCase(@"https://github.com/gollum/gollum.git",
@"ff82ddea9740b1ca7206c17af4f55a6250ba3cfd", 4386)]
[TestCase(@"https://github.com/visionmedia/mocha.git",
@"638e049cfae48f35493c8b4bf3c5debe5691d751", 4346)]
[TestCase(@"https://github.com/senchalabs/connect.git",
@"bed911ebb94c7c682fe6a72ae6414eed69301c34", 4286)]
[TestCase(@"https://github.com/jakiestfu/Snap.js.git",
@"8538051df8e2c82a39d2603b6dfd8219ce8f04e6", 4284)]
[TestCase(@"https://github.com/eternicode/bootstrap-datepicker.git",
@"8bc254a136110369684dc05a48171682ff1f3a81", 4274)]
[TestCase(@"https://github.com/marmelab/gremlins.js.git",
@"06d1d0f9abffdad9d72f31d2d3337e7d1a567de2", 4273)]
[TestCase(@"https://github.com/node-inspector/node-inspector.git",
@"a7c4fa23a46af15cf265ec4662f6340ccb40f337", 4260)]
[TestCase(@"https://github.com/substack/node-browserify.git",
@"2bfdd64ef45e5c1760fe8fa90e2c80033a238d12", 4246)]
[TestCase(@"https://github.com/backbone-boilerplate/backbone-boilerplate.git",
@"c698a5482b2ee7369d4972bfa3faed8f8709ea1b", 4212)]
[TestCase(@"https://github.com/shutterstock/rickshaw.git",
@"71877d994a81d39a003e3638b751ac5e6d6c87c6", 4205)]
[TestCase(@"https://github.com/douglascrockford/JSON-js.git",
@"3d7767b6b1f3da363c625ff54e63bbf20e9e83ac", 4198)]
[TestCase(@"https://github.com/LearnBoost/stylus.git",
@"44fa9ddc6a1e55d8f0b3cec382291619b6ac33c3", 4187)]
[TestCase(@"https://github.com/davatron5000/FitText.js.git",
@"1eb8a337ab9999166ae1b328f46cda60a13b4aab", 4148)]
[TestCase(@"https://github.com/npm/npm.git",
@"6be6b4b74e5fd256a1bdfa098ea6541c62b30928", 4134)]
[TestCase(@"https://github.com/nodejitsu/forever.git",
@"09d8403bcde961afadd8dba3daecab47ad213989", 4132)]
[TestCase(@"https://github.com/mozilla/togetherjs.git",
@"aabd258007828fc7ec3949fbd82374eb03061bce", 4119)]
[TestCase(@"https://github.com/mleibman/SlickGrid.git",
@"33e75b07bfd769349525dc084d987c406fc03e24", 4068)]
[TestCase(@"https://github.com/stubbornella/oocss.git",
@"0c146a17e13d7b9d5797ffbf2805ce482cbddd9b", 4062)]
[TestCase(@"https://github.com/GoodBoyDigital/pixi.js.git",
@"d90b75755a88a355b61c64a64f127214165ee4f5", 4059)]
[TestCase(@"https://github.com/dimsemenov/Magnific-Popup.git",
@"3a35b057de57535db87826886acb91c15ddfa384", 4058)]
[TestCase(@"https://github.com/unconed/TermKit.git",
@"2d368b849d6185df661bf89f742455875c00da2a", 4053)]
[TestCase(@"https://github.com/sindresorhus/pageres.git",
@"2213ebcecd8e5cff45bc5691113ad8c6069fac36", 4046)]
[TestCase(@"https://github.com/imakewebthings/deck.js.git",
@"63b55fea6b92d442e20fb64446783d9f2ac7c85b", 4020)]
[TestCase(@"https://github.com/VerbalExpressions/JSVerbalExpressions.git",
@"db1cb79cf0d6c2dd7f5f4dc1b3c4a961052dcf3c", 4006)]
[TestCase(@"https://github.com/madrobby/keymaster.git",
@"21e3785a1c3509161c4d812d42d1f9a604b82825", 3991)]
[TestCase(@"https://github.com/Polymer/polymer.git",
@"ebae29364a9462c5ba5f89a1a689c9c280d54904", 3965)]
[TestCase(@"https://github.com/photonstorm/phaser.git",
@"4c31623e6e89e1f68ad910cb026a9d86f50287e3", 3950)]
[TestCase(@"https://github.com/briangonzalez/jquery.adaptive-backgrounds.js.git",
@"cfe1ec04167ae8c341e0404f62d94063c1112bd9", 3945)]
[TestCase(@"https://github.com/amsul/pickadate.js.git",
@"18c62b215be96fb72fb6bbb3b84ee3e789dd48e1", 3943)]
[TestCase(@"https://github.com/adobe-webplatform/Snap.svg.git",
@"f94872941f4f833e2f1feb88c2ef1c43d83a88b4", 3919)]
[TestCase(@"https://github.com/linnovate/mean.git",
@"5a0c1693c58fb436541015c12603306294afe60e", 3897)]
[TestCase(@"https://github.com/getify/You-Dont-Know-JS.git",
@"6cc6fc3c318372dc63f24c3d13e7f2063cff3b03", 3869)]
[TestCase(@"https://github.com/aFarkas/html5shiv.git",
@"3013608075d82c4eaea0d6eeb5af0273f63e4938", 3842)]
[TestCase(@"https://github.com/thebird/Swipe.git",
@"32c19c95ea09092167cd07cc783da24f79f5adf6", 3821)]
[TestCase(@"https://github.com/cubiq/iscroll.git",
@"44d992bcaf1b6bb3eb69c43b9776247b0ab062ff", 3798)]
[TestCase(@"https://github.com/jzaefferer/jquery-validation.git",
@"13d56eb009d2b3d767e1de6d8926f337c41e6c3f", 3790)]
[TestCase(@"https://github.com/mozilla/BrowserQuest.git",
@"af32d247cac3495ca430d0effbb88dd5f3250b2c", 3763)]
[TestCase(@"https://github.com/imakewebthings/jquery-waypoints.git",
@"6c7d129433343d04feca94310f117a966dab4721", 3749)]
[TestCase(@"https://github.com/paperjs/paper.js.git",
@"9ccba17fbefa5a29a3ac359ad3d822caee6e98ff", 3730)]
[TestCase(@"https://github.com/ducksboard/gridster.js.git",
@"a4f3baf38ffdffdc8b7cccd55a8f2667a593adf7", 3725)]
[TestCase(@"https://github.com/jschr/bootstrap-modal.git",
@"47cb49a43fcf6e2c4cea40b9a65ac6595b3cc06b", 3679)]
[TestCase(@"https://github.com/mindmup/bootstrap-wysiwyg.git",
@"9304f95917d603d813a9a9fd2670a586e5d74cde", 3647)]
[TestCase(@"https://github.com/tommoor/tinycon.git",
@"0c860eecb63386ace9df16cbfc7897da3c664b84", 3629)]
[TestCase(@"https://github.com/WickyNilliams/headroom.js.git",
@"1778e521e9978e17b2f0f826f72fd2e0b61c21a7", 3624)]
[TestCase(@"https://github.com/fabien-d/alertify.js.git",
@"8492f15459efed9e5cbdeeaa879fa5796ce78170", 3598)]
[TestCase(@"https://github.com/jhollingworth/bootstrap-wysihtml5.git",
@"283bb8f859977ac1aafb09bee715a1190f8cfd1b", 3592)]
[TestCase(@"https://github.com/adam-p/markdown-here.git",
@"6f5222e45129db32838edd7e6e5c241d391f9de0", 3509)]
[TestCase(@"https://github.com/koajs/koa.git",
@"430246c114e2782bcb0a2bb69842fbd78b0fcbab", 3501)]
[TestCase(@"https://github.com/aterrien/jQuery-Knob.git",
@"1a6d5811fbf4f0d5508718a1d03e2cdb34cb6ed2", 3488)]
[TestCase(@"https://github.com/ExactTarget/fuelux.git",
@"ebc519903c35356eaaa7c04f1dcad3e469cda0fc", 3480)]
[TestCase(@"https://github.com/jacomyal/sigma.js.git",
@"7bd4b61f4f892c3531582436cd3213a2a8ef6b52", 3472)]
[TestCase(@"https://github.com/ether/etherpad-lite.git",
@"962b166c3aa54889652db4d19c74fa6a25ec1b53", 3464)]
[TestCase(@"https://github.com/maroslaw/rainyday.js.git",
@"ddd1a085f489e15165c69923fa50fa4e636b9de2", 3451)]
[TestCase(@"https://github.com/chjj/marked.git",
@"dc3b344e82a0548c2faf290135d9447c06bd2574", 3436)]
[TestCase(@"https://github.com/square/crossfilter.git",
@"6c84abd3d22cfd1594ce846b5d5edcec15a317a5", 3436)]
[TestCase(@"https://github.com/OscarGodson/EpicEditor.git",
@"628020033d28f0d64fe8a3cf1e6e5ca441cbb3fc", 3436)]
[TestCase(@"https://github.com/GitbookIO/gitbook.git",
@"f43e630528be43d5aec4e6f923b0f53107f93546", 3413)]
[TestCase(@"https://github.com/brianreavis/selectize.js.git",
@"d6a6f53625f5d9c4de9337978e05b80136983990", 3411)]
[TestCase(@"https://github.com/jaredhanson/passport.git",
@"298d2452430dd0d1841d417e9c0d0b23e4b06239", 3380)]
[TestCase(@"https://github.com/h5bp/mobile-boilerplate.git",
@"36661edc9092730346f66fe0d7785712604ffc41", 3376)]
[TestCase(@"https://github.com/headjs/headjs.git",
@"edc8427191a633d80e7372c49e6d28a098be766f", 3351)]
[TestCase(@"https://github.com/twitter/hogan.js.git",
@"b1328c06eedf316bbe4c54b189ecb47cff7ac2ed", 3338)]
[TestCase(@"https://github.com/CreateJS/EaselJS.git",
@"0374f486f0824b6da518b3a73faf084032596e81", 3316)]
[TestCase(@"https://github.com/paulasmuth/fnordmetric.git",
@"d402c92fe6c880da28a27d3a5fa441965f55bd3d", 3310)]
[TestCase(@"https://github.com/blasten/turn.js.git",
@"08c1f6599a1412b145c7bf645a1f28c14db12742", 3303)]
[TestCase(@"https://github.com/alvarotrigo/fullPage.js.git",
@"9c149a3b43fd5450f2cc6d0dc7cd7bc5b6edd01e", 3279)]
[TestCase(@"https://github.com/felixge/node-mysql.git",
@"f37cf8d0ba86edf712183940a9a9a05d3517d4ae", 3275)]
[TestCase(@"https://github.com/flot/flot.git",
@"3aec7ce0bd975e452ff49107905a06146fe9e560", 3268)]
[TestCase(@"https://github.com/jackmoore/colorbox.git",
@"f0a70f32221355c73a3a7c7dd85a0b9ec9011d47", 3257)]
[TestCase(@"https://github.com/vitalets/x-editable.git",
@"f32802f48a33b8a7ec9cca32eec4ca844b7d39b2", 3250)]
[TestCase(@"https://github.com/remy/html5demos.git",
@"0e4aff9432c3e34f3ef8b3726461e9dfd1bd43ea", 3247)]
[TestCase(@"https://github.com/mgcrea/angular-strap.git",
@"a3ff0667f4897b210c70f350f9a994c6cd391747", 3224)]
[TestCase(@"https://github.com/jshint/jshint.git",
@"20e2bee28242fa627e3a98087dda8713850941a9", 3187)]
[TestCase(@"https://github.com/square/cube.git",
@"084bebe6839ffbd442010427f017e38e0fe0bef7", 3183)]
[TestCase(@"https://github.com/madebymany/sir-trevor-js.git",
@"9be4a0694d854d7c5354d06a83ce6e3b86eae4f8", 3176)]
[TestCase(@"https://github.com/benweet/stackedit.git",
@"1d7308ebaa09679e96126345a4818bdd24d96f2f", 3164)]
[TestCase(@"https://github.com/codeparty/derby.git",
@"a84ba83f2fc0daf089c4c2f7de46d84fdbe138ab", 3144)]
[TestCase(@"https://github.com/Unitech/pm2.git",
@"3a7932325d1f41f5fb08c949be64b885f47b7a51", 3130)]
[TestCase(@"https://github.com/remy/nodemon.git",
@"787bebf1ac635c79f0a0d8fc1921ef338f0e1779", 3126)]
[TestCase(@"https://github.com/phonegap/phonegap-start.git",
@"62fae0a8bd18ce15adf1e9485c819f79e9994663", 3119)]
[TestCase(@"https://github.com/niklasvh/html2canvas.git",
@"454524cc4041cf6eef3df76f87cfef4a0e9e7c09", 3112)]
[TestCase(@"https://github.com/jimhigson/oboe.js.git",
@"6b1ec90658ece4d19a9567a5e7786396391e4570", 3095)]
[TestCase(@"https://github.com/NetEase/pomelo.git",
@"a077c4044dfa0e086b552e234e545353cb18d436", 3090)]
[TestCase(@"https://github.com/square/cubism.git",
@"7181f11f54eda094abac15d14c7c6a3a11633d3e", 3082)]
[TestCase(@"https://github.com/dieulot/instantclick.git",
@"a92fd5c9d9f10929e1a482c4b07bf72b5fc1acf5", 3077)]
[TestCase(@"https://github.com/Diogenesthecynic/FullScreenMario.git",
@"cbd53d0f504ed6bc0d69180d1188faebf1960d6f", 3073)]
[TestCase(@"https://github.com/jquery/sizzle.git",
@"bd428012b95c333f39685a0abb4e94e7f108c813", 3067)]
[TestCase(@"https://github.com/imsky/holder.git",
@"1a299d6bb214f15b44577785cfeaf6ee7593e516", 3048)]
[TestCase(@"https://github.com/mgonto/restangular.git",
@"8e65e1c8e6307e23cae1540415003023bc07bece", 3044)]
[TestCase(@"https://github.com/needim/noty.git",
@"942473303dfa0b296d9aa316fa0a111e0cab1b4d", 3043)]
[TestCase(@"https://github.com/component/component.git",
@"fe2aae08eebee54fe80ed4b458232d2f7d8fa6bc", 3042)]
[TestCase(@"https://github.com/segmentio/myth.git",
@"e22b58562c6285a38d95b7fa5d3afc8a52764c8a", 2986)]
[TestCase(@"https://github.com/angular-app/angular-app.git",
@"9b11c05eae688903b8ed797fd09bb2ac13cc3d52", 2984)]
[TestCase(@"https://github.com/kenkeiter/skeuocard.git",
@"2d3067e4c19e90ad9dc1d3e6de72e007e8f8417e", 2969)]
[TestCase(@"https://github.com/daviferreira/medium-editor.git",
@"73938c780eca8ee8eaf662159b7f80ded9faa68a", 2958)]
[TestCase(@"https://github.com/n1k0/casperjs.git",
@"ff12c243ee66e674a8fccf534916142a004b0921", 2957)]
[TestCase(@"https://github.com/BBC-News/Imager.js.git",
@"ef6d6a5ec3c506ced7ff46db3ac003639ff31eac", 2956)]
[TestCase(@"https://github.com/davatron5000/FitVids.js.git",
@"2f4fbf3389e9ae65ae73fb1e1a2c1db4b4ebc6c4", 2956)]
[TestCase(@"https://github.com/kangax/fabric.js.git",
@"c53089a60a4bff1f9db916146ef2bf5639d1c03f", 2937)]
[TestCase(@"https://github.com/simplefocus/FlowType.JS.git",
@"a97f341dfc2c7e81cda21e04d8531a7e6084563d", 2928)]
[TestCase(@"https://github.com/bebraw/jswiki.git",
@"2b6758e1f706c52224938b4efe2b4e21b14fb494", 2925)]
[TestCase(@"https://github.com/paulirish/infinite-scroll.git",
@"3ffe36bf4fe7df254b3e4ce273bbed6036633fe2", 2913)]
[TestCase(@"https://github.com/nodejitsu/node-http-proxy.git",
@"c54278bd3b00e82f4253393b6f6beb1d5a1b19e5", 2906)]
[TestCase(@"https://github.com/socketstream/socketstream.git",
@"86afc6679c90f86cb90fcb3409a86c6c6e619812", 2903)]
[TestCase(@"https://github.com/arshaw/fullcalendar.git",
@"0dfc25afcb99c4d1e89f51f8a1ebf71790aa3cf1", 2883)]
[TestCase(@"https://github.com/warpech/jquery-handsontable.git",
@"29d60f31c7c52709552ce0a9673c0e01c4b96a18", 2874)]
[TestCase(@"https://github.com/julianlloyd/scrollReveal.js.git",
@"df0703c3e8c255a687a36dd317f1ce5611f8ac96", 2871)]
[TestCase(@"https://github.com/jquery/qunit.git",
@"04e0337cc7fba5c08fc8a7fc8542cadd062f1b03", 2863)]
[TestCase(@"https://github.com/sergeche/emmet-sublime.git",
@"5be4cd455dce62c0940a20a2b61c9c4df1c2c3c6", 2861)]
[TestCase(@"https://github.com/tmpvar/jsdom.git",
@"985dfa0ddec9ad78a5c44a9d47b7c8e57c0bc840", 2845)]
[TestCase(@"https://github.com/mongodb/node-mongodb-native.git",
@"046f09d8ab69d86eadce9389d8ca100637d17a12", 2820)]
[TestCase(@"https://github.com/HubSpot/tether.git",
@"0cffd407457837d848e360528a48ee066ea68a7d", 2812)]
[TestCase(@"https://github.com/rendrjs/rendr.git",
@"1bc92de90356c791501359ab9123d0a29083a327", 2799)]
[TestCase(@"https://github.com/sstephenson/prototype.git",
@"3523295165460a1a371f248454bc311103294f13", 2789)]
[TestCase(@"https://github.com/woothemes/FlexSlider.git",
@"f0e9b4cf3f89ab2a0cd8fb0b7593f81defc02eda", 2768)]
[TestCase(@"https://github.com/fontello/fontello.git",
@"270c1b7244f5eba06d6307a423aa0ce5c00fc679", 2764)]
[TestCase(@"https://github.com/cheeriojs/cheerio.git",
@"ccf11866e61103e7cb2b4cd26d4905cfdcdd6ef8", 2754)]
[TestCase(@"https://github.com/subprotocol/verlet-js.git",
@"271af753940d8eb67cd2b0b37934d204ab2497da", 2706)]
[TestCase(@"https://github.com/bnoguchi/everyauth.git",
@"531d7fa7748b2d9dfd753ee5124e79c871174481", 2698)]
[TestCase(@"https://github.com/aurajs/aura.git",
@"49028aa0f3ce7d9d3be57c23fa61e38e34523176", 2680)]
[TestCase(@"https://github.com/desandro/imagesloaded.git",
@"ffd3fcfa3ef94329a2fe280c7fb25230188d5d60", 2678)]
[TestCase(@"https://github.com/share/ShareJS.git",
@"883ce06624ee327e9cf1c23c36de0c408ea449d7", 2672)]
[TestCase(@"https://github.com/angular-ui/ui-router.git",
@"730b76f59770009967f9691ddeecba9fbbef4cb2", 2669)]
[TestCase(@"https://github.com/mathiasbynens/jquery-placeholder.git",
@"051f21ef5279f4887d9caf6af7af211d933ba670", 2669)]
[TestCase(@"https://github.com/tuupola/jquery_lazyload.git",
@"3886efeeea930119a6ef2cf5da7a86d5ab295298", 2662)]
[TestCase(@"https://github.com/rigoneri/syte.git",
@"28b95bbd3f96062d600f548d5ff21d828a943b99", 2654)]
[TestCase(@"https://github.com/tholman/zenpen.git",
@"3fccd8703a30dd8425827b9b59604d2d3dd8cfdf", 2645)]
[TestCase(@"https://github.com/isagalaev/highlight.js.git",
@"8f7cbd091e127da76871d0b64ebf8ec56388899c", 2633)]
[TestCase(@"https://github.com/zeroclipboard/zeroclipboard.git",
@"10b11929f2204b808dbd184ef13d83d699d370d3", 2605)]
[TestCase(@"https://github.com/spine/spine.git",
@"88090af8eb05893cc6b2becf30c45e4312020f32", 2602)]
[TestCase(@"https://github.com/dangrossman/bootstrap-daterangepicker.git",
@"f59ce54c422531550a181099956994a55b16cce4", 2595)]
[TestCase(@"https://github.com/icodeforlove/node-requester.git",
@"6ba437c8207e0cc3453179b636c0ba9755186b1e", 2583)]
[TestCase(@"https://github.com/mozilla/localForage.git",
@"fcbc0493ac11501eabf29a193f4b5ace3debb129", 2572)]
[TestCase(@"https://github.com/srobbin/jquery-backstretch.git",
@"241a3450ddbdf45b567a0f7d71cb35116c624f2a", 2558)]
[TestCase(@"https://github.com/viljamis/responsive-nav.js.git",
@"f07405b60a0f86f9c5936c2e536d3928f04ba6f1", 2554)]
[TestCase(@"https://github.com/krakenjs/kraken-js.git",
@"2cf6fd57264b25bbca447b2e601c8edc8059770b", 2530)]
[TestCase(@"https://github.com/ractivejs/ractive.git",
@"c4b3749737f1b8cd1e660f5bb95ee87db3592f99", 2528)]
[TestCase(@"https://github.com/GoogleChrome/chrome-app-samples.git",
@"b536b39958f99c39218a28c4488c96fbd2cf8b3e", 2526)]
[TestCase(@"https://github.com/jonobr1/two.js.git",
@"eb5e5cf81a0f01d630981412a9eae0574e8a5bd7", 2514)]
[TestCase(@"https://github.com/mnutt/hummingbird.git",
@"72d90e0865a87593e33927a125bd9c2b2db033bb", 2514)]
[TestCase(@"https://github.com/yui/yui3.git",
@"94542137a75fa105733802cac0e89fa2ba291e2a", 2512)]
[TestCase(@"https://github.com/substack/stream-handbook.git",
@"a397be7b6bff6e4f933261fab13ae1266fbb6114", 2511)]
[TestCase(@"https://github.com/imulus/retinajs.git",
@"a70e73639817473bad7bbb33f866b8e060e5f5a7", 2510)]
[TestCase(@"https://github.com/jakiestfu/Medium.js.git",
@"001f110b0171cc4e5b733c05a19a34f5baebbf0b", 2493)]
[TestCase(@"https://github.com/blakeembrey/code-problems.git",
@"86728d4d4a6f0137ec143210f64b3fd956b4f7f6", 2490)]
[TestCase(@"https://github.com/es-shims/es5-shim.git",
@"f666abd9d32b77a71469a1734652e0e0c0cd1de3", 2489)]
[TestCase(@"https://github.com/rmm5t/jquery-timeago.git",
@"9fac817b07ae90b1d287b80828d377cb1437aad7", 2488)]
[TestCase(@"https://github.com/faye/faye.git",
@"0ee53c31b1e0ac9ca8217f48aa5f7613effa4bc9", 2484)]
[TestCase(@"https://github.com/lojjic/PIE.git",
@"919368fcbcc45fc0136ba9341cc579e6e4c01581", 2480)]
[TestCase(@"https://github.com/HubSpot/messenger.git",
@"36a2691cdabfa124a4c72b8dea51b960ff0e24a1", 2479)]
[TestCase(@"https://github.com/segmentio/analytics.js.git",
@"580875b5c6fc812993b46d42d9fc7d1e83b98c12", 2474)]
[TestCase(@"https://github.com/quirkey/sammy.git",
@"ec821bbdd1cab46918c4a86a70c5055508258af8", 2458)]
[TestCase(@"https://github.com/ejci/favico.js.git",
@"0fedf40fd886b5e4a56c1bc3bb3c3c31554d0d87", 2451)]
[TestCase(@"https://github.com/angular-ui/angular-ui-OLDREPO.git",
@"e45763dbc2e28654e130e45116a001718c1a972d", 2438)]
[TestCase(@"https://github.com/ericdrowell/KineticJS.git",
@"0bba93c4fa8e41cbd89cad53c63c3607a39535e6", 2430)]
[TestCase(@"https://github.com/seajs/seajs.git",
@"26ded8ef81ca206076e9e4114fdf5b2aa2bfbc6c", 2416)]
[TestCase(@"https://github.com/IronSummitMedia/startbootstrap.git",
@"6372da31df270ba23199d7b51f4779f4433e00d4", 2414)]
[TestCase(@"https://github.com/janpaepke/ScrollMagic.git",
@"7410b2eb3cc106b0a24e341d345be7232e92218f", 2405)]
[TestCase(@"https://github.com/pouchdb/pouchdb.git",
@"3d062ac440b07e04b55e39dc84a8f5e98bd39c0b", 2404)]
[TestCase(@"https://github.com/JoelBesada/scrollpath.git",
@"d3a388efbce68a8b646c49f43c03fc6819e1b26e", 2395)]
[TestCase(@"https://github.com/moot/riotjs.git",
@"b575eaaec74eba4503602523f2b54bffb0f2f8d9", 2393)]
[TestCase(@"https://github.com/johndyer/mediaelement.git",
@"743f4465231dc20e6f9e96a5cb8b9d5299ceddd3", 2371)]
[TestCase(@"https://github.com/brianchirls/Seriously.js.git",
@"3b39bc0074b164fe6742061c814f8bb3d3a1b5be", 2368)]
[TestCase(@"https://github.com/madrobby/scriptaculous.git",
@"1e63ff33894d230be151856a79a29c533df18727", 2366)]
[TestCase(@"https://github.com/moxiecode/plupload.git",
@"f0e4526428fe82a4f76dbfb249c582aa521ffd09", 2359)]
[TestCase(@"https://github.com/balanced/balanced-dashboard.git",
@"96413f913a74153b5359b9a55ee9bfd65c7e1510", 2348)]
[TestCase(@"https://github.com/fancyapps/fancyBox.git",
@"1546099d6c4fa0570bba637f141ea7e3f5aabf41", 2346)]
[TestCase(@"https://github.com/pcottle/learnGitBranching.git",
@"f9eb5ece6999a0ff38d2938d599b0d22fdd37be7", 2340)]
[TestCase(@"https://github.com/LeaVerou/prefixfree.git",
@"91790e8aff6d807cd62018479db2307e1972b92a", 2333)]
[TestCase(@"https://github.com/adamdbradley/foresight.js.git",
@"65b38bae3e77d873ca4bf18a802a62c77726d2d5", 2318)]
[TestCase(@"https://github.com/malsup/form.git",
@"45a0eb93fe2b8ee819a11e5df5cdb4ca64884b2f", 2316)]
[TestCase(@"https://github.com/flatiron/winston.git",
@"e49faee6189c80daac5664dc52ae638f702a1b85", 2312)]
[TestCase(@"https://github.com/marcuswestin/store.js.git",
@"0ba8fcf6d40f3649a1d1392f65018136428d22de", 2310)]
[TestCase(@"https://github.com/medialize/URI.js.git",
@"cad4fbfd3c6a03e6891efdf225438bf95cc31a92", 2307)]
[TestCase(@"https://github.com/happyworm/jPlayer.git",
@"aca237f4f6873c4fe952064636e8fd54926e0682", 2299)]
[TestCase(@"https://github.com/andris9/Nodemailer.git",
@"af2dd7a49d8f86d5ae7b719228c1ae98aabb170c", 2296)]
[TestCase(@"https://github.com/novus/nvd3.git",
@"6867ea693e4dbde657c34768c26ccf667d1f2da8", 2296)]
[TestCase(@"https://github.com/sockjs/sockjs-client.git",
@"3acc66a2de4bdafba073a051a163050dbfbe7841", 2272)]
[TestCase(@"https://github.com/BorisMoore/jquery-tmpl.git",
@"b504c8afba9a0be6870a6989b20573373dff373e", 2271)]
[TestCase(@"https://github.com/carrot/share-button.git",
@"27d7649f3a9540bdcedcb2104300500a8054a2d0", 2270)]
[TestCase(@"https://github.com/harthur/brain.git",
@"a5f96de8bce0b7d327597441cd35c524f80c4f25", 2263)]
[TestCase(@"https://github.com/Marak/Faker.js.git",
@"0c49ffcfd98ef2dc7ef56e63b90cdcfc7a624081", 2242)]
[TestCase(@"https://github.com/SlexAxton/yepnope.js.git",
@"5b84bc87d0ac4e8bfcdd901ca38a6c8bc8fac265", 2234)]
[TestCase(@"https://github.com/andrewplummer/Sugar.git",
@"7153c6a30f6b3345312c492dbd2e8e9bb0e20608", 2222)]
[TestCase(@"https://github.com/johnpolacek/scrollorama.git",
@"55261f7168caff4e66565887483dd185d05a64df", 2213)]
[TestCase(@"https://github.com/LearnBoost/socket.io-client.git",
@"e86b9f09f6a664d8512c7eeab358d8a5de31aea5", 2209)]
[TestCase(@"https://github.com/evilstreak/markdown-js.git",
@"263b9bd69f33d130daa547a17b07c0eeca7a7528", 2209)]
[TestCase(@"https://github.com/uberVU/grid.git",
@"0ae9f19444d1c25c10691ca848b5313b34517d25", 2207)]
[TestCase(@"https://github.com/viljamis/ResponsiveSlides.js.git",
@"120079561d7a4f8a6459f7a5d8aa657ad5d3db83", 2192)]
[TestCase(@"https://github.com/sofish/pen.git",
@"0aa9bb459bd8309e378d1815d5547befbbfd5b24", 2176)]
[TestCase(@"https://github.com/chriso/validator.js.git",
@"fe203c6380753df3b8b50ba02c2dfd07392300a1", 2171)]
[TestCase(@"https://github.com/winjs/winjs.git",
@"e6f28372046afedef2493d9c748a4dab081c0912", 2167)]
[TestCase(@"https://github.com/markdalgleish/stellar.js.git",
@"0aafe207b5b7ed223d5308c82990d6167ec966e3", 2163)]
[TestCase(@"https://github.com/auduno/headtrackr.git",
@"d59a301e9a0e7f7afab14f9066c9f2940da023e9", 2162)]
[TestCase(@"https://github.com/markdalgleish/bespoke.js.git",
@"5eb445c7fbd681afa44e71e24b2146df76869161", 2154)]
[TestCase(@"https://github.com/MrRio/jsPDF.git",
@"41ec70e3f8804a3a298fb59280545c2929f4d3ab", 2152)]
[TestCase(@"https://github.com/lipka/piecon.git",
@"191869cbaa42dbfa55fbb9896ac020c53c564ea0", 2147)]
[TestCase(@"https://github.com/spumko/hapi.git",
@"3cd23f5b4c354fa7c1e7ed7351b0efb3d63e6055", 2140)]
[TestCase(@"https://github.com/artberri/sidr.git",
@"f9847351c3f515ad7379659e69b4b86ec314da96", 2131)]
[TestCase(@"https://github.com/deployd/deployd.git",
@"af1f4f5ec0c574de9c6972688ea20b4c46a22c6e", 2130)]
[TestCase(@"https://github.com/mcavage/node-restify.git",
@"09913b462d0185fc4aac84cf682756e2f3ee48ea", 2123)]
[TestCase(@"https://github.com/lokesh/color-thief.git",
@"cb5c9c6ca85fae3746fdee0c2b0fefd1c971b172", 2118)]
[TestCase(@"https://github.com/mishoo/UglifyJS2.git",
@"1a34a13e3393a9afd6a032b5c2bf3e29cbdfe153", 2116)]
[TestCase(@"https://github.com/sorccu/cufon.git",
@"94db085164a74a1cc8c2d22906d23c416e9f2dbd", 2110)]
[TestCase(@"https://github.com/goldfire/howler.js.git",
@"f3f6135c4eff743a2a9140c0199ba5d474789ea0", 2110)]
[TestCase(@"https://github.com/nzakas/computer-science-in-javascript.git",
@"01832404d53ff0c436d2578bd3438876936acb54", 2099)]
[TestCase(@"https://github.com/trifacta/vega.git",
@"d676bac4b69f8a108d09edf5bab33ddf1921daf9", 2091)]
[TestCase(@"https://github.com/benpickles/peity.git",
@"665c81fd53d2f8dc94c4c5c2bc5396b1f1fc440a", 2089)]
[TestCase(@"https://github.com/ankane/chartkick.git",
@"8efbd2726aaf5e8fa10fb77441b0b352a9132a19", 2081)]
[TestCase(@"https://github.com/guardian/scribe.git",
@"e1fa9314ce2dfc47203ff9b2929a9e81bc382aa9", 2080)]
[TestCase(@"https://github.com/ccampbell/rainbow.git",
@"c2f5b0a3fa372514d75c616e7393874e9b501a93", 2077)]
[TestCase(@"https://github.com/peers/peerjs.git",
@"7ad9494c9e9d2b40ba075b715cf3acf1320d1951", 2069)]
[TestCase(@"https://github.com/bitwiseshiftleft/sjcl.git",
@"a03ea8ef32329bc8d7bc28a438372b5acb46616b", 2069)]
[TestCase(@"https://github.com/luis-almeida/unveil.git",
@"00e61434e2b2965f8b9b4f6046ff0edfa63051a4", 2069)]
[TestCase(@"https://github.com/malarkey/320andup.git",
@"3785b42274aa26bf11dbf780f9ab1570ac258a44", 2065)]
[TestCase(@"https://github.com/NaturalNode/natural.git",
@"b026780da3a02d73671ec8e4fc2b164659f3a046", 2058)]
[TestCase(@"https://github.com/mozilla/sweet.js.git",
@"2a62113dbc855094ece1678eeb54ac24e92976ad", 2055)]
[TestCase(@"https://github.com/emmetio/emmet.git",
@"417dcc94c6ddba5dd17087636f60db83a552338e", 2051)]
[TestCase(@"https://github.com/sproutcore/sproutcore.git",
@"db01f880911d35927db45fd2c7369c272245d0a5", 2050)]
[TestCase(@"https://github.com/airbnb/infinity.git",
@"91ff66d79ef5c9f2d01367f973cc8d51119e603d", 2049)]
[TestCase(@"https://github.com/mozilla/brick.git",
@"9c313aeae6a3cf8bb11b0834ec2e8f3708031424", 2046)]
[TestCase(@"https://github.com/borisyankov/DefinitelyTyped.git",
@"939bedb2006855d54d0b65cfd4a8e9a627a97bbd", 2044)]
[TestCase(@"https://github.com/PaulUithol/Backbone-relational.git",
@"0e4f8784937e04bf048f89caf96168bf5f859914", 2037)]
[TestCase(@"https://github.com/visionmedia/commander.js.git",
@"534c63a55990c56090f5c05cca897985033331d7", 2029)]
[TestCase(@"https://github.com/filamentgroup/grunticon.git",
@"cae7dd4592cd1feee2d07205b329aaa7a790d671", 2023)]
[TestCase(@"https://github.com/adamschwartz/log.git",
@"d92da8aaadc85c84ea214fc4f4a0687db1c8180f", 2012)]
[TestCase(@"https://github.com/qiao/PathFinding.js.git",
@"f57300b9116f14d7011efcf6311bd0aa91c3b81f", 2010)]
[TestCase(@"https://github.com/ngbp/ngbp.git",
@"83801dc2ca32e4ae09c4b0fc4566f116a7803874", 2009)]
[TestCase(@"https://github.com/shakyShane/browser-sync.git",
@"331371272476cd99213d43d65ca07f0e58017d31", 2008)]
[TestCase(@"https://github.com/HumbleSoftware/Flotr2.git",
@"b4caee36a8d875b8ec5ccb2ea787a7e9b4a39919", 2006)]
[TestCase(@"https://github.com/wout/svg.js.git",
@"63bf7b9d4dace89d0b6648d6d6af5df47db19a18", 2002)]
[TestCase(@"https://github.com/guardian/frontend.git",
@"79073b36ce7674fcd7651597b781af48a5261c26", 1997)]
[TestCase(@"https://github.com/creationix/js-git.git",
@"77f1a82466c23dced0d0a68ccb97213a7edf4092", 1996)]
[TestCase(@"https://github.com/jejacks0n/mercury.git",
@"1cc637b0bccea19085f824d2881c6513ed5ee8ae", 1994)]
[TestCase(@"https://github.com/einars/js-beautify.git",
@"c30247fa005b9a5227a6b69ae18efc4460787d98", 1990)]
[TestCase(@"https://github.com/GBKS/Wookmark-jQuery.git",
@"7a48d3e2cb4abd65957b2f1164331bb6208d1860", 1977)]
[TestCase(@"https://github.com/kni-labs/rrssb.git",
@"e0f07d74396d298fe265c1fe312f43765579554f", 1963)]
[TestCase(@"https://github.com/loopj/jquery-tokeninput.git",
@"aefac0bcff768fa93b08ace5e23635855e6aec59", 1958)]
[TestCase(@"https://github.com/torkelo/grafana.git",
@"30bf838065928872adbecc979eb67265b8560253", 1952)]
[TestCase(@"https://github.com/rwaldron/johnny-five.git",
@"1a47a3b8928a59dcd93fb7ee84e246f4c93fd76b", 1950)]
[TestCase(@"https://github.com/mootools/mootools-core.git",
@"6ffef0c297fbd23b6719c3a724308cfa1ba5e65b", 1949)]
[TestCase(@"https://github.com/firstopinion/formatter.js.git",
@"4b94b66e1f4246df3875979dc6a460aa1e9d9d0e", 1942)]
[TestCase(@"https://github.com/rails/jquery-ujs.git",
@"a1fd42aca65a87a46f140e28c4df279a44d994ef", 1940)]
[TestCase(@"https://github.com/23/resumable.js.git",
@"c139ce6a521633915a21361fb3d0b6697afeeb63", 1935)]
[TestCase(@"https://github.com/linkedin/hopscotch.git",
@"51ff5293b5de20cb52fd3df3bdac94b70022464e", 1935)]
[TestCase(@"https://github.com/tinymce/tinymce.git",
@"95c6f14e90eb963a850a8b4a92c9f1547e97a7df", 1930)]
[TestCase(@"https://github.com/mjibson/goread.git",
@"59aec794f3ef87b36c1bac029438c33a6aa6d8d3", 1927)]
[TestCase(@"https://github.com/beatfactor/nightwatch.git",
@"0f53904216258d26cd49d621416b03ca1aa60bd4", 1924)]
[TestCase(@"https://github.com/furf/jquery-ui-touch-punch.git",
@"8f7559b6e65cdc3ee3648d5fe76d38c653f87ff5", 1919)]
[TestCase(@"https://github.com/thomasdavis/backbonetutorials.git",
@"c804809b95854313ab82a752bf0e9ad1f31bff6c", 1918)]
[TestCase(@"https://github.com/bergie/create.git",
@"00d43ea4e53ea084333f0280753964db9131ade5", 1917)]
[TestCase(@"https://github.com/segmentio/metalsmith.git",
@"a80b924906118b95c3f3e4d6caac7f8196606240", 1916)]
[TestCase(@"https://github.com/scoutapp/scout_realtime.git",
@"986daa5ff2f6c2601a3fe9ee01e6386acc8a5616", 1916)]
[TestCase(@"https://github.com/trentrichardson/jQuery-Timepicker-Addon.git",
@"dbc3869e2ade99bec28054e823b63253a825f7f0", 1914)]
[TestCase(@"https://github.com/douglascrockford/JSLint.git",
@"3a06292c7dbb25d18ea3ada90a6a09de38a99c4c", 1913)]
[TestCase(@"https://github.com/loadfive/Knwl.js.git",
@"d63384232aba0e3a75504bc7e0d9d6b720da42ad", 1907)]
[TestCase(@"https://github.com/fzaninotto/uptime.git",
@"1f32cefc6918da6b73b54ebcf8f9442771b14503", 1907)]
[TestCase(@"https://github.com/nolimits4web/Framework7.git",
@"db9b290cf383d2ed215497217a8efa683f8712a1", 1906)]
[TestCase(@"https://github.com/sequelize/sequelize.git",
@"067500510282ec3c2207dc56e13e0c2bd6649bdf", 1896)]
[TestCase(@"https://github.com/prose/prose.git",
@"a74e1386414591e39e16b4f712273ff24d6b2852", 1895)]
[TestCase(@"https://github.com/CSSLint/csslint.git",
@"d5ab986a7f8a37529854a3fb5295ed9cc1465c72", 1890)]
[TestCase(@"https://github.com/cdnjs/cdnjs.git",
@"7b04f208f9d5c8fdbe0beef4c402ad58e867bae2", 1889)]
[TestCase(@"https://github.com/defunkt/facebox.git",
@"e601c4e5e9c78ac37621d2892a1da29d1462c8dc", 1881)]
[TestCase(@"https://github.com/epeli/underscore.string.git",
@"f1ef6ddb7e40ecbc674b2c70f4deacc3a5e24aa1", 1880)]
[TestCase(@"https://github.com/kennethcachia/Background-Check.git",
@"fc922464220c72301187b0ed5c0b85b224f692d8", 1879)]
[TestCase(@"https://github.com/chriso/node.io.git",
@"0608de0b490724e19329229d396b5debc813af43", 1861)]
[TestCase(@"https://github.com/sintaxi/harp.git",
@"37c942fecdb39eb2e09f0f2ed61d938394743343", 1856)]
[TestCase(@"https://github.com/SamyPesse/reportr.git",
@"751c9b82193abbb9da926c052d6a5b16c2765864", 1856)]
[TestCase(@"https://github.com/tommy351/hexo.git",
@"18c044f91b625c794411b42412480cfe667d3a29", 1855)]
[TestCase(@"https://github.com/felixge/node-formidable.git",
@"f10722693491a71456a0dcc0f0967f99e4c55961", 1849)]
[TestCase(@"https://github.com/jquerytools/jquerytools.git",
@"7c6634b4dfa321b16cffcaa5ba06f95e9aa9b136", 1842)]
[TestCase(@"https://github.com/bergie/hallo.git",
@"896ae91b53e0f30170a68954a5bbbb28aaa6f4c3", 1838)]
[TestCase(@"https://github.com/sintaxi/phonegap.git",
@"64ab481366438a08907969c7568fdc707ff0a4cb", 1831)]
[TestCase(@"https://github.com/Flotype/now.git",
@"957e7ac7f86ab60163dc5566653c186971f5ad09", 1829)]
[TestCase(@"https://github.com/inorganik/countUp.js.git",
@"b2627a9fde4932528d1ec8858fe636e37c703cba", 1821)]
[TestCase(@"https://github.com/kandanapp/kandan.git",
@"3b0e13deca802d051ca55ee6274cb02fae43edba", 1817)]
[TestCase(@"https://github.com/maxogden/art-of-node.git",
@"fbdb446755f73b35276aedcf3824f386a5ad457e", 1814)]
[TestCase(@"https://github.com/visionmedia/move.js.git",
@"879fecad8aec06beed8deca8863431560d7ea6fc", 1812)]
[TestCase(@"https://github.com/Huddle/PhantomCSS.git",
@"bc9e5bc1af2f389cdf01e7781748eb62875b2e4a", 1807)]
[TestCase(@"https://github.com/substack/node-optimist.git",
@"680451c01535cf5e1d0a62c22b7d3de6ac8e4011", 1806)]
[TestCase(@"https://github.com/FriendCode/codebox.git",
@"ad7b097678c4bb0152b425c1701951f20294faeb", 1802)]
[TestCase(@"https://github.com/01org/appframework.git",
@"71ff180d48a119061cc38d665101d3fb106bb781", 1800)]
[TestCase(@"https://github.com/petkaantonov/bluebird.git",
@"e42dfd9faa82ef24a70a1b31d250b5012e09c3ab", 1799)]
[TestCase(@"https://github.com/joehewitt/scrollability.git",
@"fed4b023d10401a527c4797461c84b43f8797000", 1798)]
[TestCase(@"https://github.com/shower/shower.git",
@"23bd9baa90a0ddba2c619ee144aeb147ffe8735e", 1796)]
[TestCase(@"https://github.com/johnpolacek/superscrollorama.git",
@"c2461ac16bb7896d6a22731b068b2aecbe6ddbf2", 1792)]
[TestCase(@"https://github.com/LearnBoost/kue.git",
@"184505232a4f88eb02fc517e7e2edf99f8fa586c", 1787)]
[TestCase(@"https://github.com/iurevych/Flat-UI.git",
@"c0afb3e80d5ccf81a3f271f16d352ee2908a095b", 1776)]
[TestCase(@"https://github.com/brianleroux/lawnchair.git",
@"f9d28360a923aa3c2d1e7a313721b34ebfd60d33", 1772)]
[TestCase(@"https://github.com/jquery-boilerplate/jquery-boilerplate.git",
@"0c73988bb9b033e9cd413c6b7aef57fc00f1b4b2", 1771)]
[TestCase(@"https://github.com/turbulenz/turbulenz_engine.git",
@"d9b93e9c6194adcf8d0f6f2bef39e273a3917371", 1766)]
[TestCase(@"https://github.com/hakimel/Meny.git",
@"043d033fde70fcba1a018e8884a5f25310979553", 1766)]
[TestCase(@"https://github.com/paulkinzett/toolbar.git",
@"a5687bf9c2d5d51a7ef97c59017fd1e8961bf616", 1766)]
[TestCase(@"https://github.com/typekit/webfontloader.git",
@"23bbc841f616eab463620efa4f0f5927db9accb4", 1765)]
[TestCase(@"https://github.com/google/traceur-compiler.git",
@"70af37fe078d3249fadf49ab6d13d2c1fefe3888", 1763)]
[TestCase(@"https://github.com/silviomoreto/bootstrap-select.git",
@"1f2a89894f0a74182ba39164b87215570419d1c0", 1757)]
[TestCase(@"https://github.com/bramp/js-sequence-diagrams.git",
@"4c64e16f366367939aa667ab396c02ed1dfef806", 1753)]
[TestCase(@"https://github.com/emberjs/data.git",
@"52114c36457b73ed880562b4595482d8576f5826", 1752)]
[TestCase(@"https://github.com/maxogden/dat.git",
@"9ac411d3aa3dbd070b9bc7d07180aec7133eb951", 1749)]
[TestCase(@"https://github.com/tobytailor/gordon.git",
@"2715b992c8e81107f2f19a155c593f4d222b4b76", 1741)]
[TestCase(@"https://github.com/powmedia/backbone-forms.git",
@"674f2904caf1942aeb62e33c0e47ce7288fdf49c", 1741)]
[TestCase(@"https://github.com/geddy/geddy.git",
@"a9c24ab6ae6f610f7f48ca86d234fb3cbe1e1607", 1737)]
[TestCase(@"https://github.com/enyojs/enyo.git",
@"c46961ee6dead10c550cafcb8454f0d46c02e916", 1733)]
[TestCase(@"https://github.com/jaz303/tipsy.git",
@"3545aa6ae2cfdf10f3636d2754b792524ee2bc7a", 1730)]
[TestCase(@"https://github.com/posabsolute/jQuery-Validation-Engine.git",
@"6115008d5e4d1732abde5fed44e3c9943279b328", 1727)]
[TestCase(@"https://github.com/WickyNilliams/enquire.js.git",
@"ab3971a830d5268d285811523ea7aabc7d6163c9", 1725)]
[TestCase(@"https://github.com/jsdoc3/jsdoc.git",
@"48fa2fd320ae7747e2e891e6440f0e512e3ac479", 1724)]
[TestCase(@"https://github.com/visionmedia/superagent.git",
@"42c5692d31c3ffc24d8056aaa24fb17b237d8fcb", 1716)]
[TestCase(@"https://github.com/guillaumepotier/Garlic.js.git",
@"cb3da4239d1fade73476818bf2c8b1ff39c95aa7", 1712)]
[TestCase(@"https://github.com/google/tracing-framework.git",
@"6936ad58b3730b355d38e319d5ea8672f152a612", 1712)]
[TestCase(@"https://github.com/substack/dnode.git",
@"059fd4889c5335226cfc1ad837a8f37b4077e757", 1712)]
[TestCase(@"https://github.com/mapbox/tilemill.git",
@"1434317d3fcd92c836ae0e1140e36c66e69040b9", 1706)]
[TestCase(@"https://github.com/tower/tower.git",
@"694f4b4465def0f07a2119b2dad626dbe2becc2f", 1703)]
[TestCase(@"https://github.com/alfajango/jquery-dynatable.git",
@"53a567165d928611248e726e3fec43587d392989", 1696)]
[TestCase(@"https://github.com/es-analysis/plato.git",
@"d648f66d4ad2b97b5183ff5ee09bbe566d58d68f", 1691)]
[TestCase(@"https://github.com/googlecreativelab/coder.git",
@"7932bd20596d444505c98729cea91710acd88f9c", 1687)]
[TestCase(@"https://github.com/auduno/clmtrackr.git",
@"f4461ac66b0dcf7146fe41611fbe91dda48cae89", 1686)]
[TestCase(@"https://github.com/theintern/intern.git",
@"4004e724ad9fe3763fd91c01fef5d59a129a9523", 1685)]
[TestCase(@"https://github.com/isaacs/node-supervisor.git",
@"36abd4bdf5e94a7ee9a3a2bf57175f26cf017809", 1680)]
[TestCase(@"https://github.com/maccman/juggernaut.git",
@"77a21dc7b4d0bedcc421902ae2acae9ae2469f74", 1677)]
[TestCase(@"https://github.com/jsbin/jsbin.git",
@"c8e3f60116d8f254bc4a94d528cf6b51727900d8", 1677)]
[TestCase(@"https://github.com/dtao/lazy.js.git",
@"359469f4b1afc1a8be970f9dd06f7223236a75b5", 1676)]
[TestCase(@"https://github.com/razorjack/quicksand.git",
@"de631e86621328b0c439faa9101dc647087f91cf", 1672)]
[TestCase(@"https://github.com/madhums/node-express-mongoose-demo.git",
@"4b40a403094915288c43286d3da92c5bdf738dcf", 1669)]
[TestCase(@"https://github.com/sole/tween.js.git",
@"6f0bf16f1dfe33ff676017df97e6db5103240aa3", 1668)]
[TestCase(@"https://github.com/soulwire/fit.js.git",
@"74b6ef79a5cb1cda95a88c4b0c467c1c2eadbd54", 1667)]
[TestCase(@"https://github.com/idank/explainshell.git",
@"dfeab691c8d73cf97bbe6c6fe1334d6b17829513", 1667)]
[TestCase(@"https://github.com/jsantell/dancer.js.git",
@"df0e7c0f53605be6a806a61d3a0454a752068138", 1661)]
[TestCase(@"https://github.com/highslide-software/highcharts.com.git",
@"d47e458b3608614ffb509d34d0687e1478c5eff7", 1659)]
[TestCase(@"https://github.com/josscrowcroft/accounting.js.git",
@"e42651968f381133123ea70dd674d7f189b6f4a5", 1659)]
[TestCase(@"https://github.com/appcelerator/titanium_mobile.git",
@"0ad5ed572e8a53b10ac4660ee7fc060c854f10ae", 1657)]
[TestCase(@"https://github.com/cryptocat/cryptocat.git",
@"c9d4333cd7e8e521279da7c04a9a482bc74715cf", 1657)]
[TestCase(@"https://github.com/brandonaaron/jquery-mousewheel.git",
@"0f395d8949f937b987f384cc8833c30a0648fd9b", 1657)]
[TestCase(@"https://github.com/apache/couchdb.git",
@"e528c0cbbb26f684fdff6147c2edf0806318ef42", 1654)]
[TestCase(@"https://github.com/patrickkunka/mixitup.git",
@"d3cd1a589ee8a708dc41eb04bd4cae9e4bb17b4f", 1651)]
[TestCase(@"https://github.com/alohaeditor/Aloha-Editor.git",
@"d2f98d5de0c50c62dd519acfd00e8cad080917d2", 1650)]
[TestCase(@"https://github.com/darsain/sly.git",
@"29ebe48af5fc690da4aead4b80225cecf140394b", 1650)]
[TestCase(@"https://github.com/tildeio/rsvp.js.git",
@"77db61772034c5db5ef78314ca762603f319197f", 1649)]
[TestCase(@"https://github.com/appcelerator/KitchenSink.git",
@"fe3d310072a6956f6fe45b356968e5ae5d8258b9", 1644)]
[TestCase(@"https://github.com/CodeSeven/toastr.git",
@"616748b467a124f0398375376cf31bd61685691f", 1644)]
[TestCase(@"https://github.com/chjj/tty.js.git",
@"dce1023ea004046c31ec687633d2d626d481f7d1", 1644)]
[TestCase(@"https://github.com/olivernn/lunr.js.git",
@"1489c022e4aab0ebe051445174de2cd24e1e8519", 1643)]
[TestCase(@"https://github.com/creationix/step.git",
@"b1dd528529853fc3fe8dbaea63c51077500931a6", 1641)]
[TestCase(@"https://github.com/blueimp/Bootstrap-Image-Gallery.git",
@"8b2a8a3b49740bc0a7f9f906b861d5d5de0f7a67", 1635)]
[TestCase(@"https://github.com/wellcaffeinated/PhysicsJS.git",
@"7892343046c5ed1398b710bf8d7c8a137b5b649e", 1634)]
[TestCase(@"https://github.com/tooling/book-of-modern-frontend-tooling.git",
@"fdda214745ef7a2cda971d7ae9438088ae43aa39", 1632)]
[TestCase(@"https://github.com/louischatriot/nedb.git",
@"7b5171f6bdd0b90c7d9a9ceb890e761faf89d071", 1625)]
[TestCase(@"https://github.com/srobbin/jquery-pageslide.git",
@"6e3d776f5920299f3c7599186f38a42386f5a569", 1625)]
[TestCase(@"https://github.com/oyvindkinsey/easyXDM.git",
@"0c8450dbfb01ce3ce63d27b312f27d850f7f2d8e", 1617)]
[TestCase(@"https://github.com/adamwdraper/Numeral-js.git",
@"f97f14bb8bab988f28f1d854525b4cfeff8ec9e1", 1612)]
[TestCase(@"https://github.com/toddmotto/echo.git",
@"fd6c9564876cb3df6a32bb277e098647fc1d2091", 1611)]
[TestCase(@"https://github.com/LearnBoost/cluster.git",
@"0d045131963e7a12ef19e94e0e35653b2dc5bd5e", 1611)]
[TestCase(@"https://github.com/dimsemenov/PhotoSwipe.git",
@"e456211939de1dff0f1225407c9791f93c791a91", 1610)]
[TestCase(@"https://github.com/KartikTalwar/gmail.js.git",
@"6e05b158555e2779a31ee4142eb12d935ee11780", 1606)]
[TestCase(@"https://github.com/ariya/esprima.git",
@"b4114d46c9fb628839a45143121afdb2f18d073b", 1606)]
[TestCase(@"https://github.com/yeoman/generator-angular.git",
@"9000e5befaa64705a333f3917cdccd166b6282be", 1598)]
[TestCase(@"https://github.com/elasticsearch/kibana.git",
@"42ad32683a9abc67088d80845c730c7ea9d6f9c8", 1598)]
[TestCase(@"https://github.com/ender-js/Ender.git",
@"eecac6d37b5b5aef85fc0e7762dbd03860c9945f", 1596)]
[TestCase(@"https://github.com/apneadiving/Google-Maps-for-Rails.git",
@"da8996564443a9a5ad3b3bdd26a2dac75daa4403", 1595)]
[TestCase(@"https://github.com/samizdatco/arbor.git",
@"c5f7ec33c9f4ca28218779ca65e4bdcdec481884", 1594)]
[TestCase(@"https://github.com/scottschiller/SoundManager2.git",
@"7de2079afc60232a4429cc9bdf933980f16c0b48", 1591)]
[TestCase(@"https://github.com/mailru/FileAPI.git",
@"99130c0229aa077fb464c7b955a068e1f37847fb", 1589)]
[TestCase(@"https://github.com/jeff-optimizely/Guiders-JS.git",
@"bcd9602df94cadde825207bb68f32514efc3a20d", 1587)]
[TestCase(@"https://github.com/dc-js/dc.js.git",
@"02a8775ba3d91f56e15f77647cb342a34e857f5b", 1585)]
[TestCase(@"https://github.com/tbranyen/backbone.layoutmanager.git",
@"2d3976f524456cdf48793df441e63f66b350630f", 1573)]
[TestCase(@"https://github.com/ChiperSoft/Kalendae.git",
@"711e005299619c0a8acaf8f109ba0fa00579e75a", 1573)]
[TestCase(@"https://github.com/pa7/heatmap.js.git",
@"0d925f85d750b89dfa7012d3029cc743fadcb8bc", 1572)]
[TestCase(@"https://github.com/mozilla-b2g/gaia.git",
@"553da99ab09b6b894d9f95bb06b16b6e1ddbf0a1", 1570)]
[TestCase(@"https://github.com/rmurphey/js-assessment.git",
@"265f7ff3c5a71120da9225de5a18422e58d60241", 1569)]
[TestCase(@"https://github.com/kanaka/noVNC.git",
@"082027dc8742292ce3e3de0f742fed5c13e68337", 1568)]
[TestCase(@"https://github.com/ecomfe/echarts.git",
@"b40e2923b42af59853506486a0556b8acb0cb48e", 1567)]
[TestCase(@"https://github.com/mozilla/persona.git",
@"b57205c02d624c67fa44a56043b0c85dd6041c2b", 1565)]
[TestCase(@"https://github.com/cujojs/when.git",
@"b9a82a1821afc57aa190f2ccce8d0a943e807f49", 1562)]
[TestCase(@"https://github.com/vitch/jScrollPane.git",
@"db6452f9249c07a70f1128a39cc7f87584fad232", 1561)]
[TestCase(@"https://github.com/1602/compound.git",
@"1fccdd8472352503c165fad689aa04346468eba0", 1560)]
[TestCase(@"https://github.com/visionmedia/should.js.git",
@"14deff567fdfe0a92503a712f618bfb8e24d8ab6", 1559)]
[TestCase(@"https://github.com/mattbryson/TouchSwipe-Jquery-Plugin.git",
@"48c15305f096d80b2bca2122876d44a6a1d48df4", 1559)]
[TestCase(@"https://github.com/tmort/Socialite.git",
@"71e756eed1ce77b98731e43c51a72e003feac273", 1556)]
[TestCase(@"https://github.com/airbnb/chronos.git",
@"a252684527569273d39a4963dbbd9dfe0083cf51", 1555)]
[TestCase(@"https://github.com/cameronmcefee/plax.git",
@"c45ac98c7648c6bcf7ca49451c01e07abe9dbec7", 1552)]
[TestCase(@"https://github.com/philipwalton/html-inspector.git",
@"a126609e9b2a0818e32ba12b65a9744670a8c5e2", 1543)]
[TestCase(@"https://github.com/mikeric/rivets.git",
@"9c2305ef0ce1611074f3eb9044c65842bae80ecc", 1542)]
[TestCase(@"https://github.com/TelescopeJS/Telescope.git",
@"2e1f61dbf2a626241ea8a19b2adf5ad408c3bf28", 1529)]
[TestCase(@"https://github.com/yahoo/mojito.git",
@"bfa61aa83819ad857b74a95441cf58a1bd22a8c9", 1526)]
[TestCase(@"https://github.com/densitydesign/raw.git",
@"d634eedd694b65dade2073dae4348ee269ba0157", 1526)]
[TestCase(@"https://github.com/HabitRPG/habitrpg.git",
@"ffa21ca1f7cfa531e3aff4e399e62f4f1f52dae5", 1523)]
[TestCase(@"https://github.com/dfcb/BigVideo.js.git",
@"2349f97f55f8b1c9fa525177551131b143ad380d", 1519)]
[TestCase(@"https://github.com/TeehanLax/Hyperlapse.js.git",
@"21b045900885de546d765714872d842a7d539013", 1518)]
[TestCase(@"https://github.com/scripted-editor/scripted.git",
@"bf924f98a210de49700366f22b89ab61c7d6203d", 1508)]
[TestCase(@"https://github.com/brianc/node-postgres.git",
@"81f63f4924ff6897082e8b6ea2170d8f70216bb7", 1507)]
[TestCase(@"https://github.com/jrburke/almond.git",
@"36b4b28163c31b699235534686e32d9585d9b826", 1505)]
[TestCase(@"https://github.com/sindresorhus/screenfull.js.git",
@"96892f95a872e373563bb79e320bd359d9cbfb30", 1504)]
[TestCase(@"https://github.com/tenXer/xcharts.git",
@"0efcf4b8ae4cdf679a1ab3138ccdf2c273ac4bea", 1504)]
[TestCase(@"https://github.com/rprieto/tldr.git",
@"c92c84e2df109459b25ed01a548b090b3c53ad87", 1500)]
[TestCase(@"https://github.com/stevenwanderski/bxslider-4.git",
@"c962ca6e1b47ba9488d9103d5b681f12d85dabe0", 1490)]
[TestCase(@"https://github.com/simsalabim/sisyphus.git",
@"68a3739f5d3b44efc6508f405722146134c4f7e3", 1490)]
[TestCase(@"https://github.com/pornel/slip.git",
@"280a29d270a00892c8762466dfb6b68499694e71", 1488)]
[TestCase(@"https://github.com/mattdiamond/fuckitjs.git",
@"d12803f6f746e61346b040f0f0a08fd94537e31a", 1487)]
[TestCase(@"https://github.com/javallone/regexper.git",
@"caa8c03d9127c0c7db1139299c7f756f6edeff80", 1487)]
[TestCase(@"https://github.com/airportyh/testem.git",
@"a09b551860c024723450fd271c0dda93efb3c471", 1486)]
[TestCase(@"https://github.com/bgrins/devtools-snippets.git",
@"84782f5c109c6927d19e12b68ad58d31d11b2be3", 1482)]
[TestCase(@"https://github.com/arturadib/shelljs.git",
@"ab7bf59b4b3402ff0158fbc24ade78a3a23b626b", 1471)]
[TestCase(@"https://github.com/prerender/prerender.git",
@"bfdcabafcf462d012754fc833c6cc7942718ab26", 1466)]
[TestCase(@"https://github.com/taitems/Aristo-jQuery-UI-Theme.git",
@"4673cef83673380e68a0db21c6a60a8b008519c0", 1460)]
[TestCase(@"https://github.com/jsor/jcarousel.git",
@"ee9b913cd4df4e4db13730bf34392dd4d6145677", 1459)]
[TestCase(@"https://github.com/allmarkedup/purl.git",
@"024fe048d407fc4c0a87ca9e0fd3b50cc5c2454f", 1454)]
[TestCase(@"https://github.com/angular/protractor.git",
@"453d52bc14e4db665a9359cb0b07b5ad6acf7d39", 1452)]
[TestCase(@"https://github.com/zynga/scroller.git",
@"dadd850722ad2be9a865e4d84cb76c0197b68734", 1451)]