-
Notifications
You must be signed in to change notification settings - Fork 2
/
data.json
1131 lines (1131 loc) · 60.4 KB
/
data.json
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
{
"timestamp": "2024-11-13T17:27:05.419Z",
"repos": [
{
"repo_name": "NovelRT",
"repo_url": "https://github.com/novelrt/NovelRT",
"contributors": [
{
"login": "RubyNova",
"id": 25829582,
"node_id": "MDQ6VXNlcjI1ODI5NTgy",
"avatar_url": "https://avatars.githubusercontent.com/u/25829582?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/RubyNova",
"html_url": "https://github.com/RubyNova",
"followers_url": "https://api.github.com/users/RubyNova/followers",
"following_url": "https://api.github.com/users/RubyNova/following{/other_user}",
"gists_url": "https://api.github.com/users/RubyNova/gists{/gist_id}",
"starred_url": "https://api.github.com/users/RubyNova/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/RubyNova/subscriptions",
"organizations_url": "https://api.github.com/users/RubyNova/orgs",
"repos_url": "https://api.github.com/users/RubyNova/repos",
"events_url": "https://api.github.com/users/RubyNova/events{/privacy}",
"received_events_url": "https://api.github.com/users/RubyNova/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1562
},
{
"login": "capnkenny",
"id": 10300290,
"node_id": "MDQ6VXNlcjEwMzAwMjkw",
"avatar_url": "https://avatars.githubusercontent.com/u/10300290?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/capnkenny",
"html_url": "https://github.com/capnkenny",
"followers_url": "https://api.github.com/users/capnkenny/followers",
"following_url": "https://api.github.com/users/capnkenny/following{/other_user}",
"gists_url": "https://api.github.com/users/capnkenny/gists{/gist_id}",
"starred_url": "https://api.github.com/users/capnkenny/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/capnkenny/subscriptions",
"organizations_url": "https://api.github.com/users/capnkenny/orgs",
"repos_url": "https://api.github.com/users/capnkenny/repos",
"events_url": "https://api.github.com/users/capnkenny/events{/privacy}",
"received_events_url": "https://api.github.com/users/capnkenny/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 914
},
{
"login": "Pheubel",
"id": 22686676,
"node_id": "MDQ6VXNlcjIyNjg2Njc2",
"avatar_url": "https://avatars.githubusercontent.com/u/22686676?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Pheubel",
"html_url": "https://github.com/Pheubel",
"followers_url": "https://api.github.com/users/Pheubel/followers",
"following_url": "https://api.github.com/users/Pheubel/following{/other_user}",
"gists_url": "https://api.github.com/users/Pheubel/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Pheubel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Pheubel/subscriptions",
"organizations_url": "https://api.github.com/users/Pheubel/orgs",
"repos_url": "https://api.github.com/users/Pheubel/repos",
"events_url": "https://api.github.com/users/Pheubel/events{/privacy}",
"received_events_url": "https://api.github.com/users/Pheubel/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 211
},
{
"login": "tannergooding",
"id": 10487869,
"node_id": "MDQ6VXNlcjEwNDg3ODY5",
"avatar_url": "https://avatars.githubusercontent.com/u/10487869?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tannergooding",
"html_url": "https://github.com/tannergooding",
"followers_url": "https://api.github.com/users/tannergooding/followers",
"following_url": "https://api.github.com/users/tannergooding/following{/other_user}",
"gists_url": "https://api.github.com/users/tannergooding/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tannergooding/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tannergooding/subscriptions",
"organizations_url": "https://api.github.com/users/tannergooding/orgs",
"repos_url": "https://api.github.com/users/tannergooding/repos",
"events_url": "https://api.github.com/users/tannergooding/events{/privacy}",
"received_events_url": "https://api.github.com/users/tannergooding/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 185
},
{
"login": "FiniteReality",
"id": 21000186,
"node_id": "MDQ6VXNlcjIxMDAwMTg2",
"avatar_url": "https://avatars.githubusercontent.com/u/21000186?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/FiniteReality",
"html_url": "https://github.com/FiniteReality",
"followers_url": "https://api.github.com/users/FiniteReality/followers",
"following_url": "https://api.github.com/users/FiniteReality/following{/other_user}",
"gists_url": "https://api.github.com/users/FiniteReality/gists{/gist_id}",
"starred_url": "https://api.github.com/users/FiniteReality/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/FiniteReality/subscriptions",
"organizations_url": "https://api.github.com/users/FiniteReality/orgs",
"repos_url": "https://api.github.com/users/FiniteReality/repos",
"events_url": "https://api.github.com/users/FiniteReality/events{/privacy}",
"received_events_url": "https://api.github.com/users/FiniteReality/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 76
},
{
"login": "DynamicField",
"id": 16415180,
"node_id": "MDQ6VXNlcjE2NDE1MTgw",
"avatar_url": "https://avatars.githubusercontent.com/u/16415180?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/DynamicField",
"html_url": "https://github.com/DynamicField",
"followers_url": "https://api.github.com/users/DynamicField/followers",
"following_url": "https://api.github.com/users/DynamicField/following{/other_user}",
"gists_url": "https://api.github.com/users/DynamicField/gists{/gist_id}",
"starred_url": "https://api.github.com/users/DynamicField/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/DynamicField/subscriptions",
"organizations_url": "https://api.github.com/users/DynamicField/orgs",
"repos_url": "https://api.github.com/users/DynamicField/repos",
"events_url": "https://api.github.com/users/DynamicField/events{/privacy}",
"received_events_url": "https://api.github.com/users/DynamicField/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 71
},
{
"login": "Quantumlyy",
"id": 7919610,
"node_id": "MDQ6VXNlcjc5MTk2MTA=",
"avatar_url": "https://avatars.githubusercontent.com/u/7919610?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Quantumlyy",
"html_url": "https://github.com/Quantumlyy",
"followers_url": "https://api.github.com/users/Quantumlyy/followers",
"following_url": "https://api.github.com/users/Quantumlyy/following{/other_user}",
"gists_url": "https://api.github.com/users/Quantumlyy/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Quantumlyy/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Quantumlyy/subscriptions",
"organizations_url": "https://api.github.com/users/Quantumlyy/orgs",
"repos_url": "https://api.github.com/users/Quantumlyy/repos",
"events_url": "https://api.github.com/users/Quantumlyy/events{/privacy}",
"received_events_url": "https://api.github.com/users/Quantumlyy/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 40
},
{
"login": "BanalityOfSeeking",
"id": 17085104,
"node_id": "MDQ6VXNlcjE3MDg1MTA0",
"avatar_url": "https://avatars.githubusercontent.com/u/17085104?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/BanalityOfSeeking",
"html_url": "https://github.com/BanalityOfSeeking",
"followers_url": "https://api.github.com/users/BanalityOfSeeking/followers",
"following_url": "https://api.github.com/users/BanalityOfSeeking/following{/other_user}",
"gists_url": "https://api.github.com/users/BanalityOfSeeking/gists{/gist_id}",
"starred_url": "https://api.github.com/users/BanalityOfSeeking/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/BanalityOfSeeking/subscriptions",
"organizations_url": "https://api.github.com/users/BanalityOfSeeking/orgs",
"repos_url": "https://api.github.com/users/BanalityOfSeeking/repos",
"events_url": "https://api.github.com/users/BanalityOfSeeking/events{/privacy}",
"received_events_url": "https://api.github.com/users/BanalityOfSeeking/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 21
},
{
"login": "RyadaProductions",
"id": 24586388,
"node_id": "MDQ6VXNlcjI0NTg2Mzg4",
"avatar_url": "https://avatars.githubusercontent.com/u/24586388?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/RyadaProductions",
"html_url": "https://github.com/RyadaProductions",
"followers_url": "https://api.github.com/users/RyadaProductions/followers",
"following_url": "https://api.github.com/users/RyadaProductions/following{/other_user}",
"gists_url": "https://api.github.com/users/RyadaProductions/gists{/gist_id}",
"starred_url": "https://api.github.com/users/RyadaProductions/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/RyadaProductions/subscriptions",
"organizations_url": "https://api.github.com/users/RyadaProductions/orgs",
"repos_url": "https://api.github.com/users/RyadaProductions/repos",
"events_url": "https://api.github.com/users/RyadaProductions/events{/privacy}",
"received_events_url": "https://api.github.com/users/RyadaProductions/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 18
},
{
"login": "Arkrait",
"id": 13279672,
"node_id": "MDQ6VXNlcjEzMjc5Njcy",
"avatar_url": "https://avatars.githubusercontent.com/u/13279672?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Arkrait",
"html_url": "https://github.com/Arkrait",
"followers_url": "https://api.github.com/users/Arkrait/followers",
"following_url": "https://api.github.com/users/Arkrait/following{/other_user}",
"gists_url": "https://api.github.com/users/Arkrait/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Arkrait/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Arkrait/subscriptions",
"organizations_url": "https://api.github.com/users/Arkrait/orgs",
"repos_url": "https://api.github.com/users/Arkrait/repos",
"events_url": "https://api.github.com/users/Arkrait/events{/privacy}",
"received_events_url": "https://api.github.com/users/Arkrait/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 17
},
{
"login": "OlegRevedzhuk",
"id": 76019338,
"node_id": "MDQ6VXNlcjc2MDE5MzM4",
"avatar_url": "https://avatars.githubusercontent.com/u/76019338?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/OlegRevedzhuk",
"html_url": "https://github.com/OlegRevedzhuk",
"followers_url": "https://api.github.com/users/OlegRevedzhuk/followers",
"following_url": "https://api.github.com/users/OlegRevedzhuk/following{/other_user}",
"gists_url": "https://api.github.com/users/OlegRevedzhuk/gists{/gist_id}",
"starred_url": "https://api.github.com/users/OlegRevedzhuk/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/OlegRevedzhuk/subscriptions",
"organizations_url": "https://api.github.com/users/OlegRevedzhuk/orgs",
"repos_url": "https://api.github.com/users/OlegRevedzhuk/repos",
"events_url": "https://api.github.com/users/OlegRevedzhuk/events{/privacy}",
"received_events_url": "https://api.github.com/users/OlegRevedzhuk/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 14
},
{
"login": "Nihlus",
"id": 2340428,
"node_id": "MDQ6VXNlcjIzNDA0Mjg=",
"avatar_url": "https://avatars.githubusercontent.com/u/2340428?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Nihlus",
"html_url": "https://github.com/Nihlus",
"followers_url": "https://api.github.com/users/Nihlus/followers",
"following_url": "https://api.github.com/users/Nihlus/following{/other_user}",
"gists_url": "https://api.github.com/users/Nihlus/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Nihlus/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Nihlus/subscriptions",
"organizations_url": "https://api.github.com/users/Nihlus/orgs",
"repos_url": "https://api.github.com/users/Nihlus/repos",
"events_url": "https://api.github.com/users/Nihlus/events{/privacy}",
"received_events_url": "https://api.github.com/users/Nihlus/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 14
},
{
"login": "thaumanovic",
"id": 30070380,
"node_id": "MDQ6VXNlcjMwMDcwMzgw",
"avatar_url": "https://avatars.githubusercontent.com/u/30070380?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/thaumanovic",
"html_url": "https://github.com/thaumanovic",
"followers_url": "https://api.github.com/users/thaumanovic/followers",
"following_url": "https://api.github.com/users/thaumanovic/following{/other_user}",
"gists_url": "https://api.github.com/users/thaumanovic/gists{/gist_id}",
"starred_url": "https://api.github.com/users/thaumanovic/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/thaumanovic/subscriptions",
"organizations_url": "https://api.github.com/users/thaumanovic/orgs",
"repos_url": "https://api.github.com/users/thaumanovic/repos",
"events_url": "https://api.github.com/users/thaumanovic/events{/privacy}",
"received_events_url": "https://api.github.com/users/thaumanovic/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 13
},
{
"login": "bjauny",
"id": 16554991,
"node_id": "MDQ6VXNlcjE2NTU0OTkx",
"avatar_url": "https://avatars.githubusercontent.com/u/16554991?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/bjauny",
"html_url": "https://github.com/bjauny",
"followers_url": "https://api.github.com/users/bjauny/followers",
"following_url": "https://api.github.com/users/bjauny/following{/other_user}",
"gists_url": "https://api.github.com/users/bjauny/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bjauny/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bjauny/subscriptions",
"organizations_url": "https://api.github.com/users/bjauny/orgs",
"repos_url": "https://api.github.com/users/bjauny/repos",
"events_url": "https://api.github.com/users/bjauny/events{/privacy}",
"received_events_url": "https://api.github.com/users/bjauny/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 12
},
{
"login": "NullSapphire",
"id": 58498458,
"node_id": "MDQ6VXNlcjU4NDk4NDU4",
"avatar_url": "https://avatars.githubusercontent.com/u/58498458?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NullSapphire",
"html_url": "https://github.com/NullSapphire",
"followers_url": "https://api.github.com/users/NullSapphire/followers",
"following_url": "https://api.github.com/users/NullSapphire/following{/other_user}",
"gists_url": "https://api.github.com/users/NullSapphire/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NullSapphire/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NullSapphire/subscriptions",
"organizations_url": "https://api.github.com/users/NullSapphire/orgs",
"repos_url": "https://api.github.com/users/NullSapphire/repos",
"events_url": "https://api.github.com/users/NullSapphire/events{/privacy}",
"received_events_url": "https://api.github.com/users/NullSapphire/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 10
},
{
"login": "GooStuffedDoll",
"id": 78940464,
"node_id": "MDQ6VXNlcjc4OTQwNDY0",
"avatar_url": "https://avatars.githubusercontent.com/u/78940464?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/GooStuffedDoll",
"html_url": "https://github.com/GooStuffedDoll",
"followers_url": "https://api.github.com/users/GooStuffedDoll/followers",
"following_url": "https://api.github.com/users/GooStuffedDoll/following{/other_user}",
"gists_url": "https://api.github.com/users/GooStuffedDoll/gists{/gist_id}",
"starred_url": "https://api.github.com/users/GooStuffedDoll/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/GooStuffedDoll/subscriptions",
"organizations_url": "https://api.github.com/users/GooStuffedDoll/orgs",
"repos_url": "https://api.github.com/users/GooStuffedDoll/repos",
"events_url": "https://api.github.com/users/GooStuffedDoll/events{/privacy}",
"received_events_url": "https://api.github.com/users/GooStuffedDoll/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 10
},
{
"login": "YukiiVR",
"id": 118682621,
"node_id": "U_kgDOBxLz_Q",
"avatar_url": "https://avatars.githubusercontent.com/u/118682621?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/YukiiVR",
"html_url": "https://github.com/YukiiVR",
"followers_url": "https://api.github.com/users/YukiiVR/followers",
"following_url": "https://api.github.com/users/YukiiVR/following{/other_user}",
"gists_url": "https://api.github.com/users/YukiiVR/gists{/gist_id}",
"starred_url": "https://api.github.com/users/YukiiVR/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/YukiiVR/subscriptions",
"organizations_url": "https://api.github.com/users/YukiiVR/orgs",
"repos_url": "https://api.github.com/users/YukiiVR/repos",
"events_url": "https://api.github.com/users/YukiiVR/events{/privacy}",
"received_events_url": "https://api.github.com/users/YukiiVR/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 9
},
{
"login": "DeepakReddyVelagala",
"id": 83399784,
"node_id": "MDQ6VXNlcjgzMzk5Nzg0",
"avatar_url": "https://avatars.githubusercontent.com/u/83399784?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/DeepakReddyVelagala",
"html_url": "https://github.com/DeepakReddyVelagala",
"followers_url": "https://api.github.com/users/DeepakReddyVelagala/followers",
"following_url": "https://api.github.com/users/DeepakReddyVelagala/following{/other_user}",
"gists_url": "https://api.github.com/users/DeepakReddyVelagala/gists{/gist_id}",
"starred_url": "https://api.github.com/users/DeepakReddyVelagala/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/DeepakReddyVelagala/subscriptions",
"organizations_url": "https://api.github.com/users/DeepakReddyVelagala/orgs",
"repos_url": "https://api.github.com/users/DeepakReddyVelagala/repos",
"events_url": "https://api.github.com/users/DeepakReddyVelagala/events{/privacy}",
"received_events_url": "https://api.github.com/users/DeepakReddyVelagala/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 8
},
{
"login": "Erlite",
"id": 25248023,
"node_id": "MDQ6VXNlcjI1MjQ4MDIz",
"avatar_url": "https://avatars.githubusercontent.com/u/25248023?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Erlite",
"html_url": "https://github.com/Erlite",
"followers_url": "https://api.github.com/users/Erlite/followers",
"following_url": "https://api.github.com/users/Erlite/following{/other_user}",
"gists_url": "https://api.github.com/users/Erlite/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Erlite/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Erlite/subscriptions",
"organizations_url": "https://api.github.com/users/Erlite/orgs",
"repos_url": "https://api.github.com/users/Erlite/repos",
"events_url": "https://api.github.com/users/Erlite/events{/privacy}",
"received_events_url": "https://api.github.com/users/Erlite/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 7
},
{
"login": "Tylertron1998",
"id": 34944514,
"node_id": "MDQ6VXNlcjM0OTQ0NTE0",
"avatar_url": "https://avatars.githubusercontent.com/u/34944514?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Tylertron1998",
"html_url": "https://github.com/Tylertron1998",
"followers_url": "https://api.github.com/users/Tylertron1998/followers",
"following_url": "https://api.github.com/users/Tylertron1998/following{/other_user}",
"gists_url": "https://api.github.com/users/Tylertron1998/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Tylertron1998/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Tylertron1998/subscriptions",
"organizations_url": "https://api.github.com/users/Tylertron1998/orgs",
"repos_url": "https://api.github.com/users/Tylertron1998/repos",
"events_url": "https://api.github.com/users/Tylertron1998/events{/privacy}",
"received_events_url": "https://api.github.com/users/Tylertron1998/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 7
},
{
"login": "Banananaman91",
"id": 43844902,
"node_id": "MDQ6VXNlcjQzODQ0OTAy",
"avatar_url": "https://avatars.githubusercontent.com/u/43844902?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Banananaman91",
"html_url": "https://github.com/Banananaman91",
"followers_url": "https://api.github.com/users/Banananaman91/followers",
"following_url": "https://api.github.com/users/Banananaman91/following{/other_user}",
"gists_url": "https://api.github.com/users/Banananaman91/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Banananaman91/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Banananaman91/subscriptions",
"organizations_url": "https://api.github.com/users/Banananaman91/orgs",
"repos_url": "https://api.github.com/users/Banananaman91/repos",
"events_url": "https://api.github.com/users/Banananaman91/events{/privacy}",
"received_events_url": "https://api.github.com/users/Banananaman91/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 6
},
{
"login": "SmylEFace",
"id": 79358455,
"node_id": "MDQ6VXNlcjc5MzU4NDU1",
"avatar_url": "https://avatars.githubusercontent.com/u/79358455?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/SmylEFace",
"html_url": "https://github.com/SmylEFace",
"followers_url": "https://api.github.com/users/SmylEFace/followers",
"following_url": "https://api.github.com/users/SmylEFace/following{/other_user}",
"gists_url": "https://api.github.com/users/SmylEFace/gists{/gist_id}",
"starred_url": "https://api.github.com/users/SmylEFace/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/SmylEFace/subscriptions",
"organizations_url": "https://api.github.com/users/SmylEFace/orgs",
"repos_url": "https://api.github.com/users/SmylEFace/repos",
"events_url": "https://api.github.com/users/SmylEFace/events{/privacy}",
"received_events_url": "https://api.github.com/users/SmylEFace/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 6
},
{
"login": "Sakshi-75",
"id": 20265098,
"node_id": "MDQ6VXNlcjIwMjY1MDk4",
"avatar_url": "https://avatars.githubusercontent.com/u/20265098?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Sakshi-75",
"html_url": "https://github.com/Sakshi-75",
"followers_url": "https://api.github.com/users/Sakshi-75/followers",
"following_url": "https://api.github.com/users/Sakshi-75/following{/other_user}",
"gists_url": "https://api.github.com/users/Sakshi-75/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Sakshi-75/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Sakshi-75/subscriptions",
"organizations_url": "https://api.github.com/users/Sakshi-75/orgs",
"repos_url": "https://api.github.com/users/Sakshi-75/repos",
"events_url": "https://api.github.com/users/Sakshi-75/events{/privacy}",
"received_events_url": "https://api.github.com/users/Sakshi-75/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 4
},
{
"login": "Exadon",
"id": 7726954,
"node_id": "MDQ6VXNlcjc3MjY5NTQ=",
"avatar_url": "https://avatars.githubusercontent.com/u/7726954?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Exadon",
"html_url": "https://github.com/Exadon",
"followers_url": "https://api.github.com/users/Exadon/followers",
"following_url": "https://api.github.com/users/Exadon/following{/other_user}",
"gists_url": "https://api.github.com/users/Exadon/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Exadon/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Exadon/subscriptions",
"organizations_url": "https://api.github.com/users/Exadon/orgs",
"repos_url": "https://api.github.com/users/Exadon/repos",
"events_url": "https://api.github.com/users/Exadon/events{/privacy}",
"received_events_url": "https://api.github.com/users/Exadon/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 4
},
{
"login": "Shidesu",
"id": 12526978,
"node_id": "MDQ6VXNlcjEyNTI2OTc4",
"avatar_url": "https://avatars.githubusercontent.com/u/12526978?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Shidesu",
"html_url": "https://github.com/Shidesu",
"followers_url": "https://api.github.com/users/Shidesu/followers",
"following_url": "https://api.github.com/users/Shidesu/following{/other_user}",
"gists_url": "https://api.github.com/users/Shidesu/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Shidesu/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Shidesu/subscriptions",
"organizations_url": "https://api.github.com/users/Shidesu/orgs",
"repos_url": "https://api.github.com/users/Shidesu/repos",
"events_url": "https://api.github.com/users/Shidesu/events{/privacy}",
"received_events_url": "https://api.github.com/users/Shidesu/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 4
},
{
"login": "Gnbrkm41",
"id": 42944058,
"node_id": "MDQ6VXNlcjQyOTQ0MDU4",
"avatar_url": "https://avatars.githubusercontent.com/u/42944058?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Gnbrkm41",
"html_url": "https://github.com/Gnbrkm41",
"followers_url": "https://api.github.com/users/Gnbrkm41/followers",
"following_url": "https://api.github.com/users/Gnbrkm41/following{/other_user}",
"gists_url": "https://api.github.com/users/Gnbrkm41/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Gnbrkm41/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Gnbrkm41/subscriptions",
"organizations_url": "https://api.github.com/users/Gnbrkm41/orgs",
"repos_url": "https://api.github.com/users/Gnbrkm41/repos",
"events_url": "https://api.github.com/users/Gnbrkm41/events{/privacy}",
"received_events_url": "https://api.github.com/users/Gnbrkm41/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 2
},
{
"login": "ActualDio",
"id": 46566693,
"node_id": "MDQ6VXNlcjQ2NTY2Njkz",
"avatar_url": "https://avatars.githubusercontent.com/u/46566693?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ActualDio",
"html_url": "https://github.com/ActualDio",
"followers_url": "https://api.github.com/users/ActualDio/followers",
"following_url": "https://api.github.com/users/ActualDio/following{/other_user}",
"gists_url": "https://api.github.com/users/ActualDio/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ActualDio/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ActualDio/subscriptions",
"organizations_url": "https://api.github.com/users/ActualDio/orgs",
"repos_url": "https://api.github.com/users/ActualDio/repos",
"events_url": "https://api.github.com/users/ActualDio/events{/privacy}",
"received_events_url": "https://api.github.com/users/ActualDio/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 2
},
{
"login": "chrisdevchroma",
"id": 19854861,
"node_id": "MDQ6VXNlcjE5ODU0ODYx",
"avatar_url": "https://avatars.githubusercontent.com/u/19854861?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/chrisdevchroma",
"html_url": "https://github.com/chrisdevchroma",
"followers_url": "https://api.github.com/users/chrisdevchroma/followers",
"following_url": "https://api.github.com/users/chrisdevchroma/following{/other_user}",
"gists_url": "https://api.github.com/users/chrisdevchroma/gists{/gist_id}",
"starred_url": "https://api.github.com/users/chrisdevchroma/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/chrisdevchroma/subscriptions",
"organizations_url": "https://api.github.com/users/chrisdevchroma/orgs",
"repos_url": "https://api.github.com/users/chrisdevchroma/repos",
"events_url": "https://api.github.com/users/chrisdevchroma/events{/privacy}",
"received_events_url": "https://api.github.com/users/chrisdevchroma/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 2
},
{
"login": "chococookies131",
"id": 66881420,
"node_id": "MDQ6VXNlcjY2ODgxNDIw",
"avatar_url": "https://avatars.githubusercontent.com/u/66881420?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/chococookies131",
"html_url": "https://github.com/chococookies131",
"followers_url": "https://api.github.com/users/chococookies131/followers",
"following_url": "https://api.github.com/users/chococookies131/following{/other_user}",
"gists_url": "https://api.github.com/users/chococookies131/gists{/gist_id}",
"starred_url": "https://api.github.com/users/chococookies131/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/chococookies131/subscriptions",
"organizations_url": "https://api.github.com/users/chococookies131/orgs",
"repos_url": "https://api.github.com/users/chococookies131/repos",
"events_url": "https://api.github.com/users/chococookies131/events{/privacy}",
"received_events_url": "https://api.github.com/users/chococookies131/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 2
},
{
"login": "favna",
"id": 4019718,
"node_id": "MDQ6VXNlcjQwMTk3MTg=",
"avatar_url": "https://avatars.githubusercontent.com/u/4019718?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/favna",
"html_url": "https://github.com/favna",
"followers_url": "https://api.github.com/users/favna/followers",
"following_url": "https://api.github.com/users/favna/following{/other_user}",
"gists_url": "https://api.github.com/users/favna/gists{/gist_id}",
"starred_url": "https://api.github.com/users/favna/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/favna/subscriptions",
"organizations_url": "https://api.github.com/users/favna/orgs",
"repos_url": "https://api.github.com/users/favna/repos",
"events_url": "https://api.github.com/users/favna/events{/privacy}",
"received_events_url": "https://api.github.com/users/favna/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 2
}
]
},
{
"repo_name": "novelrt.github.io",
"repo_url": "https://github.com/novelrt/novelrt.github.io",
"contributors": [
{
"login": "TraceLD",
"id": 46228022,
"node_id": "MDQ6VXNlcjQ2MjI4MDIy",
"avatar_url": "https://avatars.githubusercontent.com/u/46228022?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/TraceLD",
"html_url": "https://github.com/TraceLD",
"followers_url": "https://api.github.com/users/TraceLD/followers",
"following_url": "https://api.github.com/users/TraceLD/following{/other_user}",
"gists_url": "https://api.github.com/users/TraceLD/gists{/gist_id}",
"starred_url": "https://api.github.com/users/TraceLD/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TraceLD/subscriptions",
"organizations_url": "https://api.github.com/users/TraceLD/orgs",
"repos_url": "https://api.github.com/users/TraceLD/repos",
"events_url": "https://api.github.com/users/TraceLD/events{/privacy}",
"received_events_url": "https://api.github.com/users/TraceLD/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 81
},
{
"login": "capnkenny",
"id": 10300290,
"node_id": "MDQ6VXNlcjEwMzAwMjkw",
"avatar_url": "https://avatars.githubusercontent.com/u/10300290?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/capnkenny",
"html_url": "https://github.com/capnkenny",
"followers_url": "https://api.github.com/users/capnkenny/followers",
"following_url": "https://api.github.com/users/capnkenny/following{/other_user}",
"gists_url": "https://api.github.com/users/capnkenny/gists{/gist_id}",
"starred_url": "https://api.github.com/users/capnkenny/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/capnkenny/subscriptions",
"organizations_url": "https://api.github.com/users/capnkenny/orgs",
"repos_url": "https://api.github.com/users/capnkenny/repos",
"events_url": "https://api.github.com/users/capnkenny/events{/privacy}",
"received_events_url": "https://api.github.com/users/capnkenny/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 19
},
{
"login": "cynthiateeters",
"id": 13385801,
"node_id": "MDQ6VXNlcjEzMzg1ODAx",
"avatar_url": "https://avatars.githubusercontent.com/u/13385801?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cynthiateeters",
"html_url": "https://github.com/cynthiateeters",
"followers_url": "https://api.github.com/users/cynthiateeters/followers",
"following_url": "https://api.github.com/users/cynthiateeters/following{/other_user}",
"gists_url": "https://api.github.com/users/cynthiateeters/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cynthiateeters/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cynthiateeters/subscriptions",
"organizations_url": "https://api.github.com/users/cynthiateeters/orgs",
"repos_url": "https://api.github.com/users/cynthiateeters/repos",
"events_url": "https://api.github.com/users/cynthiateeters/events{/privacy}",
"received_events_url": "https://api.github.com/users/cynthiateeters/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 15
},
{
"login": "emgrey02",
"id": 62446436,
"node_id": "MDQ6VXNlcjYyNDQ2NDM2",
"avatar_url": "https://avatars.githubusercontent.com/u/62446436?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/emgrey02",
"html_url": "https://github.com/emgrey02",
"followers_url": "https://api.github.com/users/emgrey02/followers",
"following_url": "https://api.github.com/users/emgrey02/following{/other_user}",
"gists_url": "https://api.github.com/users/emgrey02/gists{/gist_id}",
"starred_url": "https://api.github.com/users/emgrey02/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/emgrey02/subscriptions",
"organizations_url": "https://api.github.com/users/emgrey02/orgs",
"repos_url": "https://api.github.com/users/emgrey02/repos",
"events_url": "https://api.github.com/users/emgrey02/events{/privacy}",
"received_events_url": "https://api.github.com/users/emgrey02/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 9
},
{
"login": "RubyNova",
"id": 25829582,
"node_id": "MDQ6VXNlcjI1ODI5NTgy",
"avatar_url": "https://avatars.githubusercontent.com/u/25829582?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/RubyNova",
"html_url": "https://github.com/RubyNova",
"followers_url": "https://api.github.com/users/RubyNova/followers",
"following_url": "https://api.github.com/users/RubyNova/following{/other_user}",
"gists_url": "https://api.github.com/users/RubyNova/gists{/gist_id}",
"starred_url": "https://api.github.com/users/RubyNova/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/RubyNova/subscriptions",
"organizations_url": "https://api.github.com/users/RubyNova/orgs",
"repos_url": "https://api.github.com/users/RubyNova/repos",
"events_url": "https://api.github.com/users/RubyNova/events{/privacy}",
"received_events_url": "https://api.github.com/users/RubyNova/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 7
},
{
"login": "Aashishkushwaha",
"id": 48587325,
"node_id": "MDQ6VXNlcjQ4NTg3MzI1",
"avatar_url": "https://avatars.githubusercontent.com/u/48587325?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Aashishkushwaha",
"html_url": "https://github.com/Aashishkushwaha",
"followers_url": "https://api.github.com/users/Aashishkushwaha/followers",
"following_url": "https://api.github.com/users/Aashishkushwaha/following{/other_user}",
"gists_url": "https://api.github.com/users/Aashishkushwaha/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Aashishkushwaha/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Aashishkushwaha/subscriptions",
"organizations_url": "https://api.github.com/users/Aashishkushwaha/orgs",
"repos_url": "https://api.github.com/users/Aashishkushwaha/repos",
"events_url": "https://api.github.com/users/Aashishkushwaha/events{/privacy}",
"received_events_url": "https://api.github.com/users/Aashishkushwaha/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 4
},
{
"login": "geeythree",
"id": 30996989,
"node_id": "MDQ6VXNlcjMwOTk2OTg5",
"avatar_url": "https://avatars.githubusercontent.com/u/30996989?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/geeythree",
"html_url": "https://github.com/geeythree",
"followers_url": "https://api.github.com/users/geeythree/followers",
"following_url": "https://api.github.com/users/geeythree/following{/other_user}",
"gists_url": "https://api.github.com/users/geeythree/gists{/gist_id}",
"starred_url": "https://api.github.com/users/geeythree/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/geeythree/subscriptions",
"organizations_url": "https://api.github.com/users/geeythree/orgs",
"repos_url": "https://api.github.com/users/geeythree/repos",
"events_url": "https://api.github.com/users/geeythree/events{/privacy}",
"received_events_url": "https://api.github.com/users/geeythree/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 2
},
{
"login": "jayeclark",
"id": 84106309,
"node_id": "MDQ6VXNlcjg0MTA2MzA5",
"avatar_url": "https://avatars.githubusercontent.com/u/84106309?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jayeclark",
"html_url": "https://github.com/jayeclark",
"followers_url": "https://api.github.com/users/jayeclark/followers",
"following_url": "https://api.github.com/users/jayeclark/following{/other_user}",
"gists_url": "https://api.github.com/users/jayeclark/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jayeclark/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jayeclark/subscriptions",
"organizations_url": "https://api.github.com/users/jayeclark/orgs",
"repos_url": "https://api.github.com/users/jayeclark/repos",
"events_url": "https://api.github.com/users/jayeclark/events{/privacy}",
"received_events_url": "https://api.github.com/users/jayeclark/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 1
}
]
},
{
"repo_name": "NovelRT-Azure-Functions",
"repo_url": "https://github.com/novelrt/NovelRT-Azure-Functions",
"contributors": [
{
"login": "TraceLD",
"id": 46228022,
"node_id": "MDQ6VXNlcjQ2MjI4MDIy",
"avatar_url": "https://avatars.githubusercontent.com/u/46228022?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/TraceLD",
"html_url": "https://github.com/TraceLD",
"followers_url": "https://api.github.com/users/TraceLD/followers",
"following_url": "https://api.github.com/users/TraceLD/following{/other_user}",
"gists_url": "https://api.github.com/users/TraceLD/gists{/gist_id}",
"starred_url": "https://api.github.com/users/TraceLD/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TraceLD/subscriptions",
"organizations_url": "https://api.github.com/users/TraceLD/orgs",
"repos_url": "https://api.github.com/users/TraceLD/repos",
"events_url": "https://api.github.com/users/TraceLD/events{/privacy}",
"received_events_url": "https://api.github.com/users/TraceLD/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 4
},
{
"login": "RubyNova",
"id": 25829582,
"node_id": "MDQ6VXNlcjI1ODI5NTgy",
"avatar_url": "https://avatars.githubusercontent.com/u/25829582?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/RubyNova",
"html_url": "https://github.com/RubyNova",
"followers_url": "https://api.github.com/users/RubyNova/followers",
"following_url": "https://api.github.com/users/RubyNova/following{/other_user}",
"gists_url": "https://api.github.com/users/RubyNova/gists{/gist_id}",
"starred_url": "https://api.github.com/users/RubyNova/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/RubyNova/subscriptions",
"organizations_url": "https://api.github.com/users/RubyNova/orgs",
"repos_url": "https://api.github.com/users/RubyNova/repos",
"events_url": "https://api.github.com/users/RubyNova/events{/privacy}",
"received_events_url": "https://api.github.com/users/RubyNova/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 4
}
]
},
{
"repo_name": "NovelRT.Sdk",
"repo_url": "https://github.com/novelrt/NovelRT.Sdk",
"contributors": [
{
"login": "RubyNova",
"id": 25829582,
"node_id": "MDQ6VXNlcjI1ODI5NTgy",
"avatar_url": "https://avatars.githubusercontent.com/u/25829582?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/RubyNova",
"html_url": "https://github.com/RubyNova",
"followers_url": "https://api.github.com/users/RubyNova/followers",
"following_url": "https://api.github.com/users/RubyNova/following{/other_user}",
"gists_url": "https://api.github.com/users/RubyNova/gists{/gist_id}",
"starred_url": "https://api.github.com/users/RubyNova/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/RubyNova/subscriptions",
"organizations_url": "https://api.github.com/users/RubyNova/orgs",
"repos_url": "https://api.github.com/users/RubyNova/repos",
"events_url": "https://api.github.com/users/RubyNova/events{/privacy}",
"received_events_url": "https://api.github.com/users/RubyNova/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 9
},
{
"login": "capnkenny",
"id": 10300290,
"node_id": "MDQ6VXNlcjEwMzAwMjkw",
"avatar_url": "https://avatars.githubusercontent.com/u/10300290?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/capnkenny",
"html_url": "https://github.com/capnkenny",
"followers_url": "https://api.github.com/users/capnkenny/followers",
"following_url": "https://api.github.com/users/capnkenny/following{/other_user}",
"gists_url": "https://api.github.com/users/capnkenny/gists{/gist_id}",
"starred_url": "https://api.github.com/users/capnkenny/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/capnkenny/subscriptions",
"organizations_url": "https://api.github.com/users/capnkenny/orgs",
"repos_url": "https://api.github.com/users/capnkenny/repos",
"events_url": "https://api.github.com/users/capnkenny/events{/privacy}",
"received_events_url": "https://api.github.com/users/capnkenny/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 8
}
]
},
{
"repo_name": "Fabulist",
"repo_url": "https://github.com/novelrt/Fabulist",
"contributors": [
{
"login": "FiniteReality",
"id": 21000186,
"node_id": "MDQ6VXNlcjIxMDAwMTg2",
"avatar_url": "https://avatars.githubusercontent.com/u/21000186?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/FiniteReality",
"html_url": "https://github.com/FiniteReality",
"followers_url": "https://api.github.com/users/FiniteReality/followers",
"following_url": "https://api.github.com/users/FiniteReality/following{/other_user}",
"gists_url": "https://api.github.com/users/FiniteReality/gists{/gist_id}",
"starred_url": "https://api.github.com/users/FiniteReality/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/FiniteReality/subscriptions",
"organizations_url": "https://api.github.com/users/FiniteReality/orgs",
"repos_url": "https://api.github.com/users/FiniteReality/repos",
"events_url": "https://api.github.com/users/FiniteReality/events{/privacy}",
"received_events_url": "https://api.github.com/users/FiniteReality/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false,
"contributions": 46
}
]
},
{
"repo_name": "NovelRT-Gradle-Plugin",
"repo_url": "https://github.com/novelrt/NovelRT-Gradle-Plugin",
"contributors": [
{
"login": "DynamicField",
"id": 16415180,
"node_id": "MDQ6VXNlcjE2NDE1MTgw",
"avatar_url": "https://avatars.githubusercontent.com/u/16415180?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/DynamicField",
"html_url": "https://github.com/DynamicField",
"followers_url": "https://api.github.com/users/DynamicField/followers",
"following_url": "https://api.github.com/users/DynamicField/following{/other_user}",
"gists_url": "https://api.github.com/users/DynamicField/gists{/gist_id}",
"starred_url": "https://api.github.com/users/DynamicField/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/DynamicField/subscriptions",
"organizations_url": "https://api.github.com/users/DynamicField/orgs",
"repos_url": "https://api.github.com/users/DynamicField/repos",
"events_url": "https://api.github.com/users/DynamicField/events{/privacy}",
"received_events_url": "https://api.github.com/users/DynamicField/received_events",