-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.txt
9331 lines (9331 loc) · 587 KB
/
1.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": 149,
"incomplete_results": false,
"items": [
{
"id": 88232478,
"name": "javaee-angularjs",
"full_name": "swhp/javaee-angularjs",
"owner": {
"login": "swhp",
"id": 7004831,
"avatar_url": "https://avatars3.githubusercontent.com/u/7004831?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/swhp",
"html_url": "https://github.com/swhp",
"followers_url": "https://api.github.com/users/swhp/followers",
"following_url": "https://api.github.com/users/swhp/following{/other_user}",
"gists_url": "https://api.github.com/users/swhp/gists{/gist_id}",
"starred_url": "https://api.github.com/users/swhp/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/swhp/subscriptions",
"organizations_url": "https://api.github.com/users/swhp/orgs",
"repos_url": "https://api.github.com/users/swhp/repos",
"events_url": "https://api.github.com/users/swhp/events{/privacy}",
"received_events_url": "https://api.github.com/users/swhp/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/swhp/javaee-angularjs",
"description": "single page application with Java EE 7 and AngularJS 1",
"fork": false,
"url": "https://api.github.com/repos/swhp/javaee-angularjs",
"forks_url": "https://api.github.com/repos/swhp/javaee-angularjs/forks",
"keys_url": "https://api.github.com/repos/swhp/javaee-angularjs/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/swhp/javaee-angularjs/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/swhp/javaee-angularjs/teams",
"hooks_url": "https://api.github.com/repos/swhp/javaee-angularjs/hooks",
"issue_events_url": "https://api.github.com/repos/swhp/javaee-angularjs/issues/events{/number}",
"events_url": "https://api.github.com/repos/swhp/javaee-angularjs/events",
"assignees_url": "https://api.github.com/repos/swhp/javaee-angularjs/assignees{/user}",
"branches_url": "https://api.github.com/repos/swhp/javaee-angularjs/branches{/branch}",
"tags_url": "https://api.github.com/repos/swhp/javaee-angularjs/tags",
"blobs_url": "https://api.github.com/repos/swhp/javaee-angularjs/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/swhp/javaee-angularjs/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/swhp/javaee-angularjs/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/swhp/javaee-angularjs/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/swhp/javaee-angularjs/statuses/{sha}",
"languages_url": "https://api.github.com/repos/swhp/javaee-angularjs/languages",
"stargazers_url": "https://api.github.com/repos/swhp/javaee-angularjs/stargazers",
"contributors_url": "https://api.github.com/repos/swhp/javaee-angularjs/contributors",
"subscribers_url": "https://api.github.com/repos/swhp/javaee-angularjs/subscribers",
"subscription_url": "https://api.github.com/repos/swhp/javaee-angularjs/subscription",
"commits_url": "https://api.github.com/repos/swhp/javaee-angularjs/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/swhp/javaee-angularjs/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/swhp/javaee-angularjs/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/swhp/javaee-angularjs/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/swhp/javaee-angularjs/contents/{+path}",
"compare_url": "https://api.github.com/repos/swhp/javaee-angularjs/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/swhp/javaee-angularjs/merges",
"archive_url": "https://api.github.com/repos/swhp/javaee-angularjs/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/swhp/javaee-angularjs/downloads",
"issues_url": "https://api.github.com/repos/swhp/javaee-angularjs/issues{/number}",
"pulls_url": "https://api.github.com/repos/swhp/javaee-angularjs/pulls{/number}",
"milestones_url": "https://api.github.com/repos/swhp/javaee-angularjs/milestones{/number}",
"notifications_url": "https://api.github.com/repos/swhp/javaee-angularjs/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/swhp/javaee-angularjs/labels{/name}",
"releases_url": "https://api.github.com/repos/swhp/javaee-angularjs/releases{/id}",
"deployments_url": "https://api.github.com/repos/swhp/javaee-angularjs/deployments",
"created_at": "2017-04-14T04:20:32Z",
"updated_at": "2018-04-02T03:38:18Z",
"pushed_at": "2017-05-27T03:55:14Z",
"git_url": "git://github.com/swhp/javaee-angularjs.git",
"ssh_url": "[email protected]:swhp/javaee-angularjs.git",
"clone_url": "https://github.com/swhp/javaee-angularjs.git",
"svn_url": "https://github.com/swhp/javaee-angularjs",
"homepage": null,
"size": 33,
"stargazers_count": 8,
"watchers_count": 8,
"language": "JavaScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 4,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": null,
"forks": 4,
"open_issues": 0,
"watchers": 8,
"default_branch": "master",
"score": 29.694427
},
{
"id": 67923610,
"name": "cdi-angular-spa",
"full_name": "jettcalleja/cdi-angular-spa",
"owner": {
"login": "jettcalleja",
"id": 6356258,
"avatar_url": "https://avatars0.githubusercontent.com/u/6356258?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jettcalleja",
"html_url": "https://github.com/jettcalleja",
"followers_url": "https://api.github.com/users/jettcalleja/followers",
"following_url": "https://api.github.com/users/jettcalleja/following{/other_user}",
"gists_url": "https://api.github.com/users/jettcalleja/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jettcalleja/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jettcalleja/subscriptions",
"organizations_url": "https://api.github.com/users/jettcalleja/orgs",
"repos_url": "https://api.github.com/users/jettcalleja/repos",
"events_url": "https://api.github.com/users/jettcalleja/events{/privacy}",
"received_events_url": "https://api.github.com/users/jettcalleja/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/jettcalleja/cdi-angular-spa",
"description": "Single page application boilerplate using Angular 1",
"fork": false,
"url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa",
"forks_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/forks",
"keys_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/teams",
"hooks_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/hooks",
"issue_events_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/issues/events{/number}",
"events_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/events",
"assignees_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/assignees{/user}",
"branches_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/branches{/branch}",
"tags_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/tags",
"blobs_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/statuses/{sha}",
"languages_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/languages",
"stargazers_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/stargazers",
"contributors_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/contributors",
"subscribers_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/subscribers",
"subscription_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/subscription",
"commits_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/contents/{+path}",
"compare_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/merges",
"archive_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/downloads",
"issues_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/issues{/number}",
"pulls_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/pulls{/number}",
"milestones_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/milestones{/number}",
"notifications_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/labels{/name}",
"releases_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/releases{/id}",
"deployments_url": "https://api.github.com/repos/jettcalleja/cdi-angular-spa/deployments",
"created_at": "2016-09-11T10:20:15Z",
"updated_at": "2016-10-28T04:05:00Z",
"pushed_at": "2017-08-02T09:06:53Z",
"git_url": "git://github.com/jettcalleja/cdi-angular-spa.git",
"ssh_url": "[email protected]:jettcalleja/cdi-angular-spa.git",
"clone_url": "https://github.com/jettcalleja/cdi-angular-spa.git",
"svn_url": "https://github.com/jettcalleja/cdi-angular-spa",
"homepage": null,
"size": 129,
"stargazers_count": 4,
"watchers_count": 4,
"language": "JavaScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 3,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": null,
"forks": 3,
"open_issues": 0,
"watchers": 4,
"default_branch": "master",
"score": 27.779984
},
{
"id": 83688460,
"name": "magento-infinite-scroll",
"full_name": "meanbee/magento-infinite-scroll",
"owner": {
"login": "meanbee",
"id": 58301,
"avatar_url": "https://avatars1.githubusercontent.com/u/58301?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/meanbee",
"html_url": "https://github.com/meanbee",
"followers_url": "https://api.github.com/users/meanbee/followers",
"following_url": "https://api.github.com/users/meanbee/following{/other_user}",
"gists_url": "https://api.github.com/users/meanbee/gists{/gist_id}",
"starred_url": "https://api.github.com/users/meanbee/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/meanbee/subscriptions",
"organizations_url": "https://api.github.com/users/meanbee/orgs",
"repos_url": "https://api.github.com/users/meanbee/repos",
"events_url": "https://api.github.com/users/meanbee/events{/privacy}",
"received_events_url": "https://api.github.com/users/meanbee/received_events",
"type": "Organization",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/meanbee/magento-infinite-scroll",
"description": "Lazy load products on category and search results pages with our Infinite Scroll extension for Magento 1",
"fork": false,
"url": "https://api.github.com/repos/meanbee/magento-infinite-scroll",
"forks_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/forks",
"keys_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/teams",
"hooks_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/hooks",
"issue_events_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/issues/events{/number}",
"events_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/events",
"assignees_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/assignees{/user}",
"branches_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/branches{/branch}",
"tags_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/tags",
"blobs_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/statuses/{sha}",
"languages_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/languages",
"stargazers_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/stargazers",
"contributors_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/contributors",
"subscribers_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/subscribers",
"subscription_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/subscription",
"commits_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/contents/{+path}",
"compare_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/merges",
"archive_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/downloads",
"issues_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/issues{/number}",
"pulls_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/pulls{/number}",
"milestones_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/milestones{/number}",
"notifications_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/labels{/name}",
"releases_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/releases{/id}",
"deployments_url": "https://api.github.com/repos/meanbee/magento-infinite-scroll/deployments",
"created_at": "2017-03-02T14:43:58Z",
"updated_at": "2018-03-26T17:02:00Z",
"pushed_at": "2017-03-29T11:44:47Z",
"git_url": "git://github.com/meanbee/magento-infinite-scroll.git",
"ssh_url": "[email protected]:meanbee/magento-infinite-scroll.git",
"clone_url": "https://github.com/meanbee/magento-infinite-scroll.git",
"svn_url": "https://github.com/meanbee/magento-infinite-scroll",
"homepage": "https://www.meanbee.com/magento-extensions/infinite-scroll.html",
"size": 49,
"stargazers_count": 8,
"watchers_count": 8,
"language": "JavaScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 3,
"mirror_url": null,
"archived": false,
"open_issues_count": 1,
"license": {
"key": "osl-3.0",
"name": "Open Software License 3.0",
"spdx_id": "OSL-3.0",
"url": "https://api.github.com/licenses/osl-3.0"
},
"forks": 3,
"open_issues": 1,
"watchers": 8,
"default_branch": "develop",
"score": 19.093023
},
{
"id": 36068385,
"name": "magento-pjax",
"full_name": "dimitri-koenig/magento-pjax",
"owner": {
"login": "dimitri-koenig",
"id": 4375825,
"avatar_url": "https://avatars3.githubusercontent.com/u/4375825?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dimitri-koenig",
"html_url": "https://github.com/dimitri-koenig",
"followers_url": "https://api.github.com/users/dimitri-koenig/followers",
"following_url": "https://api.github.com/users/dimitri-koenig/following{/other_user}",
"gists_url": "https://api.github.com/users/dimitri-koenig/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dimitri-koenig/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dimitri-koenig/subscriptions",
"organizations_url": "https://api.github.com/users/dimitri-koenig/orgs",
"repos_url": "https://api.github.com/users/dimitri-koenig/repos",
"events_url": "https://api.github.com/users/dimitri-koenig/events{/privacy}",
"received_events_url": "https://api.github.com/users/dimitri-koenig/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/dimitri-koenig/magento-pjax",
"description": "Makes Magento 1 use PJAX for faster page loads [UNMAINTAINED]",
"fork": false,
"url": "https://api.github.com/repos/dimitri-koenig/magento-pjax",
"forks_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/forks",
"keys_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/teams",
"hooks_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/hooks",
"issue_events_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/issues/events{/number}",
"events_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/events",
"assignees_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/assignees{/user}",
"branches_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/branches{/branch}",
"tags_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/tags",
"blobs_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/statuses/{sha}",
"languages_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/languages",
"stargazers_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/stargazers",
"contributors_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/contributors",
"subscribers_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/subscribers",
"subscription_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/subscription",
"commits_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/contents/{+path}",
"compare_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/merges",
"archive_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/downloads",
"issues_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/issues{/number}",
"pulls_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/pulls{/number}",
"milestones_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/milestones{/number}",
"notifications_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/labels{/name}",
"releases_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/releases{/id}",
"deployments_url": "https://api.github.com/repos/dimitri-koenig/magento-pjax/deployments",
"created_at": "2015-05-22T11:18:02Z",
"updated_at": "2018-03-18T10:06:30Z",
"pushed_at": "2018-03-18T10:06:28Z",
"git_url": "git://github.com/dimitri-koenig/magento-pjax.git",
"ssh_url": "[email protected]:dimitri-koenig/magento-pjax.git",
"clone_url": "https://github.com/dimitri-koenig/magento-pjax.git",
"svn_url": "https://github.com/dimitri-koenig/magento-pjax",
"homepage": "",
"size": 34,
"stargazers_count": 2,
"watchers_count": 2,
"language": "JavaScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 2,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": null,
"forks": 2,
"open_issues": 0,
"watchers": 2,
"default_branch": "master",
"score": 17.981062
},
{
"id": 17831584,
"name": "first-page-loader",
"full_name": "eddyystop/first-page-loader",
"owner": {
"login": "eddyystop",
"id": 1553311,
"avatar_url": "https://avatars3.githubusercontent.com/u/1553311?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/eddyystop",
"html_url": "https://github.com/eddyystop",
"followers_url": "https://api.github.com/users/eddyystop/followers",
"following_url": "https://api.github.com/users/eddyystop/following{/other_user}",
"gists_url": "https://api.github.com/users/eddyystop/gists{/gist_id}",
"starred_url": "https://api.github.com/users/eddyystop/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/eddyystop/subscriptions",
"organizations_url": "https://api.github.com/users/eddyystop/orgs",
"repos_url": "https://api.github.com/users/eddyystop/repos",
"events_url": "https://api.github.com/users/eddyystop/events{/privacy}",
"received_events_url": "https://api.github.com/users/eddyystop/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/eddyystop/first-page-loader",
"description": "Basic lib for downloading additional JS and CSS. Used to show the first (skeletal) browser page in under 1 sec.",
"fork": false,
"url": "https://api.github.com/repos/eddyystop/first-page-loader",
"forks_url": "https://api.github.com/repos/eddyystop/first-page-loader/forks",
"keys_url": "https://api.github.com/repos/eddyystop/first-page-loader/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/eddyystop/first-page-loader/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/eddyystop/first-page-loader/teams",
"hooks_url": "https://api.github.com/repos/eddyystop/first-page-loader/hooks",
"issue_events_url": "https://api.github.com/repos/eddyystop/first-page-loader/issues/events{/number}",
"events_url": "https://api.github.com/repos/eddyystop/first-page-loader/events",
"assignees_url": "https://api.github.com/repos/eddyystop/first-page-loader/assignees{/user}",
"branches_url": "https://api.github.com/repos/eddyystop/first-page-loader/branches{/branch}",
"tags_url": "https://api.github.com/repos/eddyystop/first-page-loader/tags",
"blobs_url": "https://api.github.com/repos/eddyystop/first-page-loader/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/eddyystop/first-page-loader/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/eddyystop/first-page-loader/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/eddyystop/first-page-loader/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/eddyystop/first-page-loader/statuses/{sha}",
"languages_url": "https://api.github.com/repos/eddyystop/first-page-loader/languages",
"stargazers_url": "https://api.github.com/repos/eddyystop/first-page-loader/stargazers",
"contributors_url": "https://api.github.com/repos/eddyystop/first-page-loader/contributors",
"subscribers_url": "https://api.github.com/repos/eddyystop/first-page-loader/subscribers",
"subscription_url": "https://api.github.com/repos/eddyystop/first-page-loader/subscription",
"commits_url": "https://api.github.com/repos/eddyystop/first-page-loader/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/eddyystop/first-page-loader/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/eddyystop/first-page-loader/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/eddyystop/first-page-loader/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/eddyystop/first-page-loader/contents/{+path}",
"compare_url": "https://api.github.com/repos/eddyystop/first-page-loader/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/eddyystop/first-page-loader/merges",
"archive_url": "https://api.github.com/repos/eddyystop/first-page-loader/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/eddyystop/first-page-loader/downloads",
"issues_url": "https://api.github.com/repos/eddyystop/first-page-loader/issues{/number}",
"pulls_url": "https://api.github.com/repos/eddyystop/first-page-loader/pulls{/number}",
"milestones_url": "https://api.github.com/repos/eddyystop/first-page-loader/milestones{/number}",
"notifications_url": "https://api.github.com/repos/eddyystop/first-page-loader/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/eddyystop/first-page-loader/labels{/name}",
"releases_url": "https://api.github.com/repos/eddyystop/first-page-loader/releases{/id}",
"deployments_url": "https://api.github.com/repos/eddyystop/first-page-loader/deployments",
"created_at": "2014-03-17T14:52:36Z",
"updated_at": "2016-11-13T14:36:06Z",
"pushed_at": "2014-06-12T19:35:51Z",
"git_url": "git://github.com/eddyystop/first-page-loader.git",
"ssh_url": "[email protected]:eddyystop/first-page-loader.git",
"clone_url": "https://github.com/eddyystop/first-page-loader.git",
"svn_url": "https://github.com/eddyystop/first-page-loader",
"homepage": null,
"size": 180,
"stargazers_count": 10,
"watchers_count": 10,
"language": "JavaScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit"
},
"forks": 0,
"open_issues": 0,
"watchers": 10,
"default_branch": "master",
"score": 12.669476
},
{
"id": 61844470,
"name": "ng-dynamic-title",
"full_name": "clamstew/ng-dynamic-title",
"owner": {
"login": "clamstew",
"id": 4318715,
"avatar_url": "https://avatars3.githubusercontent.com/u/4318715?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/clamstew",
"html_url": "https://github.com/clamstew",
"followers_url": "https://api.github.com/users/clamstew/followers",
"following_url": "https://api.github.com/users/clamstew/following{/other_user}",
"gists_url": "https://api.github.com/users/clamstew/gists{/gist_id}",
"starred_url": "https://api.github.com/users/clamstew/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/clamstew/subscriptions",
"organizations_url": "https://api.github.com/users/clamstew/orgs",
"repos_url": "https://api.github.com/users/clamstew/repos",
"events_url": "https://api.github.com/users/clamstew/events{/privacy}",
"received_events_url": "https://api.github.com/users/clamstew/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/clamstew/ng-dynamic-title",
"description": "Easy dynamic page titles in angular 1.x when using ui-router",
"fork": false,
"url": "https://api.github.com/repos/clamstew/ng-dynamic-title",
"forks_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/forks",
"keys_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/teams",
"hooks_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/hooks",
"issue_events_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/issues/events{/number}",
"events_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/events",
"assignees_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/assignees{/user}",
"branches_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/branches{/branch}",
"tags_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/tags",
"blobs_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/statuses/{sha}",
"languages_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/languages",
"stargazers_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/stargazers",
"contributors_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/contributors",
"subscribers_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/subscribers",
"subscription_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/subscription",
"commits_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/contents/{+path}",
"compare_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/merges",
"archive_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/downloads",
"issues_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/issues{/number}",
"pulls_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/pulls{/number}",
"milestones_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/milestones{/number}",
"notifications_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/labels{/name}",
"releases_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/releases{/id}",
"deployments_url": "https://api.github.com/repos/clamstew/ng-dynamic-title/deployments",
"created_at": "2016-06-24T00:02:23Z",
"updated_at": "2017-02-09T17:41:51Z",
"pushed_at": "2016-07-28T08:26:50Z",
"git_url": "git://github.com/clamstew/ng-dynamic-title.git",
"ssh_url": "[email protected]:clamstew/ng-dynamic-title.git",
"clone_url": "https://github.com/clamstew/ng-dynamic-title.git",
"svn_url": "https://github.com/clamstew/ng-dynamic-title",
"homepage": "https://clamstew.github.io/ng-dynamic-title",
"size": 22,
"stargazers_count": 5,
"watchers_count": 5,
"language": "JavaScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"open_issues_count": 3,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit"
},
"forks": 0,
"open_issues": 3,
"watchers": 5,
"default_branch": "master",
"score": 12.451104
},
{
"id": 7470775,
"name": "bigCarousel",
"full_name": "hcmn/bigCarousel",
"owner": {
"login": "hcmn",
"id": 1934299,
"avatar_url": "https://avatars2.githubusercontent.com/u/1934299?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/hcmn",
"html_url": "https://github.com/hcmn",
"followers_url": "https://api.github.com/users/hcmn/followers",
"following_url": "https://api.github.com/users/hcmn/following{/other_user}",
"gists_url": "https://api.github.com/users/hcmn/gists{/gist_id}",
"starred_url": "https://api.github.com/users/hcmn/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/hcmn/subscriptions",
"organizations_url": "https://api.github.com/users/hcmn/orgs",
"repos_url": "https://api.github.com/users/hcmn/repos",
"events_url": "https://api.github.com/users/hcmn/events{/privacy}",
"received_events_url": "https://api.github.com/users/hcmn/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/hcmn/bigCarousel",
"description": "full-screen carousel, 1 pager",
"fork": false,
"url": "https://api.github.com/repos/hcmn/bigCarousel",
"forks_url": "https://api.github.com/repos/hcmn/bigCarousel/forks",
"keys_url": "https://api.github.com/repos/hcmn/bigCarousel/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/hcmn/bigCarousel/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/hcmn/bigCarousel/teams",
"hooks_url": "https://api.github.com/repos/hcmn/bigCarousel/hooks",
"issue_events_url": "https://api.github.com/repos/hcmn/bigCarousel/issues/events{/number}",
"events_url": "https://api.github.com/repos/hcmn/bigCarousel/events",
"assignees_url": "https://api.github.com/repos/hcmn/bigCarousel/assignees{/user}",
"branches_url": "https://api.github.com/repos/hcmn/bigCarousel/branches{/branch}",
"tags_url": "https://api.github.com/repos/hcmn/bigCarousel/tags",
"blobs_url": "https://api.github.com/repos/hcmn/bigCarousel/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/hcmn/bigCarousel/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/hcmn/bigCarousel/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/hcmn/bigCarousel/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/hcmn/bigCarousel/statuses/{sha}",
"languages_url": "https://api.github.com/repos/hcmn/bigCarousel/languages",
"stargazers_url": "https://api.github.com/repos/hcmn/bigCarousel/stargazers",
"contributors_url": "https://api.github.com/repos/hcmn/bigCarousel/contributors",
"subscribers_url": "https://api.github.com/repos/hcmn/bigCarousel/subscribers",
"subscription_url": "https://api.github.com/repos/hcmn/bigCarousel/subscription",
"commits_url": "https://api.github.com/repos/hcmn/bigCarousel/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/hcmn/bigCarousel/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/hcmn/bigCarousel/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/hcmn/bigCarousel/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/hcmn/bigCarousel/contents/{+path}",
"compare_url": "https://api.github.com/repos/hcmn/bigCarousel/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/hcmn/bigCarousel/merges",
"archive_url": "https://api.github.com/repos/hcmn/bigCarousel/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/hcmn/bigCarousel/downloads",
"issues_url": "https://api.github.com/repos/hcmn/bigCarousel/issues{/number}",
"pulls_url": "https://api.github.com/repos/hcmn/bigCarousel/pulls{/number}",
"milestones_url": "https://api.github.com/repos/hcmn/bigCarousel/milestones{/number}",
"notifications_url": "https://api.github.com/repos/hcmn/bigCarousel/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/hcmn/bigCarousel/labels{/name}",
"releases_url": "https://api.github.com/repos/hcmn/bigCarousel/releases{/id}",
"deployments_url": "https://api.github.com/repos/hcmn/bigCarousel/deployments",
"created_at": "2013-01-06T18:02:05Z",
"updated_at": "2013-10-26T11:47:04Z",
"pushed_at": "2013-01-06T18:18:46Z",
"git_url": "git://github.com/hcmn/bigCarousel.git",
"ssh_url": "[email protected]:hcmn/bigCarousel.git",
"clone_url": "https://github.com/hcmn/bigCarousel.git",
"svn_url": "https://github.com/hcmn/bigCarousel",
"homepage": null,
"size": 184,
"stargazers_count": 0,
"watchers_count": 0,
"language": "JavaScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": null,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 11.240606
},
{
"id": 54431030,
"name": "scrolling_nav",
"full_name": "pixelstorm/scrolling_nav",
"owner": {
"login": "pixelstorm",
"id": 1531433,
"avatar_url": "https://avatars1.githubusercontent.com/u/1531433?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/pixelstorm",
"html_url": "https://github.com/pixelstorm",
"followers_url": "https://api.github.com/users/pixelstorm/followers",
"following_url": "https://api.github.com/users/pixelstorm/following{/other_user}",
"gists_url": "https://api.github.com/users/pixelstorm/gists{/gist_id}",
"starred_url": "https://api.github.com/users/pixelstorm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/pixelstorm/subscriptions",
"organizations_url": "https://api.github.com/users/pixelstorm/orgs",
"repos_url": "https://api.github.com/users/pixelstorm/repos",
"events_url": "https://api.github.com/users/pixelstorm/events{/privacy}",
"received_events_url": "https://api.github.com/users/pixelstorm/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/pixelstorm/scrolling_nav",
"description": "navigation for 1 page theme",
"fork": false,
"url": "https://api.github.com/repos/pixelstorm/scrolling_nav",
"forks_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/forks",
"keys_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/teams",
"hooks_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/hooks",
"issue_events_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/issues/events{/number}",
"events_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/events",
"assignees_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/assignees{/user}",
"branches_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/branches{/branch}",
"tags_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/tags",
"blobs_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/statuses/{sha}",
"languages_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/languages",
"stargazers_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/stargazers",
"contributors_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/contributors",
"subscribers_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/subscribers",
"subscription_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/subscription",
"commits_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/contents/{+path}",
"compare_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/merges",
"archive_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/downloads",
"issues_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/issues{/number}",
"pulls_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/pulls{/number}",
"milestones_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/milestones{/number}",
"notifications_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/labels{/name}",
"releases_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/releases{/id}",
"deployments_url": "https://api.github.com/repos/pixelstorm/scrolling_nav/deployments",
"created_at": "2016-03-21T23:46:16Z",
"updated_at": "2016-03-21T23:47:20Z",
"pushed_at": "2016-03-22T00:03:52Z",
"git_url": "git://github.com/pixelstorm/scrolling_nav.git",
"ssh_url": "[email protected]:pixelstorm/scrolling_nav.git",
"clone_url": "https://github.com/pixelstorm/scrolling_nav.git",
"svn_url": "https://github.com/pixelstorm/scrolling_nav",
"homepage": null,
"size": 0,
"stargazers_count": 0,
"watchers_count": 0,
"language": "JavaScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": null,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 11.23572
},
{
"id": 113052096,
"name": "ng1-todo",
"full_name": "wandelson/ng1-todo",
"owner": {
"login": "wandelson",
"id": 810174,
"avatar_url": "https://avatars0.githubusercontent.com/u/810174?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/wandelson",
"html_url": "https://github.com/wandelson",
"followers_url": "https://api.github.com/users/wandelson/followers",
"following_url": "https://api.github.com/users/wandelson/following{/other_user}",
"gists_url": "https://api.github.com/users/wandelson/gists{/gist_id}",
"starred_url": "https://api.github.com/users/wandelson/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wandelson/subscriptions",
"organizations_url": "https://api.github.com/users/wandelson/orgs",
"repos_url": "https://api.github.com/users/wandelson/repos",
"events_url": "https://api.github.com/users/wandelson/events{/privacy}",
"received_events_url": "https://api.github.com/users/wandelson/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/wandelson/ng1-todo",
"description": " Single Page com AngularJS 1",
"fork": false,
"url": "https://api.github.com/repos/wandelson/ng1-todo",
"forks_url": "https://api.github.com/repos/wandelson/ng1-todo/forks",
"keys_url": "https://api.github.com/repos/wandelson/ng1-todo/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/wandelson/ng1-todo/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/wandelson/ng1-todo/teams",
"hooks_url": "https://api.github.com/repos/wandelson/ng1-todo/hooks",
"issue_events_url": "https://api.github.com/repos/wandelson/ng1-todo/issues/events{/number}",
"events_url": "https://api.github.com/repos/wandelson/ng1-todo/events",
"assignees_url": "https://api.github.com/repos/wandelson/ng1-todo/assignees{/user}",
"branches_url": "https://api.github.com/repos/wandelson/ng1-todo/branches{/branch}",
"tags_url": "https://api.github.com/repos/wandelson/ng1-todo/tags",
"blobs_url": "https://api.github.com/repos/wandelson/ng1-todo/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/wandelson/ng1-todo/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/wandelson/ng1-todo/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/wandelson/ng1-todo/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/wandelson/ng1-todo/statuses/{sha}",
"languages_url": "https://api.github.com/repos/wandelson/ng1-todo/languages",
"stargazers_url": "https://api.github.com/repos/wandelson/ng1-todo/stargazers",
"contributors_url": "https://api.github.com/repos/wandelson/ng1-todo/contributors",
"subscribers_url": "https://api.github.com/repos/wandelson/ng1-todo/subscribers",
"subscription_url": "https://api.github.com/repos/wandelson/ng1-todo/subscription",
"commits_url": "https://api.github.com/repos/wandelson/ng1-todo/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/wandelson/ng1-todo/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/wandelson/ng1-todo/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/wandelson/ng1-todo/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/wandelson/ng1-todo/contents/{+path}",
"compare_url": "https://api.github.com/repos/wandelson/ng1-todo/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/wandelson/ng1-todo/merges",
"archive_url": "https://api.github.com/repos/wandelson/ng1-todo/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/wandelson/ng1-todo/downloads",
"issues_url": "https://api.github.com/repos/wandelson/ng1-todo/issues{/number}",
"pulls_url": "https://api.github.com/repos/wandelson/ng1-todo/pulls{/number}",
"milestones_url": "https://api.github.com/repos/wandelson/ng1-todo/milestones{/number}",
"notifications_url": "https://api.github.com/repos/wandelson/ng1-todo/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/wandelson/ng1-todo/labels{/name}",
"releases_url": "https://api.github.com/repos/wandelson/ng1-todo/releases{/id}",
"deployments_url": "https://api.github.com/repos/wandelson/ng1-todo/deployments",
"created_at": "2017-12-04T14:22:03Z",
"updated_at": "2017-12-04T14:31:54Z",
"pushed_at": "2017-12-04T14:28:48Z",
"git_url": "git://github.com/wandelson/ng1-todo.git",
"ssh_url": "[email protected]:wandelson/ng1-todo.git",
"clone_url": "https://github.com/wandelson/ng1-todo.git",
"svn_url": "https://github.com/wandelson/ng1-todo",
"homepage": "",
"size": 266,
"stargazers_count": 0,
"watchers_count": 0,
"language": "JavaScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": null,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 11.221613
},
{
"id": 38962452,
"name": "man-pager",
"full_name": "eush77/man-pager",
"owner": {
"login": "eush77",
"id": 4472489,
"avatar_url": "https://avatars0.githubusercontent.com/u/4472489?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/eush77",
"html_url": "https://github.com/eush77",
"followers_url": "https://api.github.com/users/eush77/followers",
"following_url": "https://api.github.com/users/eush77/following{/other_user}",
"gists_url": "https://api.github.com/users/eush77/gists{/gist_id}",
"starred_url": "https://api.github.com/users/eush77/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/eush77/subscriptions",
"organizations_url": "https://api.github.com/users/eush77/orgs",
"repos_url": "https://api.github.com/users/eush77/repos",
"events_url": "https://api.github.com/users/eush77/events{/privacy}",
"received_events_url": "https://api.github.com/users/eush77/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/eush77/man-pager",
"description": "Pipe man pages (in Troff) to the man(1) pager",
"fork": false,
"url": "https://api.github.com/repos/eush77/man-pager",
"forks_url": "https://api.github.com/repos/eush77/man-pager/forks",
"keys_url": "https://api.github.com/repos/eush77/man-pager/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/eush77/man-pager/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/eush77/man-pager/teams",
"hooks_url": "https://api.github.com/repos/eush77/man-pager/hooks",
"issue_events_url": "https://api.github.com/repos/eush77/man-pager/issues/events{/number}",
"events_url": "https://api.github.com/repos/eush77/man-pager/events",
"assignees_url": "https://api.github.com/repos/eush77/man-pager/assignees{/user}",
"branches_url": "https://api.github.com/repos/eush77/man-pager/branches{/branch}",
"tags_url": "https://api.github.com/repos/eush77/man-pager/tags",
"blobs_url": "https://api.github.com/repos/eush77/man-pager/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/eush77/man-pager/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/eush77/man-pager/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/eush77/man-pager/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/eush77/man-pager/statuses/{sha}",
"languages_url": "https://api.github.com/repos/eush77/man-pager/languages",
"stargazers_url": "https://api.github.com/repos/eush77/man-pager/stargazers",
"contributors_url": "https://api.github.com/repos/eush77/man-pager/contributors",
"subscribers_url": "https://api.github.com/repos/eush77/man-pager/subscribers",
"subscription_url": "https://api.github.com/repos/eush77/man-pager/subscription",
"commits_url": "https://api.github.com/repos/eush77/man-pager/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/eush77/man-pager/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/eush77/man-pager/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/eush77/man-pager/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/eush77/man-pager/contents/{+path}",
"compare_url": "https://api.github.com/repos/eush77/man-pager/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/eush77/man-pager/merges",
"archive_url": "https://api.github.com/repos/eush77/man-pager/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/eush77/man-pager/downloads",
"issues_url": "https://api.github.com/repos/eush77/man-pager/issues{/number}",
"pulls_url": "https://api.github.com/repos/eush77/man-pager/pulls{/number}",
"milestones_url": "https://api.github.com/repos/eush77/man-pager/milestones{/number}",
"notifications_url": "https://api.github.com/repos/eush77/man-pager/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/eush77/man-pager/labels{/name}",
"releases_url": "https://api.github.com/repos/eush77/man-pager/releases{/id}",
"deployments_url": "https://api.github.com/repos/eush77/man-pager/deployments",
"created_at": "2015-07-12T13:13:45Z",
"updated_at": "2015-07-12T13:14:26Z",
"pushed_at": "2015-07-12T13:14:26Z",
"git_url": "git://github.com/eush77/man-pager.git",
"ssh_url": "[email protected]:eush77/man-pager.git",
"clone_url": "https://github.com/eush77/man-pager.git",
"svn_url": "https://github.com/eush77/man-pager",
"homepage": null,
"size": 112,
"stargazers_count": 0,
"watchers_count": 0,
"language": "JavaScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"open_issues_count": 0,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit"
},
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"score": 10.704758
},
{
"id": 15756902,
"name": "jquery-template",
"full_name": "robcmills/jquery-template",
"owner": {
"login": "robcmills",
"id": 4131746,
"avatar_url": "https://avatars0.githubusercontent.com/u/4131746?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/robcmills",
"html_url": "https://github.com/robcmills",
"followers_url": "https://api.github.com/users/robcmills/followers",
"following_url": "https://api.github.com/users/robcmills/following{/other_user}",
"gists_url": "https://api.github.com/users/robcmills/gists{/gist_id}",
"starred_url": "https://api.github.com/users/robcmills/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/robcmills/subscriptions",
"organizations_url": "https://api.github.com/users/robcmills/orgs",
"repos_url": "https://api.github.com/users/robcmills/repos",
"events_url": "https://api.github.com/users/robcmills/events{/privacy}",
"received_events_url": "https://api.github.com/users/robcmills/received_events",
"type": "User",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/robcmills/jquery-template",
"description": "very minimal page template with jquery-1.9.1 ",
"fork": false,
"url": "https://api.github.com/repos/robcmills/jquery-template",
"forks_url": "https://api.github.com/repos/robcmills/jquery-template/forks",
"keys_url": "https://api.github.com/repos/robcmills/jquery-template/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/robcmills/jquery-template/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/robcmills/jquery-template/teams",
"hooks_url": "https://api.github.com/repos/robcmills/jquery-template/hooks",
"issue_events_url": "https://api.github.com/repos/robcmills/jquery-template/issues/events{/number}",
"events_url": "https://api.github.com/repos/robcmills/jquery-template/events",
"assignees_url": "https://api.github.com/repos/robcmills/jquery-template/assignees{/user}",
"branches_url": "https://api.github.com/repos/robcmills/jquery-template/branches{/branch}",
"tags_url": "https://api.github.com/repos/robcmills/jquery-template/tags",
"blobs_url": "https://api.github.com/repos/robcmills/jquery-template/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/robcmills/jquery-template/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/robcmills/jquery-template/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/robcmills/jquery-template/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/robcmills/jquery-template/statuses/{sha}",
"languages_url": "https://api.github.com/repos/robcmills/jquery-template/languages",
"stargazers_url": "https://api.github.com/repos/robcmills/jquery-template/stargazers",
"contributors_url": "https://api.github.com/repos/robcmills/jquery-template/contributors",
"subscribers_url": "https://api.github.com/repos/robcmills/jquery-template/subscribers",
"subscription_url": "https://api.github.com/repos/robcmills/jquery-template/subscription",
"commits_url": "https://api.github.com/repos/robcmills/jquery-template/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/robcmills/jquery-template/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/robcmills/jquery-template/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/robcmills/jquery-template/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/robcmills/jquery-template/contents/{+path}",
"compare_url": "https://api.github.com/repos/robcmills/jquery-template/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/robcmills/jquery-template/merges",
"archive_url": "https://api.github.com/repos/robcmills/jquery-template/{archive_format}{/ref}",