forked from clarkja/wasdev.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.json
2789 lines (2789 loc) · 161 KB
/
test.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
[
{
"id": 11152993,
"name": "wasdev.github.io",
"full_name": "WASdev/wasdev.github.io",
"owner": {
"login": "WASdev",
"id": 4928521,
"avatar_url": "https://avatars.githubusercontent.com/u/4928521?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/WASdev",
"html_url": "https://github.com/WASdev",
"followers_url": "https://api.github.com/users/WASdev/followers",
"following_url": "https://api.github.com/users/WASdev/following{/other_user}",
"gists_url": "https://api.github.com/users/WASdev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/WASdev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/WASdev/subscriptions",
"organizations_url": "https://api.github.com/users/WASdev/orgs",
"repos_url": "https://api.github.com/users/WASdev/repos",
"events_url": "https://api.github.com/users/WASdev/events{/privacy}",
"received_events_url": "https://api.github.com/users/WASdev/received_events",
"type": "Organization",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/WASdev/wasdev.github.io",
"description": "GitHub Pages for wasdev.github.io",
"fork": false,
"url": "https://api.github.com/repos/WASdev/wasdev.github.io",
"forks_url": "https://api.github.com/repos/WASdev/wasdev.github.io/forks",
"keys_url": "https://api.github.com/repos/WASdev/wasdev.github.io/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/WASdev/wasdev.github.io/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/WASdev/wasdev.github.io/teams",
"hooks_url": "https://api.github.com/repos/WASdev/wasdev.github.io/hooks",
"issue_events_url": "https://api.github.com/repos/WASdev/wasdev.github.io/issues/events{/number}",
"events_url": "https://api.github.com/repos/WASdev/wasdev.github.io/events",
"assignees_url": "https://api.github.com/repos/WASdev/wasdev.github.io/assignees{/user}",
"branches_url": "https://api.github.com/repos/WASdev/wasdev.github.io/branches{/branch}",
"tags_url": "https://api.github.com/repos/WASdev/wasdev.github.io/tags",
"blobs_url": "https://api.github.com/repos/WASdev/wasdev.github.io/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/WASdev/wasdev.github.io/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/WASdev/wasdev.github.io/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/WASdev/wasdev.github.io/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/WASdev/wasdev.github.io/statuses/{sha}",
"languages_url": "https://api.github.com/repos/WASdev/wasdev.github.io/languages",
"stargazers_url": "https://api.github.com/repos/WASdev/wasdev.github.io/stargazers",
"contributors_url": "https://api.github.com/repos/WASdev/wasdev.github.io/contributors",
"subscribers_url": "https://api.github.com/repos/WASdev/wasdev.github.io/subscribers",
"subscription_url": "https://api.github.com/repos/WASdev/wasdev.github.io/subscription",
"commits_url": "https://api.github.com/repos/WASdev/wasdev.github.io/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/WASdev/wasdev.github.io/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/WASdev/wasdev.github.io/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/WASdev/wasdev.github.io/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/WASdev/wasdev.github.io/contents/{+path}",
"compare_url": "https://api.github.com/repos/WASdev/wasdev.github.io/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/WASdev/wasdev.github.io/merges",
"archive_url": "https://api.github.com/repos/WASdev/wasdev.github.io/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/WASdev/wasdev.github.io/downloads",
"issues_url": "https://api.github.com/repos/WASdev/wasdev.github.io/issues{/number}",
"pulls_url": "https://api.github.com/repos/WASdev/wasdev.github.io/pulls{/number}",
"milestones_url": "https://api.github.com/repos/WASdev/wasdev.github.io/milestones{/number}",
"notifications_url": "https://api.github.com/repos/WASdev/wasdev.github.io/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/WASdev/wasdev.github.io/labels{/name}",
"releases_url": "https://api.github.com/repos/WASdev/wasdev.github.io/releases{/id}",
"deployments_url": "https://api.github.com/repos/WASdev/wasdev.github.io/deployments",
"created_at": "2013-07-03T14:37:01Z",
"updated_at": "2016-01-20T16:29:23Z",
"pushed_at": "2016-06-08T13:27:11Z",
"git_url": "git://github.com/WASdev/wasdev.github.io.git",
"ssh_url": "[email protected]:WASdev/wasdev.github.io.git",
"clone_url": "https://github.com/WASdev/wasdev.github.io.git",
"svn_url": "https://github.com/WASdev/wasdev.github.io",
"homepage": null,
"size": 767,
"stargazers_count": 1,
"watchers_count": 1,
"language": "CSS",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"forks_count": 4,
"mirror_url": null,
"open_issues_count": 3,
"forks": 4,
"open_issues": 3,
"watchers": 1,
"default_branch": "master",
"permissions": {
"admin": false,
"push": false,
"pull": true
}
},
{
"id": 11153769,
"name": "sample.osgi.httpservice",
"full_name": "WASdev/sample.osgi.httpservice",
"owner": {
"login": "WASdev",
"id": 4928521,
"avatar_url": "https://avatars.githubusercontent.com/u/4928521?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/WASdev",
"html_url": "https://github.com/WASdev",
"followers_url": "https://api.github.com/users/WASdev/followers",
"following_url": "https://api.github.com/users/WASdev/following{/other_user}",
"gists_url": "https://api.github.com/users/WASdev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/WASdev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/WASdev/subscriptions",
"organizations_url": "https://api.github.com/users/WASdev/orgs",
"repos_url": "https://api.github.com/users/WASdev/repos",
"events_url": "https://api.github.com/users/WASdev/events{/privacy}",
"received_events_url": "https://api.github.com/users/WASdev/received_events",
"type": "Organization",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/WASdev/sample.osgi.httpservice",
"fork": false,
"url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice",
"forks_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/forks",
"keys_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/teams",
"hooks_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/hooks",
"issue_events_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/issues/events{/number}",
"events_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/events",
"assignees_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/assignees{/user}",
"branches_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/branches{/branch}",
"tags_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/tags",
"blobs_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/statuses/{sha}",
"languages_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/languages",
"stargazers_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/stargazers",
"contributors_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/contributors",
"subscribers_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/subscribers",
"subscription_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/subscription",
"commits_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/contents/{+path}",
"compare_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/merges",
"archive_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/downloads",
"issues_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/issues{/number}",
"pulls_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/pulls{/number}",
"milestones_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/milestones{/number}",
"notifications_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/labels{/name}",
"releases_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/releases{/id}",
"deployments_url": "https://api.github.com/repos/WASdev/sample.osgi.httpservice/deployments",
"created_at": "2013-07-03T15:08:32Z",
"updated_at": "2015-01-09T13:06:42Z",
"pushed_at": "2014-09-12T17:19:19Z",
"git_url": "git://github.com/WASdev/sample.osgi.httpservice.git",
"ssh_url": "[email protected]:WASdev/sample.osgi.httpservice.git",
"clone_url": "https://github.com/WASdev/sample.osgi.httpservice.git",
"svn_url": "https://github.com/WASdev/sample.osgi.httpservice",
"homepage": "",
"size": 259,
"stargazers_count": 4,
"watchers_count": 4,
"language": "Java",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 1,
"mirror_url": null,
"open_issues_count": 1,
"forks": 1,
"open_issues": 1,
"watchers": 4,
"default_branch": "master",
"permissions": {
"admin": false,
"push": false,
"pull": true
}
},
{
"id": 11153885,
"name": "ci.ant",
"full_name": "WASdev/ci.ant",
"owner": {
"login": "WASdev",
"id": 4928521,
"avatar_url": "https://avatars.githubusercontent.com/u/4928521?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/WASdev",
"html_url": "https://github.com/WASdev",
"followers_url": "https://api.github.com/users/WASdev/followers",
"following_url": "https://api.github.com/users/WASdev/following{/other_user}",
"gists_url": "https://api.github.com/users/WASdev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/WASdev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/WASdev/subscriptions",
"organizations_url": "https://api.github.com/users/WASdev/orgs",
"repos_url": "https://api.github.com/users/WASdev/repos",
"events_url": "https://api.github.com/users/WASdev/events{/privacy}",
"received_events_url": "https://api.github.com/users/WASdev/received_events",
"type": "Organization",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/WASdev/ci.ant",
"description": "",
"fork": false,
"url": "https://api.github.com/repos/WASdev/ci.ant",
"forks_url": "https://api.github.com/repos/WASdev/ci.ant/forks",
"keys_url": "https://api.github.com/repos/WASdev/ci.ant/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/WASdev/ci.ant/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/WASdev/ci.ant/teams",
"hooks_url": "https://api.github.com/repos/WASdev/ci.ant/hooks",
"issue_events_url": "https://api.github.com/repos/WASdev/ci.ant/issues/events{/number}",
"events_url": "https://api.github.com/repos/WASdev/ci.ant/events",
"assignees_url": "https://api.github.com/repos/WASdev/ci.ant/assignees{/user}",
"branches_url": "https://api.github.com/repos/WASdev/ci.ant/branches{/branch}",
"tags_url": "https://api.github.com/repos/WASdev/ci.ant/tags",
"blobs_url": "https://api.github.com/repos/WASdev/ci.ant/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/WASdev/ci.ant/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/WASdev/ci.ant/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/WASdev/ci.ant/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/WASdev/ci.ant/statuses/{sha}",
"languages_url": "https://api.github.com/repos/WASdev/ci.ant/languages",
"stargazers_url": "https://api.github.com/repos/WASdev/ci.ant/stargazers",
"contributors_url": "https://api.github.com/repos/WASdev/ci.ant/contributors",
"subscribers_url": "https://api.github.com/repos/WASdev/ci.ant/subscribers",
"subscription_url": "https://api.github.com/repos/WASdev/ci.ant/subscription",
"commits_url": "https://api.github.com/repos/WASdev/ci.ant/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/WASdev/ci.ant/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/WASdev/ci.ant/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/WASdev/ci.ant/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/WASdev/ci.ant/contents/{+path}",
"compare_url": "https://api.github.com/repos/WASdev/ci.ant/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/WASdev/ci.ant/merges",
"archive_url": "https://api.github.com/repos/WASdev/ci.ant/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/WASdev/ci.ant/downloads",
"issues_url": "https://api.github.com/repos/WASdev/ci.ant/issues{/number}",
"pulls_url": "https://api.github.com/repos/WASdev/ci.ant/pulls{/number}",
"milestones_url": "https://api.github.com/repos/WASdev/ci.ant/milestones{/number}",
"notifications_url": "https://api.github.com/repos/WASdev/ci.ant/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/WASdev/ci.ant/labels{/name}",
"releases_url": "https://api.github.com/repos/WASdev/ci.ant/releases{/id}",
"deployments_url": "https://api.github.com/repos/WASdev/ci.ant/deployments",
"created_at": "2013-07-03T15:12:49Z",
"updated_at": "2016-06-15T08:32:28Z",
"pushed_at": "2016-08-22T06:05:41Z",
"git_url": "git://github.com/WASdev/ci.ant.git",
"ssh_url": "[email protected]:WASdev/ci.ant.git",
"clone_url": "https://github.com/WASdev/ci.ant.git",
"svn_url": "https://github.com/WASdev/ci.ant",
"homepage": "",
"size": 314,
"stargazers_count": 7,
"watchers_count": 7,
"language": "Java",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 14,
"mirror_url": null,
"open_issues_count": 8,
"forks": 14,
"open_issues": 8,
"watchers": 7,
"default_branch": "master",
"permissions": {
"admin": false,
"push": false,
"pull": true
}
},
{
"id": 11154354,
"name": "ci.maven",
"full_name": "WASdev/ci.maven",
"owner": {
"login": "WASdev",
"id": 4928521,
"avatar_url": "https://avatars.githubusercontent.com/u/4928521?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/WASdev",
"html_url": "https://github.com/WASdev",
"followers_url": "https://api.github.com/users/WASdev/followers",
"following_url": "https://api.github.com/users/WASdev/following{/other_user}",
"gists_url": "https://api.github.com/users/WASdev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/WASdev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/WASdev/subscriptions",
"organizations_url": "https://api.github.com/users/WASdev/orgs",
"repos_url": "https://api.github.com/users/WASdev/repos",
"events_url": "https://api.github.com/users/WASdev/events{/privacy}",
"received_events_url": "https://api.github.com/users/WASdev/received_events",
"type": "Organization",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/WASdev/ci.maven",
"description": "Maven plugins for managing Liberty profile servers #devops",
"fork": false,
"url": "https://api.github.com/repos/WASdev/ci.maven",
"forks_url": "https://api.github.com/repos/WASdev/ci.maven/forks",
"keys_url": "https://api.github.com/repos/WASdev/ci.maven/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/WASdev/ci.maven/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/WASdev/ci.maven/teams",
"hooks_url": "https://api.github.com/repos/WASdev/ci.maven/hooks",
"issue_events_url": "https://api.github.com/repos/WASdev/ci.maven/issues/events{/number}",
"events_url": "https://api.github.com/repos/WASdev/ci.maven/events",
"assignees_url": "https://api.github.com/repos/WASdev/ci.maven/assignees{/user}",
"branches_url": "https://api.github.com/repos/WASdev/ci.maven/branches{/branch}",
"tags_url": "https://api.github.com/repos/WASdev/ci.maven/tags",
"blobs_url": "https://api.github.com/repos/WASdev/ci.maven/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/WASdev/ci.maven/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/WASdev/ci.maven/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/WASdev/ci.maven/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/WASdev/ci.maven/statuses/{sha}",
"languages_url": "https://api.github.com/repos/WASdev/ci.maven/languages",
"stargazers_url": "https://api.github.com/repos/WASdev/ci.maven/stargazers",
"contributors_url": "https://api.github.com/repos/WASdev/ci.maven/contributors",
"subscribers_url": "https://api.github.com/repos/WASdev/ci.maven/subscribers",
"subscription_url": "https://api.github.com/repos/WASdev/ci.maven/subscription",
"commits_url": "https://api.github.com/repos/WASdev/ci.maven/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/WASdev/ci.maven/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/WASdev/ci.maven/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/WASdev/ci.maven/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/WASdev/ci.maven/contents/{+path}",
"compare_url": "https://api.github.com/repos/WASdev/ci.maven/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/WASdev/ci.maven/merges",
"archive_url": "https://api.github.com/repos/WASdev/ci.maven/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/WASdev/ci.maven/downloads",
"issues_url": "https://api.github.com/repos/WASdev/ci.maven/issues{/number}",
"pulls_url": "https://api.github.com/repos/WASdev/ci.maven/pulls{/number}",
"milestones_url": "https://api.github.com/repos/WASdev/ci.maven/milestones{/number}",
"notifications_url": "https://api.github.com/repos/WASdev/ci.maven/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/WASdev/ci.maven/labels{/name}",
"releases_url": "https://api.github.com/repos/WASdev/ci.maven/releases{/id}",
"deployments_url": "https://api.github.com/repos/WASdev/ci.maven/deployments",
"created_at": "2013-07-03T15:30:54Z",
"updated_at": "2016-07-13T21:33:49Z",
"pushed_at": "2016-08-22T06:09:39Z",
"git_url": "git://github.com/WASdev/ci.maven.git",
"ssh_url": "[email protected]:WASdev/ci.maven.git",
"clone_url": "https://github.com/WASdev/ci.maven.git",
"svn_url": "https://github.com/WASdev/ci.maven",
"homepage": "",
"size": 359,
"stargazers_count": 28,
"watchers_count": 28,
"language": "Java",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 20,
"mirror_url": null,
"open_issues_count": 18,
"forks": 20,
"open_issues": 18,
"watchers": 28,
"default_branch": "master",
"permissions": {
"admin": false,
"push": false,
"pull": true
}
},
{
"id": 11306334,
"name": "ci.chef.wlp",
"full_name": "WASdev/ci.chef.wlp",
"owner": {
"login": "WASdev",
"id": 4928521,
"avatar_url": "https://avatars.githubusercontent.com/u/4928521?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/WASdev",
"html_url": "https://github.com/WASdev",
"followers_url": "https://api.github.com/users/WASdev/followers",
"following_url": "https://api.github.com/users/WASdev/following{/other_user}",
"gists_url": "https://api.github.com/users/WASdev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/WASdev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/WASdev/subscriptions",
"organizations_url": "https://api.github.com/users/WASdev/orgs",
"repos_url": "https://api.github.com/users/WASdev/repos",
"events_url": "https://api.github.com/users/WASdev/events{/privacy}",
"received_events_url": "https://api.github.com/users/WASdev/received_events",
"type": "Organization",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/WASdev/ci.chef.wlp",
"fork": false,
"url": "https://api.github.com/repos/WASdev/ci.chef.wlp",
"forks_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/forks",
"keys_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/teams",
"hooks_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/hooks",
"issue_events_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/issues/events{/number}",
"events_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/events",
"assignees_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/assignees{/user}",
"branches_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/branches{/branch}",
"tags_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/tags",
"blobs_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/statuses/{sha}",
"languages_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/languages",
"stargazers_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/stargazers",
"contributors_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/contributors",
"subscribers_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/subscribers",
"subscription_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/subscription",
"commits_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/contents/{+path}",
"compare_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/merges",
"archive_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/downloads",
"issues_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/issues{/number}",
"pulls_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/pulls{/number}",
"milestones_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/milestones{/number}",
"notifications_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/labels{/name}",
"releases_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/releases{/id}",
"deployments_url": "https://api.github.com/repos/WASdev/ci.chef.wlp/deployments",
"created_at": "2013-07-10T08:20:14Z",
"updated_at": "2016-07-28T03:25:07Z",
"pushed_at": "2016-02-17T14:41:04Z",
"git_url": "git://github.com/WASdev/ci.chef.wlp.git",
"ssh_url": "[email protected]:WASdev/ci.chef.wlp.git",
"clone_url": "https://github.com/WASdev/ci.chef.wlp.git",
"svn_url": "https://github.com/WASdev/ci.chef.wlp",
"homepage": "",
"size": 194,
"stargazers_count": 13,
"watchers_count": 13,
"language": "Ruby",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 12,
"mirror_url": null,
"open_issues_count": 10,
"forks": 12,
"open_issues": 10,
"watchers": 13,
"default_branch": "master",
"permissions": {
"admin": false,
"push": false,
"pull": true
}
},
{
"id": 11794834,
"name": "util.bash.completion",
"full_name": "WASdev/util.bash.completion",
"owner": {
"login": "WASdev",
"id": 4928521,
"avatar_url": "https://avatars.githubusercontent.com/u/4928521?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/WASdev",
"html_url": "https://github.com/WASdev",
"followers_url": "https://api.github.com/users/WASdev/followers",
"following_url": "https://api.github.com/users/WASdev/following{/other_user}",
"gists_url": "https://api.github.com/users/WASdev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/WASdev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/WASdev/subscriptions",
"organizations_url": "https://api.github.com/users/WASdev/orgs",
"repos_url": "https://api.github.com/users/WASdev/repos",
"events_url": "https://api.github.com/users/WASdev/events{/privacy}",
"received_events_url": "https://api.github.com/users/WASdev/received_events",
"type": "Organization",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/WASdev/util.bash.completion",
"description": "Bash auto completion scripts for Liberty profile server",
"fork": false,
"url": "https://api.github.com/repos/WASdev/util.bash.completion",
"forks_url": "https://api.github.com/repos/WASdev/util.bash.completion/forks",
"keys_url": "https://api.github.com/repos/WASdev/util.bash.completion/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/WASdev/util.bash.completion/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/WASdev/util.bash.completion/teams",
"hooks_url": "https://api.github.com/repos/WASdev/util.bash.completion/hooks",
"issue_events_url": "https://api.github.com/repos/WASdev/util.bash.completion/issues/events{/number}",
"events_url": "https://api.github.com/repos/WASdev/util.bash.completion/events",
"assignees_url": "https://api.github.com/repos/WASdev/util.bash.completion/assignees{/user}",
"branches_url": "https://api.github.com/repos/WASdev/util.bash.completion/branches{/branch}",
"tags_url": "https://api.github.com/repos/WASdev/util.bash.completion/tags",
"blobs_url": "https://api.github.com/repos/WASdev/util.bash.completion/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/WASdev/util.bash.completion/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/WASdev/util.bash.completion/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/WASdev/util.bash.completion/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/WASdev/util.bash.completion/statuses/{sha}",
"languages_url": "https://api.github.com/repos/WASdev/util.bash.completion/languages",
"stargazers_url": "https://api.github.com/repos/WASdev/util.bash.completion/stargazers",
"contributors_url": "https://api.github.com/repos/WASdev/util.bash.completion/contributors",
"subscribers_url": "https://api.github.com/repos/WASdev/util.bash.completion/subscribers",
"subscription_url": "https://api.github.com/repos/WASdev/util.bash.completion/subscription",
"commits_url": "https://api.github.com/repos/WASdev/util.bash.completion/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/WASdev/util.bash.completion/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/WASdev/util.bash.completion/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/WASdev/util.bash.completion/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/WASdev/util.bash.completion/contents/{+path}",
"compare_url": "https://api.github.com/repos/WASdev/util.bash.completion/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/WASdev/util.bash.completion/merges",
"archive_url": "https://api.github.com/repos/WASdev/util.bash.completion/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/WASdev/util.bash.completion/downloads",
"issues_url": "https://api.github.com/repos/WASdev/util.bash.completion/issues{/number}",
"pulls_url": "https://api.github.com/repos/WASdev/util.bash.completion/pulls{/number}",
"milestones_url": "https://api.github.com/repos/WASdev/util.bash.completion/milestones{/number}",
"notifications_url": "https://api.github.com/repos/WASdev/util.bash.completion/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/WASdev/util.bash.completion/labels{/name}",
"releases_url": "https://api.github.com/repos/WASdev/util.bash.completion/releases{/id}",
"deployments_url": "https://api.github.com/repos/WASdev/util.bash.completion/deployments",
"created_at": "2013-07-31T15:57:48Z",
"updated_at": "2016-03-18T14:20:06Z",
"pushed_at": "2016-08-12T00:47:07Z",
"git_url": "git://github.com/WASdev/util.bash.completion.git",
"ssh_url": "[email protected]:WASdev/util.bash.completion.git",
"clone_url": "https://github.com/WASdev/util.bash.completion.git",
"svn_url": "https://github.com/WASdev/util.bash.completion",
"homepage": "",
"size": 12,
"stargazers_count": 5,
"watchers_count": 5,
"language": null,
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 3,
"mirror_url": null,
"open_issues_count": 0,
"forks": 3,
"open_issues": 0,
"watchers": 5,
"default_branch": "master",
"permissions": {
"admin": false,
"push": false,
"pull": true
}
},
{
"id": 11821105,
"name": "ci.chef.wlp.samples",
"full_name": "WASdev/ci.chef.wlp.samples",
"owner": {
"login": "WASdev",
"id": 4928521,
"avatar_url": "https://avatars.githubusercontent.com/u/4928521?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/WASdev",
"html_url": "https://github.com/WASdev",
"followers_url": "https://api.github.com/users/WASdev/followers",
"following_url": "https://api.github.com/users/WASdev/following{/other_user}",
"gists_url": "https://api.github.com/users/WASdev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/WASdev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/WASdev/subscriptions",
"organizations_url": "https://api.github.com/users/WASdev/orgs",
"repos_url": "https://api.github.com/users/WASdev/repos",
"events_url": "https://api.github.com/users/WASdev/events{/privacy}",
"received_events_url": "https://api.github.com/users/WASdev/received_events",
"type": "Organization",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/WASdev/ci.chef.wlp.samples",
"description": "Chef recipes to run Liberty profile samples #devops",
"fork": false,
"url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples",
"forks_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/forks",
"keys_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/teams",
"hooks_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/hooks",
"issue_events_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/issues/events{/number}",
"events_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/events",
"assignees_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/assignees{/user}",
"branches_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/branches{/branch}",
"tags_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/tags",
"blobs_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/statuses/{sha}",
"languages_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/languages",
"stargazers_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/stargazers",
"contributors_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/contributors",
"subscribers_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/subscribers",
"subscription_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/subscription",
"commits_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/contents/{+path}",
"compare_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/merges",
"archive_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/downloads",
"issues_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/issues{/number}",
"pulls_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/pulls{/number}",
"milestones_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/milestones{/number}",
"notifications_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/labels{/name}",
"releases_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/releases{/id}",
"deployments_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.samples/deployments",
"created_at": "2013-08-01T15:57:27Z",
"updated_at": "2016-07-28T03:24:59Z",
"pushed_at": "2014-09-12T16:16:32Z",
"git_url": "git://github.com/WASdev/ci.chef.wlp.samples.git",
"ssh_url": "[email protected]:WASdev/ci.chef.wlp.samples.git",
"clone_url": "https://github.com/WASdev/ci.chef.wlp.samples.git",
"svn_url": "https://github.com/WASdev/ci.chef.wlp.samples",
"homepage": "",
"size": 315,
"stargazers_count": 1,
"watchers_count": 1,
"language": "Ruby",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"open_issues_count": 3,
"forks": 0,
"open_issues": 3,
"watchers": 1,
"default_branch": "master",
"permissions": {
"admin": false,
"push": false,
"pull": true
}
},
{
"id": 12705078,
"name": "ci.chef.wlp.application",
"full_name": "WASdev/ci.chef.wlp.application",
"owner": {
"login": "WASdev",
"id": 4928521,
"avatar_url": "https://avatars.githubusercontent.com/u/4928521?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/WASdev",
"html_url": "https://github.com/WASdev",
"followers_url": "https://api.github.com/users/WASdev/followers",
"following_url": "https://api.github.com/users/WASdev/following{/other_user}",
"gists_url": "https://api.github.com/users/WASdev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/WASdev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/WASdev/subscriptions",
"organizations_url": "https://api.github.com/users/WASdev/orgs",
"repos_url": "https://api.github.com/users/WASdev/repos",
"events_url": "https://api.github.com/users/WASdev/events{/privacy}",
"received_events_url": "https://api.github.com/users/WASdev/received_events",
"type": "Organization",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/WASdev/ci.chef.wlp.application",
"fork": false,
"url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application",
"forks_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/forks",
"keys_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/teams",
"hooks_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/hooks",
"issue_events_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/issues/events{/number}",
"events_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/events",
"assignees_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/assignees{/user}",
"branches_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/branches{/branch}",
"tags_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/tags",
"blobs_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/statuses/{sha}",
"languages_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/languages",
"stargazers_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/stargazers",
"contributors_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/contributors",
"subscribers_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/subscribers",
"subscription_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/subscription",
"commits_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/contents/{+path}",
"compare_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/merges",
"archive_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/downloads",
"issues_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/issues{/number}",
"pulls_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/pulls{/number}",
"milestones_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/milestones{/number}",
"notifications_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/labels{/name}",
"releases_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/releases{/id}",
"deployments_url": "https://api.github.com/repos/WASdev/ci.chef.wlp.application/deployments",
"created_at": "2013-09-09T15:29:24Z",
"updated_at": "2016-07-28T03:25:01Z",
"pushed_at": "2014-09-12T16:24:11Z",
"git_url": "git://github.com/WASdev/ci.chef.wlp.application.git",
"ssh_url": "[email protected]:WASdev/ci.chef.wlp.application.git",
"clone_url": "https://github.com/WASdev/ci.chef.wlp.application.git",
"svn_url": "https://github.com/WASdev/ci.chef.wlp.application",
"homepage": "",
"size": 324,
"stargazers_count": 2,
"watchers_count": 2,
"language": "Ruby",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 3,
"mirror_url": null,
"open_issues_count": 1,
"forks": 3,
"open_issues": 1,
"watchers": 2,
"default_branch": "master",
"permissions": {
"admin": false,
"push": false,
"pull": true
}
},
{
"id": 14921292,
"name": "ci.chef.iim",
"full_name": "WASdev/ci.chef.iim",
"owner": {
"login": "WASdev",
"id": 4928521,
"avatar_url": "https://avatars.githubusercontent.com/u/4928521?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/WASdev",
"html_url": "https://github.com/WASdev",
"followers_url": "https://api.github.com/users/WASdev/followers",
"following_url": "https://api.github.com/users/WASdev/following{/other_user}",
"gists_url": "https://api.github.com/users/WASdev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/WASdev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/WASdev/subscriptions",
"organizations_url": "https://api.github.com/users/WASdev/orgs",
"repos_url": "https://api.github.com/users/WASdev/repos",
"events_url": "https://api.github.com/users/WASdev/events{/privacy}",
"received_events_url": "https://api.github.com/users/WASdev/received_events",
"type": "Organization",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/WASdev/ci.chef.iim",
"description": "Chef Cookbook to install, configure and run IBM Installation Manager",
"fork": false,
"url": "https://api.github.com/repos/WASdev/ci.chef.iim",
"forks_url": "https://api.github.com/repos/WASdev/ci.chef.iim/forks",
"keys_url": "https://api.github.com/repos/WASdev/ci.chef.iim/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/WASdev/ci.chef.iim/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/WASdev/ci.chef.iim/teams",
"hooks_url": "https://api.github.com/repos/WASdev/ci.chef.iim/hooks",
"issue_events_url": "https://api.github.com/repos/WASdev/ci.chef.iim/issues/events{/number}",
"events_url": "https://api.github.com/repos/WASdev/ci.chef.iim/events",
"assignees_url": "https://api.github.com/repos/WASdev/ci.chef.iim/assignees{/user}",
"branches_url": "https://api.github.com/repos/WASdev/ci.chef.iim/branches{/branch}",
"tags_url": "https://api.github.com/repos/WASdev/ci.chef.iim/tags",
"blobs_url": "https://api.github.com/repos/WASdev/ci.chef.iim/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/WASdev/ci.chef.iim/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/WASdev/ci.chef.iim/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/WASdev/ci.chef.iim/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/WASdev/ci.chef.iim/statuses/{sha}",
"languages_url": "https://api.github.com/repos/WASdev/ci.chef.iim/languages",
"stargazers_url": "https://api.github.com/repos/WASdev/ci.chef.iim/stargazers",
"contributors_url": "https://api.github.com/repos/WASdev/ci.chef.iim/contributors",
"subscribers_url": "https://api.github.com/repos/WASdev/ci.chef.iim/subscribers",
"subscription_url": "https://api.github.com/repos/WASdev/ci.chef.iim/subscription",
"commits_url": "https://api.github.com/repos/WASdev/ci.chef.iim/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/WASdev/ci.chef.iim/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/WASdev/ci.chef.iim/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/WASdev/ci.chef.iim/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/WASdev/ci.chef.iim/contents/{+path}",
"compare_url": "https://api.github.com/repos/WASdev/ci.chef.iim/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/WASdev/ci.chef.iim/merges",
"archive_url": "https://api.github.com/repos/WASdev/ci.chef.iim/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/WASdev/ci.chef.iim/downloads",
"issues_url": "https://api.github.com/repos/WASdev/ci.chef.iim/issues{/number}",
"pulls_url": "https://api.github.com/repos/WASdev/ci.chef.iim/pulls{/number}",
"milestones_url": "https://api.github.com/repos/WASdev/ci.chef.iim/milestones{/number}",
"notifications_url": "https://api.github.com/repos/WASdev/ci.chef.iim/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/WASdev/ci.chef.iim/labels{/name}",
"releases_url": "https://api.github.com/repos/WASdev/ci.chef.iim/releases{/id}",
"deployments_url": "https://api.github.com/repos/WASdev/ci.chef.iim/deployments",
"created_at": "2013-12-04T10:48:30Z",
"updated_at": "2016-07-28T03:25:08Z",
"pushed_at": "2016-04-19T12:18:36Z",
"git_url": "git://github.com/WASdev/ci.chef.iim.git",
"ssh_url": "[email protected]:WASdev/ci.chef.iim.git",
"clone_url": "https://github.com/WASdev/ci.chef.iim.git",
"svn_url": "https://github.com/WASdev/ci.chef.iim",
"homepage": "",
"size": 80,
"stargazers_count": 7,
"watchers_count": 7,
"language": "Ruby",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 12,
"mirror_url": null,
"open_issues_count": 9,
"forks": 12,
"open_issues": 9,
"watchers": 7,
"default_branch": "master",
"permissions": {
"admin": false,
"push": false,
"pull": true
}
},
{
"id": 14930762,
"name": "ci.chef.wxs",
"full_name": "WASdev/ci.chef.wxs",
"owner": {
"login": "WASdev",
"id": 4928521,
"avatar_url": "https://avatars.githubusercontent.com/u/4928521?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/WASdev",
"html_url": "https://github.com/WASdev",
"followers_url": "https://api.github.com/users/WASdev/followers",
"following_url": "https://api.github.com/users/WASdev/following{/other_user}",
"gists_url": "https://api.github.com/users/WASdev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/WASdev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/WASdev/subscriptions",
"organizations_url": "https://api.github.com/users/WASdev/orgs",
"repos_url": "https://api.github.com/users/WASdev/repos",
"events_url": "https://api.github.com/users/WASdev/events{/privacy}",
"received_events_url": "https://api.github.com/users/WASdev/received_events",
"type": "Organization",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/WASdev/ci.chef.wxs",
"description": "Chef Cookbook to install and configure WebSphere eXtreme Scale",
"fork": false,
"url": "https://api.github.com/repos/WASdev/ci.chef.wxs",
"forks_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/forks",
"keys_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/teams",
"hooks_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/hooks",
"issue_events_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/issues/events{/number}",
"events_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/events",
"assignees_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/assignees{/user}",
"branches_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/branches{/branch}",
"tags_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/tags",
"blobs_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/statuses/{sha}",
"languages_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/languages",
"stargazers_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/stargazers",
"contributors_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/contributors",
"subscribers_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/subscribers",
"subscription_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/subscription",
"commits_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/contents/{+path}",
"compare_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/merges",
"archive_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/downloads",
"issues_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/issues{/number}",
"pulls_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/pulls{/number}",
"milestones_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/milestones{/number}",
"notifications_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/labels{/name}",
"releases_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/releases{/id}",
"deployments_url": "https://api.github.com/repos/WASdev/ci.chef.wxs/deployments",
"created_at": "2013-12-04T17:28:13Z",
"updated_at": "2014-09-12T17:20:18Z",
"pushed_at": "2014-09-12T17:20:17Z",
"git_url": "git://github.com/WASdev/ci.chef.wxs.git",
"ssh_url": "[email protected]:WASdev/ci.chef.wxs.git",
"clone_url": "https://github.com/WASdev/ci.chef.wxs.git",
"svn_url": "https://github.com/WASdev/ci.chef.wxs",
"homepage": null,
"size": 141,
"stargazers_count": 0,
"watchers_count": 0,
"language": "Ruby",
"has_issues": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 3,
"mirror_url": null,
"open_issues_count": 0,
"forks": 3,
"open_issues": 0,
"watchers": 0,
"default_branch": "master",
"permissions": {
"admin": false,
"push": false,
"pull": true
}
},
{
"id": 15737431,
"name": "ci.maven.parent",
"full_name": "WASdev/ci.maven.parent",
"owner": {
"login": "WASdev",
"id": 4928521,
"avatar_url": "https://avatars.githubusercontent.com/u/4928521?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/WASdev",
"html_url": "https://github.com/WASdev",
"followers_url": "https://api.github.com/users/WASdev/followers",
"following_url": "https://api.github.com/users/WASdev/following{/other_user}",
"gists_url": "https://api.github.com/users/WASdev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/WASdev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/WASdev/subscriptions",
"organizations_url": "https://api.github.com/users/WASdev/orgs",
"repos_url": "https://api.github.com/users/WASdev/repos",
"events_url": "https://api.github.com/users/WASdev/events{/privacy}",
"received_events_url": "https://api.github.com/users/WASdev/received_events",
"type": "Organization",
"site_admin": false
},
"private": false,
"html_url": "https://github.com/WASdev/ci.maven.parent",
"description": "Stores parent poms used by builds in other repositories.",
"fork": false,
"url": "https://api.github.com/repos/WASdev/ci.maven.parent",
"forks_url": "https://api.github.com/repos/WASdev/ci.maven.parent/forks",
"keys_url": "https://api.github.com/repos/WASdev/ci.maven.parent/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/WASdev/ci.maven.parent/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/WASdev/ci.maven.parent/teams",
"hooks_url": "https://api.github.com/repos/WASdev/ci.maven.parent/hooks",
"issue_events_url": "https://api.github.com/repos/WASdev/ci.maven.parent/issues/events{/number}",
"events_url": "https://api.github.com/repos/WASdev/ci.maven.parent/events",
"assignees_url": "https://api.github.com/repos/WASdev/ci.maven.parent/assignees{/user}",
"branches_url": "https://api.github.com/repos/WASdev/ci.maven.parent/branches{/branch}",
"tags_url": "https://api.github.com/repos/WASdev/ci.maven.parent/tags",
"blobs_url": "https://api.github.com/repos/WASdev/ci.maven.parent/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/WASdev/ci.maven.parent/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/WASdev/ci.maven.parent/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/WASdev/ci.maven.parent/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/WASdev/ci.maven.parent/statuses/{sha}",
"languages_url": "https://api.github.com/repos/WASdev/ci.maven.parent/languages",
"stargazers_url": "https://api.github.com/repos/WASdev/ci.maven.parent/stargazers",
"contributors_url": "https://api.github.com/repos/WASdev/ci.maven.parent/contributors",
"subscribers_url": "https://api.github.com/repos/WASdev/ci.maven.parent/subscribers",
"subscription_url": "https://api.github.com/repos/WASdev/ci.maven.parent/subscription",
"commits_url": "https://api.github.com/repos/WASdev/ci.maven.parent/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/WASdev/ci.maven.parent/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/WASdev/ci.maven.parent/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/WASdev/ci.maven.parent/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/WASdev/ci.maven.parent/contents/{+path}",
"compare_url": "https://api.github.com/repos/WASdev/ci.maven.parent/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/WASdev/ci.maven.parent/merges",
"archive_url": "https://api.github.com/repos/WASdev/ci.maven.parent/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/WASdev/ci.maven.parent/downloads",
"issues_url": "https://api.github.com/repos/WASdev/ci.maven.parent/issues{/number}",
"pulls_url": "https://api.github.com/repos/WASdev/ci.maven.parent/pulls{/number}",
"milestones_url": "https://api.github.com/repos/WASdev/ci.maven.parent/milestones{/number}",
"notifications_url": "https://api.github.com/repos/WASdev/ci.maven.parent/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/WASdev/ci.maven.parent/labels{/name}",
"releases_url": "https://api.github.com/repos/WASdev/ci.maven.parent/releases{/id}",
"deployments_url": "https://api.github.com/repos/WASdev/ci.maven.parent/deployments",
"created_at": "2014-01-08T14:20:26Z",
"updated_at": "2015-10-15T08:19:18Z",
"pushed_at": "2015-11-07T04:18:21Z",
"git_url": "git://github.com/WASdev/ci.maven.parent.git",
"ssh_url": "[email protected]:WASdev/ci.maven.parent.git",
"clone_url": "https://github.com/WASdev/ci.maven.parent.git",
"svn_url": "https://github.com/WASdev/ci.maven.parent",
"homepage": null,