-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtopfirst100ForkedJSRepos.txt
8806 lines (8806 loc) · 531 KB
/
topfirst100ForkedJSRepos.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
{
"total_count": 1241783,
"incomplete_results": false,
"items": [
{
"id": 460078,
"name": "angular.js",
"full_name": "angular/angular.js",
"owner": {
"login": "angular",
"id": 139426,
"avatar_url": "https://avatars.githubusercontent.com/u/139426?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/angular",
"html_url": "https://github.com/angular",
"followers_url": "https://api.github.com/users/angular/followers",
"following_url": "https://api.github.com/users/angular/following{/other_user}",
"gists_url": "https://api.github.com/users/angular/gists{/gist_id}",
"starred_url": "https://api.github.com/users/angular/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/angular/subscriptions",
"organizations_url": "https://api.github.com/users/angular/orgs",
"repos_url": "https://api.github.com/users/angular/repos",
"events_url": "https://api.github.com/users/angular/events{/privacy}",
"received_events_url": "https://api.github.com/users/angular/received_events",
"type": "Organization",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/angular/angular.js",
"description": "HTML enhanced for web apps",
"fork": false,
"url": "https://api.github.com/repos/angular/angular.js",
"forks_url": "https://api.github.com/repos/angular/angular.js/forks",
"keys_url": "https://api.github.com/repos/angular/angular.js/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/angular/angular.js/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/angular/angular.js/teams",
"hooks_url": "https://api.github.com/repos/angular/angular.js/hooks",
"issue_events_url": "https://api.github.com/repos/angular/angular.js/issues/events{/number}",
"events_url": "https://api.github.com/repos/angular/angular.js/events",
"assignees_url": "https://api.github.com/repos/angular/angular.js/assignees{/user}",
"branches_url": "https://api.github.com/repos/angular/angular.js/branches{/branch}",
"tags_url": "https://api.github.com/repos/angular/angular.js/tags",
"blobs_url": "https://api.github.com/repos/angular/angular.js/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/angular/angular.js/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/angular/angular.js/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/angular/angular.js/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/angular/angular.js/statuses/{sha}",
"languages_url": "https://api.github.com/repos/angular/angular.js/languages",
"stargazers_url": "https://api.github.com/repos/angular/angular.js/stargazers",
"contributors_url": "https://api.github.com/repos/angular/angular.js/contributors",
"subscribers_url": "https://api.github.com/repos/angular/angular.js/subscribers",
"subscription_url": "https://api.github.com/repos/angular/angular.js/subscription",
"commits_url": "https://api.github.com/repos/angular/angular.js/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/angular/angular.js/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/angular/angular.js/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/angular/angular.js/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/angular/angular.js/contents/{+path}",
"compare_url": "https://api.github.com/repos/angular/angular.js/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/angular/angular.js/merges",
"archive_url": "https://api.github.com/repos/angular/angular.js/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/angular/angular.js/downloads",
"issues_url": "https://api.github.com/repos/angular/angular.js/issues{/number}",
"pulls_url": "https://api.github.com/repos/angular/angular.js/pulls{/number}",
"milestones_url": "https://api.github.com/repos/angular/angular.js/milestones{/number}",
"notifications_url": "https://api.github.com/repos/angular/angular.js/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/angular/angular.js/labels{/name}",
"releases_url": "https://api.github.com/repos/angular/angular.js/releases{/id}",
"created_at": "2010-01-06T00:34:37Z",
"updated_at": "2015-03-24T00:32:24Z",
"pushed_at": "2015-03-23T21:26:18Z",
"git_url": "git://github.com/angular/angular.js.git",
"ssh_url": "[email protected]:angular/angular.js.git",
"clone_url": "https://github.com/angular/angular.js.git",
"svn_url": "https://github.com/angular/angular.js",
"homepage": "http://angularjs.org",
"size": 228292,
"stargazers_count": 36632,
"watchers_count": 36632,
"language": "JavaScript",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 15069,
"mirror_url": null,
"open_issues_count": 1137,
"forks": 15069,
"open_issues": 1137,
"watchers": 36632,
"default_branch": "master",
"score": 1.0
},
{
"id": 5447903,
"name": "node-js-sample",
"full_name": "heroku/node-js-sample",
"owner": {
"login": "heroku",
"id": 23211,
"avatar_url": "https://avatars.githubusercontent.com/u/23211?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/heroku",
"html_url": "https://github.com/heroku",
"followers_url": "https://api.github.com/users/heroku/followers",
"following_url": "https://api.github.com/users/heroku/following{/other_user}",
"gists_url": "https://api.github.com/users/heroku/gists{/gist_id}",
"starred_url": "https://api.github.com/users/heroku/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/heroku/subscriptions",
"organizations_url": "https://api.github.com/users/heroku/orgs",
"repos_url": "https://api.github.com/users/heroku/repos",
"events_url": "https://api.github.com/users/heroku/events{/privacy}",
"received_events_url": "https://api.github.com/users/heroku/received_events",
"type": "Organization",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/heroku/node-js-sample",
"description": "A barebones Node.js app using the Express framework.",
"fork": false,
"url": "https://api.github.com/repos/heroku/node-js-sample",
"forks_url": "https://api.github.com/repos/heroku/node-js-sample/forks",
"keys_url": "https://api.github.com/repos/heroku/node-js-sample/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/heroku/node-js-sample/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/heroku/node-js-sample/teams",
"hooks_url": "https://api.github.com/repos/heroku/node-js-sample/hooks",
"issue_events_url": "https://api.github.com/repos/heroku/node-js-sample/issues/events{/number}",
"events_url": "https://api.github.com/repos/heroku/node-js-sample/events",
"assignees_url": "https://api.github.com/repos/heroku/node-js-sample/assignees{/user}",
"branches_url": "https://api.github.com/repos/heroku/node-js-sample/branches{/branch}",
"tags_url": "https://api.github.com/repos/heroku/node-js-sample/tags",
"blobs_url": "https://api.github.com/repos/heroku/node-js-sample/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/heroku/node-js-sample/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/heroku/node-js-sample/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/heroku/node-js-sample/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/heroku/node-js-sample/statuses/{sha}",
"languages_url": "https://api.github.com/repos/heroku/node-js-sample/languages",
"stargazers_url": "https://api.github.com/repos/heroku/node-js-sample/stargazers",
"contributors_url": "https://api.github.com/repos/heroku/node-js-sample/contributors",
"subscribers_url": "https://api.github.com/repos/heroku/node-js-sample/subscribers",
"subscription_url": "https://api.github.com/repos/heroku/node-js-sample/subscription",
"commits_url": "https://api.github.com/repos/heroku/node-js-sample/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/heroku/node-js-sample/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/heroku/node-js-sample/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/heroku/node-js-sample/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/heroku/node-js-sample/contents/{+path}",
"compare_url": "https://api.github.com/repos/heroku/node-js-sample/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/heroku/node-js-sample/merges",
"archive_url": "https://api.github.com/repos/heroku/node-js-sample/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/heroku/node-js-sample/downloads",
"issues_url": "https://api.github.com/repos/heroku/node-js-sample/issues{/number}",
"pulls_url": "https://api.github.com/repos/heroku/node-js-sample/pulls{/number}",
"milestones_url": "https://api.github.com/repos/heroku/node-js-sample/milestones{/number}",
"notifications_url": "https://api.github.com/repos/heroku/node-js-sample/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/heroku/node-js-sample/labels{/name}",
"releases_url": "https://api.github.com/repos/heroku/node-js-sample/releases{/id}",
"created_at": "2012-08-17T04:11:44Z",
"updated_at": "2015-03-23T10:11:16Z",
"pushed_at": "2014-07-18T21:48:33Z",
"git_url": "git://github.com/heroku/node-js-sample.git",
"ssh_url": "[email protected]:heroku/node-js-sample.git",
"clone_url": "https://github.com/heroku/node-js-sample.git",
"svn_url": "https://github.com/heroku/node-js-sample",
"homepage": "http://node-js-sample.herokuapp.com/",
"size": 4057,
"stargazers_count": 519,
"watchers_count": 519,
"language": "JavaScript",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 10885,
"mirror_url": null,
"open_issues_count": 1,
"forks": 10885,
"open_issues": 1,
"watchers": 519,
"default_branch": "master",
"score": 1.0
},
{
"id": 16099249,
"name": "courses",
"full_name": "DataScienceSpecialization/courses",
"owner": {
"login": "DataScienceSpecialization",
"id": 6456300,
"avatar_url": "https://avatars.githubusercontent.com/u/6456300?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/DataScienceSpecialization",
"html_url": "https://github.com/DataScienceSpecialization",
"followers_url": "https://api.github.com/users/DataScienceSpecialization/followers",
"following_url": "https://api.github.com/users/DataScienceSpecialization/following{/other_user}",
"gists_url": "https://api.github.com/users/DataScienceSpecialization/gists{/gist_id}",
"starred_url": "https://api.github.com/users/DataScienceSpecialization/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/DataScienceSpecialization/subscriptions",
"organizations_url": "https://api.github.com/users/DataScienceSpecialization/orgs",
"repos_url": "https://api.github.com/users/DataScienceSpecialization/repos",
"events_url": "https://api.github.com/users/DataScienceSpecialization/events{/privacy}",
"received_events_url": "https://api.github.com/users/DataScienceSpecialization/received_events",
"type": "Organization",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/DataScienceSpecialization/courses",
"description": "Course materials for the Data Science Specialization: https://www.coursera.org/specialization/jhudatascience/1",
"fork": false,
"url": "https://api.github.com/repos/DataScienceSpecialization/courses",
"forks_url": "https://api.github.com/repos/DataScienceSpecialization/courses/forks",
"keys_url": "https://api.github.com/repos/DataScienceSpecialization/courses/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/DataScienceSpecialization/courses/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/DataScienceSpecialization/courses/teams",
"hooks_url": "https://api.github.com/repos/DataScienceSpecialization/courses/hooks",
"issue_events_url": "https://api.github.com/repos/DataScienceSpecialization/courses/issues/events{/number}",
"events_url": "https://api.github.com/repos/DataScienceSpecialization/courses/events",
"assignees_url": "https://api.github.com/repos/DataScienceSpecialization/courses/assignees{/user}",
"branches_url": "https://api.github.com/repos/DataScienceSpecialization/courses/branches{/branch}",
"tags_url": "https://api.github.com/repos/DataScienceSpecialization/courses/tags",
"blobs_url": "https://api.github.com/repos/DataScienceSpecialization/courses/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/DataScienceSpecialization/courses/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/DataScienceSpecialization/courses/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/DataScienceSpecialization/courses/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/DataScienceSpecialization/courses/statuses/{sha}",
"languages_url": "https://api.github.com/repos/DataScienceSpecialization/courses/languages",
"stargazers_url": "https://api.github.com/repos/DataScienceSpecialization/courses/stargazers",
"contributors_url": "https://api.github.com/repos/DataScienceSpecialization/courses/contributors",
"subscribers_url": "https://api.github.com/repos/DataScienceSpecialization/courses/subscribers",
"subscription_url": "https://api.github.com/repos/DataScienceSpecialization/courses/subscription",
"commits_url": "https://api.github.com/repos/DataScienceSpecialization/courses/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/DataScienceSpecialization/courses/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/DataScienceSpecialization/courses/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/DataScienceSpecialization/courses/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/DataScienceSpecialization/courses/contents/{+path}",
"compare_url": "https://api.github.com/repos/DataScienceSpecialization/courses/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/DataScienceSpecialization/courses/merges",
"archive_url": "https://api.github.com/repos/DataScienceSpecialization/courses/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/DataScienceSpecialization/courses/downloads",
"issues_url": "https://api.github.com/repos/DataScienceSpecialization/courses/issues{/number}",
"pulls_url": "https://api.github.com/repos/DataScienceSpecialization/courses/pulls{/number}",
"milestones_url": "https://api.github.com/repos/DataScienceSpecialization/courses/milestones{/number}",
"notifications_url": "https://api.github.com/repos/DataScienceSpecialization/courses/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/DataScienceSpecialization/courses/labels{/name}",
"releases_url": "https://api.github.com/repos/DataScienceSpecialization/courses/releases{/id}",
"created_at": "2014-01-21T10:22:57Z",
"updated_at": "2015-03-23T21:37:38Z",
"pushed_at": "2015-03-22T09:36:46Z",
"git_url": "git://github.com/DataScienceSpecialization/courses.git",
"ssh_url": "[email protected]:DataScienceSpecialization/courses.git",
"clone_url": "https://github.com/DataScienceSpecialization/courses.git",
"svn_url": "https://github.com/DataScienceSpecialization/courses",
"homepage": null,
"size": 1056123,
"stargazers_count": 1352,
"watchers_count": 1352,
"language": "JavaScript",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"forks_count": 10584,
"mirror_url": null,
"open_issues_count": 57,
"forks": 10584,
"open_issues": 57,
"watchers": 1352,
"default_branch": "master",
"score": 1.0
},
{
"id": 943149,
"name": "d3",
"full_name": "mbostock/d3",
"owner": {
"login": "mbostock",
"id": 230541,
"avatar_url": "https://avatars.githubusercontent.com/u/230541?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/mbostock",
"html_url": "https://github.com/mbostock",
"followers_url": "https://api.github.com/users/mbostock/followers",
"following_url": "https://api.github.com/users/mbostock/following{/other_user}",
"gists_url": "https://api.github.com/users/mbostock/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mbostock/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mbostock/subscriptions",
"organizations_url": "https://api.github.com/users/mbostock/orgs",
"repos_url": "https://api.github.com/users/mbostock/repos",
"events_url": "https://api.github.com/users/mbostock/events{/privacy}",
"received_events_url": "https://api.github.com/users/mbostock/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/mbostock/d3",
"description": "A JavaScript visualization library for HTML and SVG.",
"fork": false,
"url": "https://api.github.com/repos/mbostock/d3",
"forks_url": "https://api.github.com/repos/mbostock/d3/forks",
"keys_url": "https://api.github.com/repos/mbostock/d3/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/mbostock/d3/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/mbostock/d3/teams",
"hooks_url": "https://api.github.com/repos/mbostock/d3/hooks",
"issue_events_url": "https://api.github.com/repos/mbostock/d3/issues/events{/number}",
"events_url": "https://api.github.com/repos/mbostock/d3/events",
"assignees_url": "https://api.github.com/repos/mbostock/d3/assignees{/user}",
"branches_url": "https://api.github.com/repos/mbostock/d3/branches{/branch}",
"tags_url": "https://api.github.com/repos/mbostock/d3/tags",
"blobs_url": "https://api.github.com/repos/mbostock/d3/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/mbostock/d3/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/mbostock/d3/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/mbostock/d3/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/mbostock/d3/statuses/{sha}",
"languages_url": "https://api.github.com/repos/mbostock/d3/languages",
"stargazers_url": "https://api.github.com/repos/mbostock/d3/stargazers",
"contributors_url": "https://api.github.com/repos/mbostock/d3/contributors",
"subscribers_url": "https://api.github.com/repos/mbostock/d3/subscribers",
"subscription_url": "https://api.github.com/repos/mbostock/d3/subscription",
"commits_url": "https://api.github.com/repos/mbostock/d3/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/mbostock/d3/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/mbostock/d3/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/mbostock/d3/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/mbostock/d3/contents/{+path}",
"compare_url": "https://api.github.com/repos/mbostock/d3/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/mbostock/d3/merges",
"archive_url": "https://api.github.com/repos/mbostock/d3/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/mbostock/d3/downloads",
"issues_url": "https://api.github.com/repos/mbostock/d3/issues{/number}",
"pulls_url": "https://api.github.com/repos/mbostock/d3/pulls{/number}",
"milestones_url": "https://api.github.com/repos/mbostock/d3/milestones{/number}",
"notifications_url": "https://api.github.com/repos/mbostock/d3/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/mbostock/d3/labels{/name}",
"releases_url": "https://api.github.com/repos/mbostock/d3/releases{/id}",
"created_at": "2010-09-27T17:22:42Z",
"updated_at": "2015-03-23T23:46:51Z",
"pushed_at": "2015-03-20T19:01:30Z",
"git_url": "git://github.com/mbostock/d3.git",
"ssh_url": "[email protected]:mbostock/d3.git",
"clone_url": "https://github.com/mbostock/d3.git",
"svn_url": "https://github.com/mbostock/d3",
"homepage": "http://d3js.org",
"size": 72805,
"stargazers_count": 35833,
"watchers_count": 35833,
"language": "JavaScript",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"forks_count": 9032,
"mirror_url": null,
"open_issues_count": 229,
"forks": 9032,
"open_issues": 229,
"watchers": 35833,
"default_branch": "master",
"score": 1.0
},
{
"id": 167174,
"name": "jquery",
"full_name": "jquery/jquery",
"owner": {
"login": "jquery",
"id": 70142,
"avatar_url": "https://avatars.githubusercontent.com/u/70142?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/jquery",
"html_url": "https://github.com/jquery",
"followers_url": "https://api.github.com/users/jquery/followers",
"following_url": "https://api.github.com/users/jquery/following{/other_user}",
"gists_url": "https://api.github.com/users/jquery/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jquery/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jquery/subscriptions",
"organizations_url": "https://api.github.com/users/jquery/orgs",
"repos_url": "https://api.github.com/users/jquery/repos",
"events_url": "https://api.github.com/users/jquery/events{/privacy}",
"received_events_url": "https://api.github.com/users/jquery/received_events",
"type": "Organization",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/jquery/jquery",
"description": "jQuery JavaScript Library",
"fork": false,
"url": "https://api.github.com/repos/jquery/jquery",
"forks_url": "https://api.github.com/repos/jquery/jquery/forks",
"keys_url": "https://api.github.com/repos/jquery/jquery/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/jquery/jquery/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/jquery/jquery/teams",
"hooks_url": "https://api.github.com/repos/jquery/jquery/hooks",
"issue_events_url": "https://api.github.com/repos/jquery/jquery/issues/events{/number}",
"events_url": "https://api.github.com/repos/jquery/jquery/events",
"assignees_url": "https://api.github.com/repos/jquery/jquery/assignees{/user}",
"branches_url": "https://api.github.com/repos/jquery/jquery/branches{/branch}",
"tags_url": "https://api.github.com/repos/jquery/jquery/tags",
"blobs_url": "https://api.github.com/repos/jquery/jquery/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/jquery/jquery/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/jquery/jquery/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/jquery/jquery/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/jquery/jquery/statuses/{sha}",
"languages_url": "https://api.github.com/repos/jquery/jquery/languages",
"stargazers_url": "https://api.github.com/repos/jquery/jquery/stargazers",
"contributors_url": "https://api.github.com/repos/jquery/jquery/contributors",
"subscribers_url": "https://api.github.com/repos/jquery/jquery/subscribers",
"subscription_url": "https://api.github.com/repos/jquery/jquery/subscription",
"commits_url": "https://api.github.com/repos/jquery/jquery/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/jquery/jquery/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/jquery/jquery/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/jquery/jquery/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/jquery/jquery/contents/{+path}",
"compare_url": "https://api.github.com/repos/jquery/jquery/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/jquery/jquery/merges",
"archive_url": "https://api.github.com/repos/jquery/jquery/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/jquery/jquery/downloads",
"issues_url": "https://api.github.com/repos/jquery/jquery/issues{/number}",
"pulls_url": "https://api.github.com/repos/jquery/jquery/pulls{/number}",
"milestones_url": "https://api.github.com/repos/jquery/jquery/milestones{/number}",
"notifications_url": "https://api.github.com/repos/jquery/jquery/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/jquery/jquery/labels{/name}",
"releases_url": "https://api.github.com/repos/jquery/jquery/releases{/id}",
"created_at": "2009-04-03T15:20:14Z",
"updated_at": "2015-03-23T23:45:07Z",
"pushed_at": "2015-03-23T17:30:32Z",
"git_url": "git://github.com/jquery/jquery.git",
"ssh_url": "[email protected]:jquery/jquery.git",
"clone_url": "https://github.com/jquery/jquery.git",
"svn_url": "https://github.com/jquery/jquery",
"homepage": "http://jquery.com/",
"size": 39112,
"stargazers_count": 33827,
"watchers_count": 33827,
"language": "JavaScript",
"has_issues": true,
"has_downloads": false,
"has_wiki": true,
"has_pages": false,
"forks_count": 8123,
"mirror_url": null,
"open_issues_count": 107,
"forks": 8123,
"open_issues": 107,
"watchers": 33827,
"default_branch": "master",
"score": 1.0
},
{
"id": 211666,
"name": "node",
"full_name": "joyent/node",
"owner": {
"login": "joyent",
"id": 10161,
"avatar_url": "https://avatars.githubusercontent.com/u/10161?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/joyent",
"html_url": "https://github.com/joyent",
"followers_url": "https://api.github.com/users/joyent/followers",
"following_url": "https://api.github.com/users/joyent/following{/other_user}",
"gists_url": "https://api.github.com/users/joyent/gists{/gist_id}",
"starred_url": "https://api.github.com/users/joyent/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/joyent/subscriptions",
"organizations_url": "https://api.github.com/users/joyent/orgs",
"repos_url": "https://api.github.com/users/joyent/repos",
"events_url": "https://api.github.com/users/joyent/events{/privacy}",
"received_events_url": "https://api.github.com/users/joyent/received_events",
"type": "Organization",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/joyent/node",
"description": "evented I/O for v8 javascript",
"fork": false,
"url": "https://api.github.com/repos/joyent/node",
"forks_url": "https://api.github.com/repos/joyent/node/forks",
"keys_url": "https://api.github.com/repos/joyent/node/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/joyent/node/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/joyent/node/teams",
"hooks_url": "https://api.github.com/repos/joyent/node/hooks",
"issue_events_url": "https://api.github.com/repos/joyent/node/issues/events{/number}",
"events_url": "https://api.github.com/repos/joyent/node/events",
"assignees_url": "https://api.github.com/repos/joyent/node/assignees{/user}",
"branches_url": "https://api.github.com/repos/joyent/node/branches{/branch}",
"tags_url": "https://api.github.com/repos/joyent/node/tags",
"blobs_url": "https://api.github.com/repos/joyent/node/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/joyent/node/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/joyent/node/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/joyent/node/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/joyent/node/statuses/{sha}",
"languages_url": "https://api.github.com/repos/joyent/node/languages",
"stargazers_url": "https://api.github.com/repos/joyent/node/stargazers",
"contributors_url": "https://api.github.com/repos/joyent/node/contributors",
"subscribers_url": "https://api.github.com/repos/joyent/node/subscribers",
"subscription_url": "https://api.github.com/repos/joyent/node/subscription",
"commits_url": "https://api.github.com/repos/joyent/node/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/joyent/node/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/joyent/node/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/joyent/node/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/joyent/node/contents/{+path}",
"compare_url": "https://api.github.com/repos/joyent/node/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/joyent/node/merges",
"archive_url": "https://api.github.com/repos/joyent/node/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/joyent/node/downloads",
"issues_url": "https://api.github.com/repos/joyent/node/issues{/number}",
"pulls_url": "https://api.github.com/repos/joyent/node/pulls{/number}",
"milestones_url": "https://api.github.com/repos/joyent/node/milestones{/number}",
"notifications_url": "https://api.github.com/repos/joyent/node/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/joyent/node/labels{/name}",
"releases_url": "https://api.github.com/repos/joyent/node/releases{/id}",
"created_at": "2009-05-27T16:29:46Z",
"updated_at": "2015-03-24T00:37:03Z",
"pushed_at": "2015-03-23T23:32:39Z",
"git_url": "git://github.com/joyent/node.git",
"ssh_url": "[email protected]:joyent/node.git",
"clone_url": "https://github.com/joyent/node.git",
"svn_url": "https://github.com/joyent/node",
"homepage": "http://nodejs.org/",
"size": 335782,
"stargazers_count": 35298,
"watchers_count": 35298,
"language": "JavaScript",
"has_issues": true,
"has_downloads": false,
"has_wiki": true,
"has_pages": false,
"forks_count": 7885,
"mirror_url": null,
"open_issues_count": 1163,
"forks": 7885,
"open_issues": 1163,
"watchers": 35298,
"default_branch": "master",
"score": 1.0
},
{
"id": 486550,
"name": "html5-boilerplate",
"full_name": "h5bp/html5-boilerplate",
"owner": {
"login": "h5bp",
"id": 1136800,
"avatar_url": "https://avatars.githubusercontent.com/u/1136800?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/h5bp",
"html_url": "https://github.com/h5bp",
"followers_url": "https://api.github.com/users/h5bp/followers",
"following_url": "https://api.github.com/users/h5bp/following{/other_user}",
"gists_url": "https://api.github.com/users/h5bp/gists{/gist_id}",
"starred_url": "https://api.github.com/users/h5bp/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/h5bp/subscriptions",
"organizations_url": "https://api.github.com/users/h5bp/orgs",
"repos_url": "https://api.github.com/users/h5bp/repos",
"events_url": "https://api.github.com/users/h5bp/events{/privacy}",
"received_events_url": "https://api.github.com/users/h5bp/received_events",
"type": "Organization",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/h5bp/html5-boilerplate",
"description": "A professional front-end template for building fast, robust, and adaptable web apps or sites.",
"fork": false,
"url": "https://api.github.com/repos/h5bp/html5-boilerplate",
"forks_url": "https://api.github.com/repos/h5bp/html5-boilerplate/forks",
"keys_url": "https://api.github.com/repos/h5bp/html5-boilerplate/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/h5bp/html5-boilerplate/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/h5bp/html5-boilerplate/teams",
"hooks_url": "https://api.github.com/repos/h5bp/html5-boilerplate/hooks",
"issue_events_url": "https://api.github.com/repos/h5bp/html5-boilerplate/issues/events{/number}",
"events_url": "https://api.github.com/repos/h5bp/html5-boilerplate/events",
"assignees_url": "https://api.github.com/repos/h5bp/html5-boilerplate/assignees{/user}",
"branches_url": "https://api.github.com/repos/h5bp/html5-boilerplate/branches{/branch}",
"tags_url": "https://api.github.com/repos/h5bp/html5-boilerplate/tags",
"blobs_url": "https://api.github.com/repos/h5bp/html5-boilerplate/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/h5bp/html5-boilerplate/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/h5bp/html5-boilerplate/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/h5bp/html5-boilerplate/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/h5bp/html5-boilerplate/statuses/{sha}",
"languages_url": "https://api.github.com/repos/h5bp/html5-boilerplate/languages",
"stargazers_url": "https://api.github.com/repos/h5bp/html5-boilerplate/stargazers",
"contributors_url": "https://api.github.com/repos/h5bp/html5-boilerplate/contributors",
"subscribers_url": "https://api.github.com/repos/h5bp/html5-boilerplate/subscribers",
"subscription_url": "https://api.github.com/repos/h5bp/html5-boilerplate/subscription",
"commits_url": "https://api.github.com/repos/h5bp/html5-boilerplate/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/h5bp/html5-boilerplate/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/h5bp/html5-boilerplate/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/h5bp/html5-boilerplate/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/h5bp/html5-boilerplate/contents/{+path}",
"compare_url": "https://api.github.com/repos/h5bp/html5-boilerplate/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/h5bp/html5-boilerplate/merges",
"archive_url": "https://api.github.com/repos/h5bp/html5-boilerplate/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/h5bp/html5-boilerplate/downloads",
"issues_url": "https://api.github.com/repos/h5bp/html5-boilerplate/issues{/number}",
"pulls_url": "https://api.github.com/repos/h5bp/html5-boilerplate/pulls{/number}",
"milestones_url": "https://api.github.com/repos/h5bp/html5-boilerplate/milestones{/number}",
"notifications_url": "https://api.github.com/repos/h5bp/html5-boilerplate/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/h5bp/html5-boilerplate/labels{/name}",
"releases_url": "https://api.github.com/repos/h5bp/html5-boilerplate/releases{/id}",
"created_at": "2010-01-24T18:03:24Z",
"updated_at": "2015-03-23T22:35:53Z",
"pushed_at": "2015-03-13T20:46:03Z",
"git_url": "git://github.com/h5bp/html5-boilerplate.git",
"ssh_url": "[email protected]:h5bp/html5-boilerplate.git",
"clone_url": "https://github.com/h5bp/html5-boilerplate.git",
"svn_url": "https://github.com/h5bp/html5-boilerplate",
"homepage": "https://html5boilerplate.com/",
"size": 65711,
"stargazers_count": 29194,
"watchers_count": 29194,
"language": "JavaScript",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 7530,
"mirror_url": null,
"open_issues_count": 8,
"forks": 7530,
"open_issues": 8,
"watchers": 29194,
"default_branch": "master",
"score": 1.0
},
{
"id": 1045381,
"name": "phonegap-start",
"full_name": "phonegap/phonegap-start",
"owner": {
"login": "phonegap",
"id": 60365,
"avatar_url": "https://avatars.githubusercontent.com/u/60365?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/phonegap",
"html_url": "https://github.com/phonegap",
"followers_url": "https://api.github.com/users/phonegap/followers",
"following_url": "https://api.github.com/users/phonegap/following{/other_user}",
"gists_url": "https://api.github.com/users/phonegap/gists{/gist_id}",
"starred_url": "https://api.github.com/users/phonegap/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/phonegap/subscriptions",
"organizations_url": "https://api.github.com/users/phonegap/orgs",
"repos_url": "https://api.github.com/users/phonegap/repos",
"events_url": "https://api.github.com/users/phonegap/events{/privacy}",
"received_events_url": "https://api.github.com/users/phonegap/received_events",
"type": "Organization",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/phonegap/phonegap-start",
"description": "PhoneGap Hello World app",
"fork": false,
"url": "https://api.github.com/repos/phonegap/phonegap-start",
"forks_url": "https://api.github.com/repos/phonegap/phonegap-start/forks",
"keys_url": "https://api.github.com/repos/phonegap/phonegap-start/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/phonegap/phonegap-start/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/phonegap/phonegap-start/teams",
"hooks_url": "https://api.github.com/repos/phonegap/phonegap-start/hooks",
"issue_events_url": "https://api.github.com/repos/phonegap/phonegap-start/issues/events{/number}",
"events_url": "https://api.github.com/repos/phonegap/phonegap-start/events",
"assignees_url": "https://api.github.com/repos/phonegap/phonegap-start/assignees{/user}",
"branches_url": "https://api.github.com/repos/phonegap/phonegap-start/branches{/branch}",
"tags_url": "https://api.github.com/repos/phonegap/phonegap-start/tags",
"blobs_url": "https://api.github.com/repos/phonegap/phonegap-start/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/phonegap/phonegap-start/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/phonegap/phonegap-start/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/phonegap/phonegap-start/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/phonegap/phonegap-start/statuses/{sha}",
"languages_url": "https://api.github.com/repos/phonegap/phonegap-start/languages",
"stargazers_url": "https://api.github.com/repos/phonegap/phonegap-start/stargazers",
"contributors_url": "https://api.github.com/repos/phonegap/phonegap-start/contributors",
"subscribers_url": "https://api.github.com/repos/phonegap/phonegap-start/subscribers",
"subscription_url": "https://api.github.com/repos/phonegap/phonegap-start/subscription",
"commits_url": "https://api.github.com/repos/phonegap/phonegap-start/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/phonegap/phonegap-start/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/phonegap/phonegap-start/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/phonegap/phonegap-start/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/phonegap/phonegap-start/contents/{+path}",
"compare_url": "https://api.github.com/repos/phonegap/phonegap-start/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/phonegap/phonegap-start/merges",
"archive_url": "https://api.github.com/repos/phonegap/phonegap-start/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/phonegap/phonegap-start/downloads",
"issues_url": "https://api.github.com/repos/phonegap/phonegap-start/issues{/number}",
"pulls_url": "https://api.github.com/repos/phonegap/phonegap-start/pulls{/number}",
"milestones_url": "https://api.github.com/repos/phonegap/phonegap-start/milestones{/number}",
"notifications_url": "https://api.github.com/repos/phonegap/phonegap-start/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/phonegap/phonegap-start/labels{/name}",
"releases_url": "https://api.github.com/repos/phonegap/phonegap-start/releases{/id}",
"created_at": "2010-11-02T17:45:54Z",
"updated_at": "2015-03-21T14:36:40Z",
"pushed_at": "2015-01-16T19:43:47Z",
"git_url": "git://github.com/phonegap/phonegap-start.git",
"ssh_url": "[email protected]:phonegap/phonegap-start.git",
"clone_url": "https://github.com/phonegap/phonegap-start.git",
"svn_url": "https://github.com/phonegap/phonegap-start",
"homepage": "",
"size": 23582,
"stargazers_count": 3316,
"watchers_count": 3316,
"language": "JavaScript",
"has_issues": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"forks_count": 6550,
"mirror_url": null,
"open_issues_count": 8,
"forks": 6550,
"open_issues": 8,
"watchers": 3316,
"default_branch": "master",
"score": 1.0
},
{
"id": 1844251,
"name": "todomvc",
"full_name": "tastejs/todomvc",
"owner": {
"login": "tastejs",
"id": 1733746,
"avatar_url": "https://avatars.githubusercontent.com/u/1733746?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/tastejs",
"html_url": "https://github.com/tastejs",
"followers_url": "https://api.github.com/users/tastejs/followers",
"following_url": "https://api.github.com/users/tastejs/following{/other_user}",
"gists_url": "https://api.github.com/users/tastejs/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tastejs/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tastejs/subscriptions",
"organizations_url": "https://api.github.com/users/tastejs/orgs",
"repos_url": "https://api.github.com/users/tastejs/repos",
"events_url": "https://api.github.com/users/tastejs/events{/privacy}",
"received_events_url": "https://api.github.com/users/tastejs/received_events",
"type": "Organization",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/tastejs/todomvc",
"description": "Helping you select an MV* framework - Todo apps for Backbone.js, Ember.js, AngularJS, and many more",
"fork": false,
"url": "https://api.github.com/repos/tastejs/todomvc",
"forks_url": "https://api.github.com/repos/tastejs/todomvc/forks",
"keys_url": "https://api.github.com/repos/tastejs/todomvc/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/tastejs/todomvc/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/tastejs/todomvc/teams",
"hooks_url": "https://api.github.com/repos/tastejs/todomvc/hooks",
"issue_events_url": "https://api.github.com/repos/tastejs/todomvc/issues/events{/number}",
"events_url": "https://api.github.com/repos/tastejs/todomvc/events",
"assignees_url": "https://api.github.com/repos/tastejs/todomvc/assignees{/user}",
"branches_url": "https://api.github.com/repos/tastejs/todomvc/branches{/branch}",
"tags_url": "https://api.github.com/repos/tastejs/todomvc/tags",
"blobs_url": "https://api.github.com/repos/tastejs/todomvc/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/tastejs/todomvc/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/tastejs/todomvc/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/tastejs/todomvc/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/tastejs/todomvc/statuses/{sha}",
"languages_url": "https://api.github.com/repos/tastejs/todomvc/languages",
"stargazers_url": "https://api.github.com/repos/tastejs/todomvc/stargazers",
"contributors_url": "https://api.github.com/repos/tastejs/todomvc/contributors",
"subscribers_url": "https://api.github.com/repos/tastejs/todomvc/subscribers",
"subscription_url": "https://api.github.com/repos/tastejs/todomvc/subscription",
"commits_url": "https://api.github.com/repos/tastejs/todomvc/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/tastejs/todomvc/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/tastejs/todomvc/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/tastejs/todomvc/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/tastejs/todomvc/contents/{+path}",
"compare_url": "https://api.github.com/repos/tastejs/todomvc/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/tastejs/todomvc/merges",
"archive_url": "https://api.github.com/repos/tastejs/todomvc/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/tastejs/todomvc/downloads",
"issues_url": "https://api.github.com/repos/tastejs/todomvc/issues{/number}",
"pulls_url": "https://api.github.com/repos/tastejs/todomvc/pulls{/number}",
"milestones_url": "https://api.github.com/repos/tastejs/todomvc/milestones{/number}",
"notifications_url": "https://api.github.com/repos/tastejs/todomvc/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/tastejs/todomvc/labels{/name}",
"releases_url": "https://api.github.com/repos/tastejs/todomvc/releases{/id}",
"created_at": "2011-06-03T19:56:33Z",
"updated_at": "2015-03-23T23:19:24Z",
"pushed_at": "2015-03-23T18:40:37Z",
"git_url": "git://github.com/tastejs/todomvc.git",
"ssh_url": "[email protected]:tastejs/todomvc.git",
"clone_url": "https://github.com/tastejs/todomvc.git",
"svn_url": "https://github.com/tastejs/todomvc",
"homepage": "http://todomvc.com",
"size": 88368,
"stargazers_count": 11941,
"watchers_count": 11941,
"language": "JavaScript",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"forks_count": 6305,
"mirror_url": null,
"open_issues_count": 102,
"forks": 6305,
"open_issues": 102,
"watchers": 11941,
"default_branch": "master",
"score": 1.0
},
{
"id": 1861458,
"name": "reveal.js",
"full_name": "hakimel/reveal.js",
"owner": {
"login": "hakimel",
"id": 629429,
"avatar_url": "https://avatars.githubusercontent.com/u/629429?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/hakimel",
"html_url": "https://github.com/hakimel",
"followers_url": "https://api.github.com/users/hakimel/followers",
"following_url": "https://api.github.com/users/hakimel/following{/other_user}",
"gists_url": "https://api.github.com/users/hakimel/gists{/gist_id}",
"starred_url": "https://api.github.com/users/hakimel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/hakimel/subscriptions",
"organizations_url": "https://api.github.com/users/hakimel/orgs",
"repos_url": "https://api.github.com/users/hakimel/repos",
"events_url": "https://api.github.com/users/hakimel/events{/privacy}",
"received_events_url": "https://api.github.com/users/hakimel/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/hakimel/reveal.js",
"description": "The HTML Presentation Framework",
"fork": false,
"url": "https://api.github.com/repos/hakimel/reveal.js",
"forks_url": "https://api.github.com/repos/hakimel/reveal.js/forks",
"keys_url": "https://api.github.com/repos/hakimel/reveal.js/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/hakimel/reveal.js/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/hakimel/reveal.js/teams",
"hooks_url": "https://api.github.com/repos/hakimel/reveal.js/hooks",
"issue_events_url": "https://api.github.com/repos/hakimel/reveal.js/issues/events{/number}",
"events_url": "https://api.github.com/repos/hakimel/reveal.js/events",
"assignees_url": "https://api.github.com/repos/hakimel/reveal.js/assignees{/user}",
"branches_url": "https://api.github.com/repos/hakimel/reveal.js/branches{/branch}",
"tags_url": "https://api.github.com/repos/hakimel/reveal.js/tags",
"blobs_url": "https://api.github.com/repos/hakimel/reveal.js/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/hakimel/reveal.js/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/hakimel/reveal.js/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/hakimel/reveal.js/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/hakimel/reveal.js/statuses/{sha}",
"languages_url": "https://api.github.com/repos/hakimel/reveal.js/languages",
"stargazers_url": "https://api.github.com/repos/hakimel/reveal.js/stargazers",
"contributors_url": "https://api.github.com/repos/hakimel/reveal.js/contributors",
"subscribers_url": "https://api.github.com/repos/hakimel/reveal.js/subscribers",
"subscription_url": "https://api.github.com/repos/hakimel/reveal.js/subscription",
"commits_url": "https://api.github.com/repos/hakimel/reveal.js/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/hakimel/reveal.js/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/hakimel/reveal.js/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/hakimel/reveal.js/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/hakimel/reveal.js/contents/{+path}",
"compare_url": "https://api.github.com/repos/hakimel/reveal.js/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/hakimel/reveal.js/merges",
"archive_url": "https://api.github.com/repos/hakimel/reveal.js/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/hakimel/reveal.js/downloads",
"issues_url": "https://api.github.com/repos/hakimel/reveal.js/issues{/number}",
"pulls_url": "https://api.github.com/repos/hakimel/reveal.js/pulls{/number}",
"milestones_url": "https://api.github.com/repos/hakimel/reveal.js/milestones{/number}",
"notifications_url": "https://api.github.com/repos/hakimel/reveal.js/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/hakimel/reveal.js/labels{/name}",
"releases_url": "https://api.github.com/repos/hakimel/reveal.js/releases{/id}",
"created_at": "2011-06-07T18:54:22Z",
"updated_at": "2015-03-24T00:40:10Z",
"pushed_at": "2015-03-23T19:24:38Z",
"git_url": "git://github.com/hakimel/reveal.js.git",
"ssh_url": "[email protected]:hakimel/reveal.js.git",
"clone_url": "https://github.com/hakimel/reveal.js.git",
"svn_url": "https://github.com/hakimel/reveal.js",
"homepage": "http://lab.hakim.se/reveal-js/",
"size": 80393,
"stargazers_count": 20153,
"watchers_count": 20153,
"language": "JavaScript",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"forks_count": 6047,
"mirror_url": null,
"open_issues_count": 128,
"forks": 6047,
"open_issues": 128,
"watchers": 20153,
"default_branch": "master",
"score": 1.0
},
{
"id": 576201,
"name": "three.js",
"full_name": "mrdoob/three.js",
"owner": {
"login": "mrdoob",
"id": 97088,
"avatar_url": "https://avatars.githubusercontent.com/u/97088?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/mrdoob",
"html_url": "https://github.com/mrdoob",
"followers_url": "https://api.github.com/users/mrdoob/followers",
"following_url": "https://api.github.com/users/mrdoob/following{/other_user}",
"gists_url": "https://api.github.com/users/mrdoob/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mrdoob/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mrdoob/subscriptions",
"organizations_url": "https://api.github.com/users/mrdoob/orgs",
"repos_url": "https://api.github.com/users/mrdoob/repos",
"events_url": "https://api.github.com/users/mrdoob/events{/privacy}",
"received_events_url": "https://api.github.com/users/mrdoob/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/mrdoob/three.js",
"description": "JavaScript 3D library.",
"fork": false,
"url": "https://api.github.com/repos/mrdoob/three.js",
"forks_url": "https://api.github.com/repos/mrdoob/three.js/forks",
"keys_url": "https://api.github.com/repos/mrdoob/three.js/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/mrdoob/three.js/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/mrdoob/three.js/teams",
"hooks_url": "https://api.github.com/repos/mrdoob/three.js/hooks",
"issue_events_url": "https://api.github.com/repos/mrdoob/three.js/issues/events{/number}",
"events_url": "https://api.github.com/repos/mrdoob/three.js/events",
"assignees_url": "https://api.github.com/repos/mrdoob/three.js/assignees{/user}",
"branches_url": "https://api.github.com/repos/mrdoob/three.js/branches{/branch}",
"tags_url": "https://api.github.com/repos/mrdoob/three.js/tags",
"blobs_url": "https://api.github.com/repos/mrdoob/three.js/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/mrdoob/three.js/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/mrdoob/three.js/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/mrdoob/three.js/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/mrdoob/three.js/statuses/{sha}",
"languages_url": "https://api.github.com/repos/mrdoob/three.js/languages",
"stargazers_url": "https://api.github.com/repos/mrdoob/three.js/stargazers",
"contributors_url": "https://api.github.com/repos/mrdoob/three.js/contributors",
"subscribers_url": "https://api.github.com/repos/mrdoob/three.js/subscribers",
"subscription_url": "https://api.github.com/repos/mrdoob/three.js/subscription",
"commits_url": "https://api.github.com/repos/mrdoob/three.js/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/mrdoob/three.js/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/mrdoob/three.js/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/mrdoob/three.js/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/mrdoob/three.js/contents/{+path}",
"compare_url": "https://api.github.com/repos/mrdoob/three.js/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/mrdoob/three.js/merges",
"archive_url": "https://api.github.com/repos/mrdoob/three.js/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/mrdoob/three.js/downloads",
"issues_url": "https://api.github.com/repos/mrdoob/three.js/issues{/number}",
"pulls_url": "https://api.github.com/repos/mrdoob/three.js/pulls{/number}",
"milestones_url": "https://api.github.com/repos/mrdoob/three.js/milestones{/number}",
"notifications_url": "https://api.github.com/repos/mrdoob/three.js/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/mrdoob/three.js/labels{/name}",
"releases_url": "https://api.github.com/repos/mrdoob/three.js/releases{/id}",
"created_at": "2010-03-23T18:58:01Z",
"updated_at": "2015-03-24T00:41:10Z",
"pushed_at": "2015-03-23T21:32:03Z",
"git_url": "git://github.com/mrdoob/three.js.git",
"ssh_url": "[email protected]:mrdoob/three.js.git",
"clone_url": "https://github.com/mrdoob/three.js.git",
"svn_url": "https://github.com/mrdoob/three.js",
"homepage": "http://threejs.org/",
"size": 356392,
"stargazers_count": 18775,
"watchers_count": 18775,
"language": "JavaScript",
"has_issues": true,
"has_downloads": false,
"has_wiki": true,
"has_pages": true,
"forks_count": 5471,
"mirror_url": null,
"open_issues_count": 780,
"forks": 5471,
"open_issues": 780,
"watchers": 18775,
"default_branch": "master",
"score": 1.0
},
{
"id": 24366295,
"name": "frontend-nanodegree-resume",
"full_name": "udacity/frontend-nanodegree-resume",
"owner": {
"login": "udacity",
"id": 1916665,
"avatar_url": "https://avatars.githubusercontent.com/u/1916665?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/udacity",
"html_url": "https://github.com/udacity",
"followers_url": "https://api.github.com/users/udacity/followers",
"following_url": "https://api.github.com/users/udacity/following{/other_user}",
"gists_url": "https://api.github.com/users/udacity/gists{/gist_id}",
"starred_url": "https://api.github.com/users/udacity/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/udacity/subscriptions",
"organizations_url": "https://api.github.com/users/udacity/orgs",
"repos_url": "https://api.github.com/users/udacity/repos",
"events_url": "https://api.github.com/users/udacity/events{/privacy}",
"received_events_url": "https://api.github.com/users/udacity/received_events",
"type": "Organization",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/udacity/frontend-nanodegree-resume",
"description": "",
"fork": false,
"url": "https://api.github.com/repos/udacity/frontend-nanodegree-resume",