├── .gitignore ├── package.json ├── benchmark ├── index.js └── data.json ├── src └── index.js ├── README.md ├── dist └── imtbl.js └── test └── index.test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "imtbl", 3 | "version": "1.0.1", 4 | "description": "Immutable operations for JavaScript data structures", 5 | "main": "src/index.js", 6 | "scripts": { 7 | "test": "jest ./test/*.js", 8 | "build": "rollup ./src/index.js --o ./dist/imtbl.js -f umd --name \"imtbl\"" 9 | }, 10 | "keywords": ["immutable"], 11 | "author": "Roman Liutikov", 12 | "license": "MIT", 13 | "devDependencies": { 14 | "jest": "^22.4.0", 15 | "rollup": "^0.56.2" 16 | }, 17 | "engines": { 18 | "node": ">= 4" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /benchmark/index.js: -------------------------------------------------------------------------------- 1 | const data = require("./data.json"); 2 | const { updateIn } = require("../dist/imtbl"); 3 | 4 | function bench(n, fn) { 5 | const start = Date.now(); 6 | for (let i = 0; i < n; i++) { 7 | fn(); 8 | } 9 | const t = Date.now() - start; 10 | console.log( 11 | `${Math.round(t / n * 10) / 10} ms/op`, 12 | `${Math.round(n / t * 1000)} op/s` 13 | ); 14 | } 15 | 16 | const iters = 3000; 17 | 18 | bench(iters, () => 19 | data.map(d => updateIn(d, ["owner", "id"], id => id + Date.now())) 20 | ); 21 | 22 | bench(iters, () => 23 | data.map(d => ({ ...d, owner: { ...d.owner, id: d.owner.id + Date.now() } })) 24 | ); 25 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | const isObject = v => 2 | v !== null && typeof v === "object" && Array.isArray(v) === false; 3 | 4 | const isNil = v => v === undefined || v === null; 5 | 6 | export const assoc = (coll, ...kvs) => { 7 | let ret = coll; 8 | 9 | for (let idx = 0; idx < kvs.length; idx += 2) { 10 | const k = kvs[idx]; 11 | const v = kvs[idx + 1]; 12 | 13 | if (Array.isArray(ret)) { 14 | const tmp = ret.slice(); 15 | tmp[k] = v; 16 | ret = tmp; 17 | } 18 | 19 | if (isObject(ret)) { 20 | ret = Object.assign({}, ret, { [k]: v }); 21 | } 22 | } 23 | 24 | return ret; 25 | }; 26 | 27 | export const assocIn = (m, [k, ...ks], v) => 28 | ks.length > 0 ? assoc(m, k, assocIn(get(m, k, {}), ks, v)) : assoc(m, k, v); 29 | 30 | export const dissoc = (m, ...ks) => { 31 | let ret = m; 32 | 33 | for (let idx = 0; idx < ks.length; idx++) { 34 | const k = ks[idx]; 35 | ret = Object.assign({}, ret); 36 | delete ret[k]; 37 | } 38 | 39 | return ret; 40 | }; 41 | 42 | export const update = (m, k, f, ...args) => assoc(m, k, f(get(m, k), ...args)); 43 | 44 | export const updateIn = (m, ks, f, ...args) => { 45 | const up = (m, [k, ...ks], f, args) => 46 | ks.length > 0 47 | ? assoc(m, k, up(get(m, k, {}), ks, f, args)) 48 | : assoc(m, k, f(get(m, k), ...args)); 49 | return up(m, ks, f, args); 50 | }; 51 | 52 | export const conj = (coll, ...xs) => { 53 | let ret = coll; 54 | 55 | for (let idx = 0; idx < xs.length; idx++) { 56 | const x = xs[idx]; 57 | 58 | if (Array.isArray(ret)) { 59 | ret = ret.concat(x); 60 | } 61 | 62 | if (isObject(ret)) { 63 | const [k, v] = x; 64 | ret = assoc(ret, k, v); 65 | } 66 | } 67 | 68 | return ret; 69 | }; 70 | 71 | export const get = (m, k, notFound) => (isNil(m[k]) ? notFound : m[k]); 72 | 73 | export const getIn = (m, ks, notFound) => { 74 | let ret = m; 75 | 76 | for (let idx = 0; idx < ks.length; idx++) { 77 | const k = ks[idx]; 78 | const tmp = get(ret, k); 79 | 80 | if (tmp === undefined) { 81 | return notFound; 82 | } 83 | 84 | ret = tmp; 85 | } 86 | return ret; 87 | }; 88 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ``` 2 | ██╗███╗ ███╗████████╗██████╗ ██╗ 3 | ██║████╗ ████║╚══██╔══╝██╔══██╗██║ 4 | ██║██╔████╔██║ ██║ ██████╔╝██║ 5 | ██║██║╚██╔╝██║ ██║ ██╔══██╗██║ 6 | ██║██║ ╚═╝ ██║ ██║ ██████╔╝███████╗ 7 | ╚═╝╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝ 8 | ``` 9 | 10 | _Immutable operations for JavaScript data structures_ 11 | 12 | Shamelessly copied from Clojure’s core library 13 | 14 | ## Why? 15 | 16 | Because `{ ...obj, [key]: { ...obj[key], [key1]: f(obj[key][key1]) }}` is stupid and sometimes you don't want Immutable.js in your code. 17 | 18 | ## Random benchmark results 19 | 20 | ``` 21 | updateId 0.7 ms/op 1356 op/s 22 | manual Object.assign 0.6 ms/op 1686 op/s 23 | ``` 24 | 25 | ## Installation 26 | 27 | ``` 28 | npm i imtbl 29 | ``` 30 | 31 | ## API 32 | 33 | See more usage examples in tests 34 | 35 | * `get(coll, k, notFound)` Returns the value mapped to `k`, `notFound` or `undefined` if `k` not present. 36 | * `getIn(coll, ks, notFound)` Returns the value in a nested array or object, where `ks` is an array of keys. Returns `undefined` if the key is not present, or the `notFound` value if supplied. 37 | * `assoc(coll, k, v, ...)` When applied to an object, returns a new object that contains the mapping of key(s) to val(s). When applied to an array, returns a new array that contains val at index. 38 | * `assocIn(coll, ks, v)` Associates a value in a nested array or object, where `ks` is a sequence of keys and `v` is the new value and returns a new nested structure. If any levels do not exist, objects will be created. 39 | * `dissoc(coll, k, ...)` Returns a new object, that does not contain a mapping for key(s). 40 | * `conj(coll, v, ...)` Returns a new array or object with values 'added'. 41 | * `update(coll, k, f, ...args)` 'Updates' a value in an array or an object, where `k` is a key and `f` is a function that will take the old value and any supplied `args` and return the new value, and returns a new array or object. If the key does not exist, `undefined` is passed as the old value. 42 | * `updateIn(coll, ks, f, ...args)` 'Updates' a value in a nested array or object, where `ks` is an array of keys and `f` is a function that will take the old value and any supplied `args` and return the new value, and returns a new nested array or object. If any levels do not exist, objects will be created. 43 | -------------------------------------------------------------------------------- /dist/imtbl.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : 3 | typeof define === 'function' && define.amd ? define(['exports'], factory) : 4 | (factory((global.imtbl = {}))); 5 | }(this, (function (exports) { 'use strict'; 6 | 7 | const isObject = v => 8 | v !== null && typeof v === "object" && Array.isArray(v) === false; 9 | 10 | const isNil = v => v === undefined || v === null; 11 | 12 | const assoc = (coll, ...kvs) => { 13 | let ret = coll; 14 | 15 | for (let idx = 0; idx < kvs.length; idx += 2) { 16 | const k = kvs[idx]; 17 | const v = kvs[idx + 1]; 18 | 19 | if (Array.isArray(ret)) { 20 | const tmp = ret.slice(); 21 | tmp[k] = v; 22 | ret = tmp; 23 | } 24 | 25 | if (isObject(ret)) { 26 | ret = Object.assign({}, ret, { [k]: v }); 27 | } 28 | } 29 | 30 | return ret; 31 | }; 32 | 33 | const assocIn = (m, [k, ...ks], v) => 34 | ks.length > 0 ? assoc(m, k, assocIn(get(m, k, {}), ks, v)) : assoc(m, k, v); 35 | 36 | const dissoc = (m, ...ks) => { 37 | let ret = m; 38 | 39 | for (let idx = 0; idx < ks.length; idx++) { 40 | const k = ks[idx]; 41 | ret = Object.assign({}, ret); 42 | delete ret[k]; 43 | } 44 | 45 | return ret; 46 | }; 47 | 48 | const update = (m, k, f, ...args) => assoc(m, k, f(get(m, k), ...args)); 49 | 50 | const updateIn = (m, ks, f, ...args) => { 51 | const up = (m, [k, ...ks], f, args) => 52 | ks.length > 0 53 | ? assoc(m, k, up(get(m, k, {}), ks, f, args)) 54 | : assoc(m, k, f(get(m, k), ...args)); 55 | return up(m, ks, f, args); 56 | }; 57 | 58 | const conj = (coll, ...xs) => { 59 | let ret = coll; 60 | 61 | for (let idx = 0; idx < xs.length; idx++) { 62 | const x = xs[idx]; 63 | 64 | if (Array.isArray(ret)) { 65 | ret = ret.concat(x); 66 | } 67 | 68 | if (isObject(ret)) { 69 | const [k, v] = x; 70 | ret = assoc(ret, k, v); 71 | } 72 | } 73 | 74 | return ret; 75 | }; 76 | 77 | const get = (m, k, notFound) => (isNil(m[k]) ? notFound : m[k]); 78 | 79 | const getIn = (m, ks, notFound) => { 80 | let ret = m; 81 | 82 | for (let idx = 0; idx < ks.length; idx++) { 83 | const k = ks[idx]; 84 | const tmp = get(ret, k); 85 | 86 | if (tmp === undefined) { 87 | return notFound; 88 | } 89 | 90 | ret = tmp; 91 | } 92 | return ret; 93 | }; 94 | 95 | exports.assoc = assoc; 96 | exports.assocIn = assocIn; 97 | exports.dissoc = dissoc; 98 | exports.update = update; 99 | exports.updateIn = updateIn; 100 | exports.conj = conj; 101 | exports.get = get; 102 | exports.getIn = getIn; 103 | 104 | Object.defineProperty(exports, '__esModule', { value: true }); 105 | 106 | }))); 107 | -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- 1 | const { 2 | assoc, 3 | assocIn, 4 | dissoc, 5 | get, 6 | getIn, 7 | update, 8 | updateIn, 9 | conj 10 | } = require("../dist/imtbl"); 11 | 12 | test("get", () => { 13 | expect(get({ a: 1 }, "a")).toEqual(1); 14 | expect(get({ a: 1 }, "v")).toEqual(undefined); 15 | expect(get({ a: 1 }, "v", 0)).toEqual(0); 16 | 17 | expect(get([1, 2, 3], 1)).toEqual(2); 18 | expect(get([1, 2, 3], 3)).toEqual(undefined); 19 | expect(get([1, 2, 3], 3, 0)).toEqual(0); 20 | }); 21 | 22 | test("getIn", () => { 23 | expect(getIn({ a: { b: 1 } }, ["a", "b"])).toEqual(1); 24 | expect(getIn({ a: { b: 1 } }, ["a", "b", "l"])).toEqual(undefined); 25 | expect(getIn({ a: { b: 1 } }, ["a", "g"], 0)).toEqual(0); 26 | 27 | expect(getIn([1, [2]], [1, 0])).toEqual(2); 28 | expect(getIn([1, [2]], [0, 1, 2])).toEqual(undefined); 29 | expect(getIn([1, [2]], [0, 1, 2], 0)).toEqual(0); 30 | 31 | expect(getIn({ a: { b: [, 2] } }, ["a", "b", 1])).toEqual(2); 32 | expect(getIn({ a: { b: [, 2] } }, ["a", "b", 0])).toEqual(undefined); 33 | expect(getIn({ a: { b: [, 2] } }, ["a", "b", 0], 0)).toEqual(0); 34 | }); 35 | 36 | test("assoc", () => { 37 | const in1 = {}; 38 | const in2 = []; 39 | 40 | expect(assoc(in1, "a", 1)).toEqual({ a: 1 }); 41 | expect(assoc(in1, "a", 1, "b", 2)).toEqual({ a: 1, b: 2 }); 42 | 43 | expect(in1).toEqual({}); 44 | 45 | expect(assoc(in2, 0, 1)).toEqual([1]); 46 | expect(assoc(in2, 1, 1, 3, 2)).toEqual([, 1, , 2]); 47 | 48 | expect(in2).toEqual([]); 49 | }); 50 | 51 | test("assocIn", () => { 52 | const in1 = { a: {} }; 53 | const in2 = [{ a: [] }]; 54 | const in3 = { a: null }; 55 | 56 | expect(assocIn(in1, ["a", "b"], 1)).toEqual({ a: { b: 1 } }); 57 | expect(in1).toEqual({ a: {} }); 58 | 59 | expect(assocIn({}, ["a", "b"], 1)).toEqual({ a: { b: 1 } }); 60 | expect(assocIn({ a: 1 }, ["a", "b"], 1)).toEqual({ a: 1 }); 61 | 62 | expect(assocIn([1, []], [1, 0], 1)).toEqual([1, [1]]); 63 | expect(assocIn([1, []], [1, 0, "key"], 1)).toEqual([1, [{ key: 1 }]]); 64 | expect(assocIn([1, []], [0, 1], 1)).toEqual([1, []]); 65 | 66 | expect(assocIn({ a: [] }, ["a", 0], 1)).toEqual({ a: [1] }); 67 | expect(assocIn(in2, [0, "a", 1], 1)).toEqual([{ a: [, 1] }]); 68 | expect(in2).toEqual([{ a: [] }]); 69 | 70 | expect(assocIn(in3, ['a', 'b'], 1)).toEqual({ a: { b: 1 } }); 71 | expect(in3).toEqual({ a: null }); 72 | }); 73 | 74 | test("dissoc", () => { 75 | const in1 = { a: 1, b: 2, c: 3 }; 76 | expect(dissoc(in1, "a", "b", "d")).toEqual({ c: 3 }); 77 | expect(in1).toEqual({ a: 1, b: 2, c: 3 }); 78 | }); 79 | 80 | test("conj", () => { 81 | const in1 = []; 82 | expect(conj(in1, 1, 2)).toEqual([1, 2]); 83 | expect(in1).toEqual([]); 84 | expect(conj({}, ["a", 1], ["b", 2])).toEqual({ a: 1, b: 2 }); 85 | }); 86 | 87 | test("update", () => { 88 | const in1 = { a: 1 }; 89 | expect(update(in1, "a", (n, x) => n + x + 1, 10)).toEqual({ a: 12 }); 90 | expect(in1).toEqual({ a: 1 }); 91 | expect(update({ a: 1 }, "b", (n, x) => n + x + 1, 10)).toEqual({ 92 | a: 1, 93 | b: NaN 94 | }); 95 | 96 | expect(update([1], 0, (n, x) => n + x + 1, 10)).toEqual([12]); 97 | expect(update([1], 1, (n, x) => n + x + 1, 10)).toEqual([1, NaN]); 98 | }); 99 | 100 | test("updateIn", () => { 101 | const in1 = { a: { b: 1 } }; 102 | expect(updateIn(in1, ["a", "b"], n => n + 1)).toEqual({ 103 | a: { b: 2 } 104 | }); 105 | expect(in1).toEqual({ a: { b: 1 } }); 106 | expect(updateIn({ a: { b: 1 } }, ["a", "c"], n => n + 1)).toEqual({ 107 | a: { b: 1, c: NaN } 108 | }); 109 | 110 | expect(updateIn([0, [0]], [1, 0], n => n + 1)).toEqual([0, [1]]); 111 | expect(updateIn([0, []], [1, 0], n => n + 1)).toEqual([0, [NaN]]); 112 | 113 | expect(updateIn({ a: [0] }, ["a", 0], n => n + 1)).toEqual({ a: [1] }); 114 | expect(updateIn({ a: [0] }, ["a", 1], n => n + 1)).toEqual({ a: [0, NaN] }); 115 | }); 116 | -------------------------------------------------------------------------------- /benchmark/data.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": 27670555, 4 | "name": "a11y", 5 | "full_name": "roman01la/a11y", 6 | "owner": { 7 | "login": "roman01la", 8 | "id": 1355501, 9 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 10 | "gravatar_id": "", 11 | "url": "https://api.github.com/users/roman01la", 12 | "html_url": "https://github.com/roman01la", 13 | "followers_url": "https://api.github.com/users/roman01la/followers", 14 | "following_url": 15 | "https://api.github.com/users/roman01la/following{/other_user}", 16 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 17 | "starred_url": 18 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 19 | "subscriptions_url": 20 | "https://api.github.com/users/roman01la/subscriptions", 21 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 22 | "repos_url": "https://api.github.com/users/roman01la/repos", 23 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 24 | "received_events_url": 25 | "https://api.github.com/users/roman01la/received_events", 26 | "type": "User", 27 | "site_admin": false 28 | }, 29 | "private": false, 30 | "html_url": "https://github.com/roman01la/a11y", 31 | "description": 32 | "Материалы к докладу «Доступный веб для всех» с Web Standards Days 2014 в Киеве", 33 | "fork": false, 34 | "url": "https://api.github.com/repos/roman01la/a11y", 35 | "forks_url": "https://api.github.com/repos/roman01la/a11y/forks", 36 | "keys_url": "https://api.github.com/repos/roman01la/a11y/keys{/key_id}", 37 | "collaborators_url": 38 | "https://api.github.com/repos/roman01la/a11y/collaborators{/collaborator}", 39 | "teams_url": "https://api.github.com/repos/roman01la/a11y/teams", 40 | "hooks_url": "https://api.github.com/repos/roman01la/a11y/hooks", 41 | "issue_events_url": 42 | "https://api.github.com/repos/roman01la/a11y/issues/events{/number}", 43 | "events_url": "https://api.github.com/repos/roman01la/a11y/events", 44 | "assignees_url": 45 | "https://api.github.com/repos/roman01la/a11y/assignees{/user}", 46 | "branches_url": 47 | "https://api.github.com/repos/roman01la/a11y/branches{/branch}", 48 | "tags_url": "https://api.github.com/repos/roman01la/a11y/tags", 49 | "blobs_url": "https://api.github.com/repos/roman01la/a11y/git/blobs{/sha}", 50 | "git_tags_url": 51 | "https://api.github.com/repos/roman01la/a11y/git/tags{/sha}", 52 | "git_refs_url": 53 | "https://api.github.com/repos/roman01la/a11y/git/refs{/sha}", 54 | "trees_url": "https://api.github.com/repos/roman01la/a11y/git/trees{/sha}", 55 | "statuses_url": 56 | "https://api.github.com/repos/roman01la/a11y/statuses/{sha}", 57 | "languages_url": "https://api.github.com/repos/roman01la/a11y/languages", 58 | "stargazers_url": "https://api.github.com/repos/roman01la/a11y/stargazers", 59 | "contributors_url": 60 | "https://api.github.com/repos/roman01la/a11y/contributors", 61 | "subscribers_url": 62 | "https://api.github.com/repos/roman01la/a11y/subscribers", 63 | "subscription_url": 64 | "https://api.github.com/repos/roman01la/a11y/subscription", 65 | "commits_url": "https://api.github.com/repos/roman01la/a11y/commits{/sha}", 66 | "git_commits_url": 67 | "https://api.github.com/repos/roman01la/a11y/git/commits{/sha}", 68 | "comments_url": 69 | "https://api.github.com/repos/roman01la/a11y/comments{/number}", 70 | "issue_comment_url": 71 | "https://api.github.com/repos/roman01la/a11y/issues/comments{/number}", 72 | "contents_url": 73 | "https://api.github.com/repos/roman01la/a11y/contents/{+path}", 74 | "compare_url": 75 | "https://api.github.com/repos/roman01la/a11y/compare/{base}...{head}", 76 | "merges_url": "https://api.github.com/repos/roman01la/a11y/merges", 77 | "archive_url": 78 | "https://api.github.com/repos/roman01la/a11y/{archive_format}{/ref}", 79 | "downloads_url": "https://api.github.com/repos/roman01la/a11y/downloads", 80 | "issues_url": "https://api.github.com/repos/roman01la/a11y/issues{/number}", 81 | "pulls_url": "https://api.github.com/repos/roman01la/a11y/pulls{/number}", 82 | "milestones_url": 83 | "https://api.github.com/repos/roman01la/a11y/milestones{/number}", 84 | "notifications_url": 85 | "https://api.github.com/repos/roman01la/a11y/notifications{?since,all,participating}", 86 | "labels_url": "https://api.github.com/repos/roman01la/a11y/labels{/name}", 87 | "releases_url": "https://api.github.com/repos/roman01la/a11y/releases{/id}", 88 | "deployments_url": 89 | "https://api.github.com/repos/roman01la/a11y/deployments", 90 | "created_at": "2014-12-07T13:12:04Z", 91 | "updated_at": "2016-11-27T00:57:00Z", 92 | "pushed_at": "2014-12-07T14:12:41Z", 93 | "git_url": "git://github.com/roman01la/a11y.git", 94 | "ssh_url": "git@github.com:roman01la/a11y.git", 95 | "clone_url": "https://github.com/roman01la/a11y.git", 96 | "svn_url": "https://github.com/roman01la/a11y", 97 | "homepage": "https://romanliutikov.com/slides/accessibility-for-everybody/", 98 | "size": 28980, 99 | "stargazers_count": 1, 100 | "watchers_count": 1, 101 | "language": "CSS", 102 | "has_issues": true, 103 | "has_projects": true, 104 | "has_downloads": true, 105 | "has_wiki": true, 106 | "has_pages": false, 107 | "forks_count": 0, 108 | "mirror_url": null, 109 | "archived": false, 110 | "open_issues_count": 0, 111 | "license": null, 112 | "forks": 0, 113 | "open_issues": 0, 114 | "watchers": 1, 115 | "default_branch": "master" 116 | }, 117 | { 118 | "id": 38878535, 119 | "name": "a11y-in-spa", 120 | "full_name": "roman01la/a11y-in-spa", 121 | "owner": { 122 | "login": "roman01la", 123 | "id": 1355501, 124 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 125 | "gravatar_id": "", 126 | "url": "https://api.github.com/users/roman01la", 127 | "html_url": "https://github.com/roman01la", 128 | "followers_url": "https://api.github.com/users/roman01la/followers", 129 | "following_url": 130 | "https://api.github.com/users/roman01la/following{/other_user}", 131 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 132 | "starred_url": 133 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 134 | "subscriptions_url": 135 | "https://api.github.com/users/roman01la/subscriptions", 136 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 137 | "repos_url": "https://api.github.com/users/roman01la/repos", 138 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 139 | "received_events_url": 140 | "https://api.github.com/users/roman01la/received_events", 141 | "type": "User", 142 | "site_admin": false 143 | }, 144 | "private": false, 145 | "html_url": "https://github.com/roman01la/a11y-in-spa", 146 | "description": "a11y-in-spa", 147 | "fork": false, 148 | "url": "https://api.github.com/repos/roman01la/a11y-in-spa", 149 | "forks_url": "https://api.github.com/repos/roman01la/a11y-in-spa/forks", 150 | "keys_url": 151 | "https://api.github.com/repos/roman01la/a11y-in-spa/keys{/key_id}", 152 | "collaborators_url": 153 | "https://api.github.com/repos/roman01la/a11y-in-spa/collaborators{/collaborator}", 154 | "teams_url": "https://api.github.com/repos/roman01la/a11y-in-spa/teams", 155 | "hooks_url": "https://api.github.com/repos/roman01la/a11y-in-spa/hooks", 156 | "issue_events_url": 157 | "https://api.github.com/repos/roman01la/a11y-in-spa/issues/events{/number}", 158 | "events_url": "https://api.github.com/repos/roman01la/a11y-in-spa/events", 159 | "assignees_url": 160 | "https://api.github.com/repos/roman01la/a11y-in-spa/assignees{/user}", 161 | "branches_url": 162 | "https://api.github.com/repos/roman01la/a11y-in-spa/branches{/branch}", 163 | "tags_url": "https://api.github.com/repos/roman01la/a11y-in-spa/tags", 164 | "blobs_url": 165 | "https://api.github.com/repos/roman01la/a11y-in-spa/git/blobs{/sha}", 166 | "git_tags_url": 167 | "https://api.github.com/repos/roman01la/a11y-in-spa/git/tags{/sha}", 168 | "git_refs_url": 169 | "https://api.github.com/repos/roman01la/a11y-in-spa/git/refs{/sha}", 170 | "trees_url": 171 | "https://api.github.com/repos/roman01la/a11y-in-spa/git/trees{/sha}", 172 | "statuses_url": 173 | "https://api.github.com/repos/roman01la/a11y-in-spa/statuses/{sha}", 174 | "languages_url": 175 | "https://api.github.com/repos/roman01la/a11y-in-spa/languages", 176 | "stargazers_url": 177 | "https://api.github.com/repos/roman01la/a11y-in-spa/stargazers", 178 | "contributors_url": 179 | "https://api.github.com/repos/roman01la/a11y-in-spa/contributors", 180 | "subscribers_url": 181 | "https://api.github.com/repos/roman01la/a11y-in-spa/subscribers", 182 | "subscription_url": 183 | "https://api.github.com/repos/roman01la/a11y-in-spa/subscription", 184 | "commits_url": 185 | "https://api.github.com/repos/roman01la/a11y-in-spa/commits{/sha}", 186 | "git_commits_url": 187 | "https://api.github.com/repos/roman01la/a11y-in-spa/git/commits{/sha}", 188 | "comments_url": 189 | "https://api.github.com/repos/roman01la/a11y-in-spa/comments{/number}", 190 | "issue_comment_url": 191 | "https://api.github.com/repos/roman01la/a11y-in-spa/issues/comments{/number}", 192 | "contents_url": 193 | "https://api.github.com/repos/roman01la/a11y-in-spa/contents/{+path}", 194 | "compare_url": 195 | "https://api.github.com/repos/roman01la/a11y-in-spa/compare/{base}...{head}", 196 | "merges_url": "https://api.github.com/repos/roman01la/a11y-in-spa/merges", 197 | "archive_url": 198 | "https://api.github.com/repos/roman01la/a11y-in-spa/{archive_format}{/ref}", 199 | "downloads_url": 200 | "https://api.github.com/repos/roman01la/a11y-in-spa/downloads", 201 | "issues_url": 202 | "https://api.github.com/repos/roman01la/a11y-in-spa/issues{/number}", 203 | "pulls_url": 204 | "https://api.github.com/repos/roman01la/a11y-in-spa/pulls{/number}", 205 | "milestones_url": 206 | "https://api.github.com/repos/roman01la/a11y-in-spa/milestones{/number}", 207 | "notifications_url": 208 | "https://api.github.com/repos/roman01la/a11y-in-spa/notifications{?since,all,participating}", 209 | "labels_url": 210 | "https://api.github.com/repos/roman01la/a11y-in-spa/labels{/name}", 211 | "releases_url": 212 | "https://api.github.com/repos/roman01la/a11y-in-spa/releases{/id}", 213 | "deployments_url": 214 | "https://api.github.com/repos/roman01la/a11y-in-spa/deployments", 215 | "created_at": "2015-07-10T12:09:22Z", 216 | "updated_at": "2015-07-10T12:12:51Z", 217 | "pushed_at": "2015-07-10T12:30:56Z", 218 | "git_url": "git://github.com/roman01la/a11y-in-spa.git", 219 | "ssh_url": "git@github.com:roman01la/a11y-in-spa.git", 220 | "clone_url": "https://github.com/roman01la/a11y-in-spa.git", 221 | "svn_url": "https://github.com/roman01la/a11y-in-spa", 222 | "homepage": "", 223 | "size": 2808, 224 | "stargazers_count": 0, 225 | "watchers_count": 0, 226 | "language": "JavaScript", 227 | "has_issues": true, 228 | "has_projects": true, 229 | "has_downloads": true, 230 | "has_wiki": true, 231 | "has_pages": true, 232 | "forks_count": 0, 233 | "mirror_url": null, 234 | "archived": false, 235 | "open_issues_count": 0, 236 | "license": null, 237 | "forks": 0, 238 | "open_issues": 0, 239 | "watchers": 0, 240 | "default_branch": "master" 241 | }, 242 | { 243 | "id": 15463928, 244 | "name": "angularjs-geolocation", 245 | "full_name": "roman01la/angularjs-geolocation", 246 | "owner": { 247 | "login": "roman01la", 248 | "id": 1355501, 249 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 250 | "gravatar_id": "", 251 | "url": "https://api.github.com/users/roman01la", 252 | "html_url": "https://github.com/roman01la", 253 | "followers_url": "https://api.github.com/users/roman01la/followers", 254 | "following_url": 255 | "https://api.github.com/users/roman01la/following{/other_user}", 256 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 257 | "starred_url": 258 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 259 | "subscriptions_url": 260 | "https://api.github.com/users/roman01la/subscriptions", 261 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 262 | "repos_url": "https://api.github.com/users/roman01la/repos", 263 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 264 | "received_events_url": 265 | "https://api.github.com/users/roman01la/received_events", 266 | "type": "User", 267 | "site_admin": false 268 | }, 269 | "private": false, 270 | "html_url": "https://github.com/roman01la/angularjs-geolocation", 271 | "description": "An angular.js wrapper around window.navigator.geolocation", 272 | "fork": true, 273 | "url": "https://api.github.com/repos/roman01la/angularjs-geolocation", 274 | "forks_url": 275 | "https://api.github.com/repos/roman01la/angularjs-geolocation/forks", 276 | "keys_url": 277 | "https://api.github.com/repos/roman01la/angularjs-geolocation/keys{/key_id}", 278 | "collaborators_url": 279 | "https://api.github.com/repos/roman01la/angularjs-geolocation/collaborators{/collaborator}", 280 | "teams_url": 281 | "https://api.github.com/repos/roman01la/angularjs-geolocation/teams", 282 | "hooks_url": 283 | "https://api.github.com/repos/roman01la/angularjs-geolocation/hooks", 284 | "issue_events_url": 285 | "https://api.github.com/repos/roman01la/angularjs-geolocation/issues/events{/number}", 286 | "events_url": 287 | "https://api.github.com/repos/roman01la/angularjs-geolocation/events", 288 | "assignees_url": 289 | "https://api.github.com/repos/roman01la/angularjs-geolocation/assignees{/user}", 290 | "branches_url": 291 | "https://api.github.com/repos/roman01la/angularjs-geolocation/branches{/branch}", 292 | "tags_url": 293 | "https://api.github.com/repos/roman01la/angularjs-geolocation/tags", 294 | "blobs_url": 295 | "https://api.github.com/repos/roman01la/angularjs-geolocation/git/blobs{/sha}", 296 | "git_tags_url": 297 | "https://api.github.com/repos/roman01la/angularjs-geolocation/git/tags{/sha}", 298 | "git_refs_url": 299 | "https://api.github.com/repos/roman01la/angularjs-geolocation/git/refs{/sha}", 300 | "trees_url": 301 | "https://api.github.com/repos/roman01la/angularjs-geolocation/git/trees{/sha}", 302 | "statuses_url": 303 | "https://api.github.com/repos/roman01la/angularjs-geolocation/statuses/{sha}", 304 | "languages_url": 305 | "https://api.github.com/repos/roman01la/angularjs-geolocation/languages", 306 | "stargazers_url": 307 | "https://api.github.com/repos/roman01la/angularjs-geolocation/stargazers", 308 | "contributors_url": 309 | "https://api.github.com/repos/roman01la/angularjs-geolocation/contributors", 310 | "subscribers_url": 311 | "https://api.github.com/repos/roman01la/angularjs-geolocation/subscribers", 312 | "subscription_url": 313 | "https://api.github.com/repos/roman01la/angularjs-geolocation/subscription", 314 | "commits_url": 315 | "https://api.github.com/repos/roman01la/angularjs-geolocation/commits{/sha}", 316 | "git_commits_url": 317 | "https://api.github.com/repos/roman01la/angularjs-geolocation/git/commits{/sha}", 318 | "comments_url": 319 | "https://api.github.com/repos/roman01la/angularjs-geolocation/comments{/number}", 320 | "issue_comment_url": 321 | "https://api.github.com/repos/roman01la/angularjs-geolocation/issues/comments{/number}", 322 | "contents_url": 323 | "https://api.github.com/repos/roman01la/angularjs-geolocation/contents/{+path}", 324 | "compare_url": 325 | "https://api.github.com/repos/roman01la/angularjs-geolocation/compare/{base}...{head}", 326 | "merges_url": 327 | "https://api.github.com/repos/roman01la/angularjs-geolocation/merges", 328 | "archive_url": 329 | "https://api.github.com/repos/roman01la/angularjs-geolocation/{archive_format}{/ref}", 330 | "downloads_url": 331 | "https://api.github.com/repos/roman01la/angularjs-geolocation/downloads", 332 | "issues_url": 333 | "https://api.github.com/repos/roman01la/angularjs-geolocation/issues{/number}", 334 | "pulls_url": 335 | "https://api.github.com/repos/roman01la/angularjs-geolocation/pulls{/number}", 336 | "milestones_url": 337 | "https://api.github.com/repos/roman01la/angularjs-geolocation/milestones{/number}", 338 | "notifications_url": 339 | "https://api.github.com/repos/roman01la/angularjs-geolocation/notifications{?since,all,participating}", 340 | "labels_url": 341 | "https://api.github.com/repos/roman01la/angularjs-geolocation/labels{/name}", 342 | "releases_url": 343 | "https://api.github.com/repos/roman01la/angularjs-geolocation/releases{/id}", 344 | "deployments_url": 345 | "https://api.github.com/repos/roman01la/angularjs-geolocation/deployments", 346 | "created_at": "2013-12-27T01:34:46Z", 347 | "updated_at": "2014-04-25T15:25:00Z", 348 | "pushed_at": "2013-12-27T02:38:24Z", 349 | "git_url": "git://github.com/roman01la/angularjs-geolocation.git", 350 | "ssh_url": "git@github.com:roman01la/angularjs-geolocation.git", 351 | "clone_url": "https://github.com/roman01la/angularjs-geolocation.git", 352 | "svn_url": "https://github.com/roman01la/angularjs-geolocation", 353 | "homepage": null, 354 | "size": 380, 355 | "stargazers_count": 0, 356 | "watchers_count": 0, 357 | "language": "JavaScript", 358 | "has_issues": false, 359 | "has_projects": true, 360 | "has_downloads": true, 361 | "has_wiki": true, 362 | "has_pages": false, 363 | "forks_count": 0, 364 | "mirror_url": null, 365 | "archived": false, 366 | "open_issues_count": 0, 367 | "license": { 368 | "key": "mit", 369 | "name": "MIT License", 370 | "spdx_id": "MIT", 371 | "url": "https://api.github.com/licenses/mit" 372 | }, 373 | "forks": 0, 374 | "open_issues": 0, 375 | "watchers": 0, 376 | "default_branch": "master" 377 | }, 378 | { 379 | "id": 32607156, 380 | "name": "anybar-webpack", 381 | "full_name": "roman01la/anybar-webpack", 382 | "owner": { 383 | "login": "roman01la", 384 | "id": 1355501, 385 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 386 | "gravatar_id": "", 387 | "url": "https://api.github.com/users/roman01la", 388 | "html_url": "https://github.com/roman01la", 389 | "followers_url": "https://api.github.com/users/roman01la/followers", 390 | "following_url": 391 | "https://api.github.com/users/roman01la/following{/other_user}", 392 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 393 | "starred_url": 394 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 395 | "subscriptions_url": 396 | "https://api.github.com/users/roman01la/subscriptions", 397 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 398 | "repos_url": "https://api.github.com/users/roman01la/repos", 399 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 400 | "received_events_url": 401 | "https://api.github.com/users/roman01la/received_events", 402 | "type": "User", 403 | "site_admin": false 404 | }, 405 | "private": false, 406 | "html_url": "https://github.com/roman01la/anybar-webpack", 407 | "description": 408 | "Webpack build status plugin for menubar status indicator applications", 409 | "fork": false, 410 | "url": "https://api.github.com/repos/roman01la/anybar-webpack", 411 | "forks_url": "https://api.github.com/repos/roman01la/anybar-webpack/forks", 412 | "keys_url": 413 | "https://api.github.com/repos/roman01la/anybar-webpack/keys{/key_id}", 414 | "collaborators_url": 415 | "https://api.github.com/repos/roman01la/anybar-webpack/collaborators{/collaborator}", 416 | "teams_url": "https://api.github.com/repos/roman01la/anybar-webpack/teams", 417 | "hooks_url": "https://api.github.com/repos/roman01la/anybar-webpack/hooks", 418 | "issue_events_url": 419 | "https://api.github.com/repos/roman01la/anybar-webpack/issues/events{/number}", 420 | "events_url": 421 | "https://api.github.com/repos/roman01la/anybar-webpack/events", 422 | "assignees_url": 423 | "https://api.github.com/repos/roman01la/anybar-webpack/assignees{/user}", 424 | "branches_url": 425 | "https://api.github.com/repos/roman01la/anybar-webpack/branches{/branch}", 426 | "tags_url": "https://api.github.com/repos/roman01la/anybar-webpack/tags", 427 | "blobs_url": 428 | "https://api.github.com/repos/roman01la/anybar-webpack/git/blobs{/sha}", 429 | "git_tags_url": 430 | "https://api.github.com/repos/roman01la/anybar-webpack/git/tags{/sha}", 431 | "git_refs_url": 432 | "https://api.github.com/repos/roman01la/anybar-webpack/git/refs{/sha}", 433 | "trees_url": 434 | "https://api.github.com/repos/roman01la/anybar-webpack/git/trees{/sha}", 435 | "statuses_url": 436 | "https://api.github.com/repos/roman01la/anybar-webpack/statuses/{sha}", 437 | "languages_url": 438 | "https://api.github.com/repos/roman01la/anybar-webpack/languages", 439 | "stargazers_url": 440 | "https://api.github.com/repos/roman01la/anybar-webpack/stargazers", 441 | "contributors_url": 442 | "https://api.github.com/repos/roman01la/anybar-webpack/contributors", 443 | "subscribers_url": 444 | "https://api.github.com/repos/roman01la/anybar-webpack/subscribers", 445 | "subscription_url": 446 | "https://api.github.com/repos/roman01la/anybar-webpack/subscription", 447 | "commits_url": 448 | "https://api.github.com/repos/roman01la/anybar-webpack/commits{/sha}", 449 | "git_commits_url": 450 | "https://api.github.com/repos/roman01la/anybar-webpack/git/commits{/sha}", 451 | "comments_url": 452 | "https://api.github.com/repos/roman01la/anybar-webpack/comments{/number}", 453 | "issue_comment_url": 454 | "https://api.github.com/repos/roman01la/anybar-webpack/issues/comments{/number}", 455 | "contents_url": 456 | "https://api.github.com/repos/roman01la/anybar-webpack/contents/{+path}", 457 | "compare_url": 458 | "https://api.github.com/repos/roman01la/anybar-webpack/compare/{base}...{head}", 459 | "merges_url": 460 | "https://api.github.com/repos/roman01la/anybar-webpack/merges", 461 | "archive_url": 462 | "https://api.github.com/repos/roman01la/anybar-webpack/{archive_format}{/ref}", 463 | "downloads_url": 464 | "https://api.github.com/repos/roman01la/anybar-webpack/downloads", 465 | "issues_url": 466 | "https://api.github.com/repos/roman01la/anybar-webpack/issues{/number}", 467 | "pulls_url": 468 | "https://api.github.com/repos/roman01la/anybar-webpack/pulls{/number}", 469 | "milestones_url": 470 | "https://api.github.com/repos/roman01la/anybar-webpack/milestones{/number}", 471 | "notifications_url": 472 | "https://api.github.com/repos/roman01la/anybar-webpack/notifications{?since,all,participating}", 473 | "labels_url": 474 | "https://api.github.com/repos/roman01la/anybar-webpack/labels{/name}", 475 | "releases_url": 476 | "https://api.github.com/repos/roman01la/anybar-webpack/releases{/id}", 477 | "deployments_url": 478 | "https://api.github.com/repos/roman01la/anybar-webpack/deployments", 479 | "created_at": "2015-03-20T21:07:53Z", 480 | "updated_at": "2017-10-10T01:03:39Z", 481 | "pushed_at": "2016-01-07T20:18:25Z", 482 | "git_url": "git://github.com/roman01la/anybar-webpack.git", 483 | "ssh_url": "git@github.com:roman01la/anybar-webpack.git", 484 | "clone_url": "https://github.com/roman01la/anybar-webpack.git", 485 | "svn_url": "https://github.com/roman01la/anybar-webpack", 486 | "homepage": "", 487 | "size": 102, 488 | "stargazers_count": 56, 489 | "watchers_count": 56, 490 | "language": "JavaScript", 491 | "has_issues": true, 492 | "has_projects": true, 493 | "has_downloads": true, 494 | "has_wiki": true, 495 | "has_pages": false, 496 | "forks_count": 4, 497 | "mirror_url": null, 498 | "archived": false, 499 | "open_issues_count": 1, 500 | "license": { 501 | "key": "mit", 502 | "name": "MIT License", 503 | "spdx_id": "MIT", 504 | "url": "https://api.github.com/licenses/mit" 505 | }, 506 | "forks": 4, 507 | "open_issues": 1, 508 | "watchers": 56, 509 | "default_branch": "master" 510 | }, 511 | { 512 | "id": 47924787, 513 | "name": "arts", 514 | "full_name": "roman01la/arts", 515 | "owner": { 516 | "login": "roman01la", 517 | "id": 1355501, 518 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 519 | "gravatar_id": "", 520 | "url": "https://api.github.com/users/roman01la", 521 | "html_url": "https://github.com/roman01la", 522 | "followers_url": "https://api.github.com/users/roman01la/followers", 523 | "following_url": 524 | "https://api.github.com/users/roman01la/following{/other_user}", 525 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 526 | "starred_url": 527 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 528 | "subscriptions_url": 529 | "https://api.github.com/users/roman01la/subscriptions", 530 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 531 | "repos_url": "https://api.github.com/users/roman01la/repos", 532 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 533 | "received_events_url": 534 | "https://api.github.com/users/roman01la/received_events", 535 | "type": "User", 536 | "site_admin": false 537 | }, 538 | "private": false, 539 | "html_url": "https://github.com/roman01la/arts", 540 | "description": "Drawings", 541 | "fork": false, 542 | "url": "https://api.github.com/repos/roman01la/arts", 543 | "forks_url": "https://api.github.com/repos/roman01la/arts/forks", 544 | "keys_url": "https://api.github.com/repos/roman01la/arts/keys{/key_id}", 545 | "collaborators_url": 546 | "https://api.github.com/repos/roman01la/arts/collaborators{/collaborator}", 547 | "teams_url": "https://api.github.com/repos/roman01la/arts/teams", 548 | "hooks_url": "https://api.github.com/repos/roman01la/arts/hooks", 549 | "issue_events_url": 550 | "https://api.github.com/repos/roman01la/arts/issues/events{/number}", 551 | "events_url": "https://api.github.com/repos/roman01la/arts/events", 552 | "assignees_url": 553 | "https://api.github.com/repos/roman01la/arts/assignees{/user}", 554 | "branches_url": 555 | "https://api.github.com/repos/roman01la/arts/branches{/branch}", 556 | "tags_url": "https://api.github.com/repos/roman01la/arts/tags", 557 | "blobs_url": "https://api.github.com/repos/roman01la/arts/git/blobs{/sha}", 558 | "git_tags_url": 559 | "https://api.github.com/repos/roman01la/arts/git/tags{/sha}", 560 | "git_refs_url": 561 | "https://api.github.com/repos/roman01la/arts/git/refs{/sha}", 562 | "trees_url": "https://api.github.com/repos/roman01la/arts/git/trees{/sha}", 563 | "statuses_url": 564 | "https://api.github.com/repos/roman01la/arts/statuses/{sha}", 565 | "languages_url": "https://api.github.com/repos/roman01la/arts/languages", 566 | "stargazers_url": "https://api.github.com/repos/roman01la/arts/stargazers", 567 | "contributors_url": 568 | "https://api.github.com/repos/roman01la/arts/contributors", 569 | "subscribers_url": 570 | "https://api.github.com/repos/roman01la/arts/subscribers", 571 | "subscription_url": 572 | "https://api.github.com/repos/roman01la/arts/subscription", 573 | "commits_url": "https://api.github.com/repos/roman01la/arts/commits{/sha}", 574 | "git_commits_url": 575 | "https://api.github.com/repos/roman01la/arts/git/commits{/sha}", 576 | "comments_url": 577 | "https://api.github.com/repos/roman01la/arts/comments{/number}", 578 | "issue_comment_url": 579 | "https://api.github.com/repos/roman01la/arts/issues/comments{/number}", 580 | "contents_url": 581 | "https://api.github.com/repos/roman01la/arts/contents/{+path}", 582 | "compare_url": 583 | "https://api.github.com/repos/roman01la/arts/compare/{base}...{head}", 584 | "merges_url": "https://api.github.com/repos/roman01la/arts/merges", 585 | "archive_url": 586 | "https://api.github.com/repos/roman01la/arts/{archive_format}{/ref}", 587 | "downloads_url": "https://api.github.com/repos/roman01la/arts/downloads", 588 | "issues_url": "https://api.github.com/repos/roman01la/arts/issues{/number}", 589 | "pulls_url": "https://api.github.com/repos/roman01la/arts/pulls{/number}", 590 | "milestones_url": 591 | "https://api.github.com/repos/roman01la/arts/milestones{/number}", 592 | "notifications_url": 593 | "https://api.github.com/repos/roman01la/arts/notifications{?since,all,participating}", 594 | "labels_url": "https://api.github.com/repos/roman01la/arts/labels{/name}", 595 | "releases_url": "https://api.github.com/repos/roman01la/arts/releases{/id}", 596 | "deployments_url": 597 | "https://api.github.com/repos/roman01la/arts/deployments", 598 | "created_at": "2015-12-13T15:30:52Z", 599 | "updated_at": "2015-12-13T15:30:52Z", 600 | "pushed_at": "2015-12-13T15:32:06Z", 601 | "git_url": "git://github.com/roman01la/arts.git", 602 | "ssh_url": "git@github.com:roman01la/arts.git", 603 | "clone_url": "https://github.com/roman01la/arts.git", 604 | "svn_url": "https://github.com/roman01la/arts", 605 | "homepage": null, 606 | "size": 4, 607 | "stargazers_count": 0, 608 | "watchers_count": 0, 609 | "language": null, 610 | "has_issues": true, 611 | "has_projects": true, 612 | "has_downloads": true, 613 | "has_wiki": true, 614 | "has_pages": false, 615 | "forks_count": 0, 616 | "mirror_url": null, 617 | "archived": false, 618 | "open_issues_count": 0, 619 | "license": { 620 | "key": "cc0-1.0", 621 | "name": "Creative Commons Zero v1.0 Universal", 622 | "spdx_id": "CC0-1.0", 623 | "url": "https://api.github.com/licenses/cc0-1.0" 624 | }, 625 | "forks": 0, 626 | "open_issues": 0, 627 | "watchers": 0, 628 | "default_branch": "master" 629 | }, 630 | { 631 | "id": 73807447, 632 | "name": "atom-cljs-doc", 633 | "full_name": "roman01la/atom-cljs-doc", 634 | "owner": { 635 | "login": "roman01la", 636 | "id": 1355501, 637 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 638 | "gravatar_id": "", 639 | "url": "https://api.github.com/users/roman01la", 640 | "html_url": "https://github.com/roman01la", 641 | "followers_url": "https://api.github.com/users/roman01la/followers", 642 | "following_url": 643 | "https://api.github.com/users/roman01la/following{/other_user}", 644 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 645 | "starred_url": 646 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 647 | "subscriptions_url": 648 | "https://api.github.com/users/roman01la/subscriptions", 649 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 650 | "repos_url": "https://api.github.com/users/roman01la/repos", 651 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 652 | "received_events_url": 653 | "https://api.github.com/users/roman01la/received_events", 654 | "type": "User", 655 | "site_admin": false 656 | }, 657 | "private": false, 658 | "html_url": "https://github.com/roman01la/atom-cljs-doc", 659 | "description": "ClojureScript core library documentation viewer for Atom", 660 | "fork": false, 661 | "url": "https://api.github.com/repos/roman01la/atom-cljs-doc", 662 | "forks_url": "https://api.github.com/repos/roman01la/atom-cljs-doc/forks", 663 | "keys_url": 664 | "https://api.github.com/repos/roman01la/atom-cljs-doc/keys{/key_id}", 665 | "collaborators_url": 666 | "https://api.github.com/repos/roman01la/atom-cljs-doc/collaborators{/collaborator}", 667 | "teams_url": "https://api.github.com/repos/roman01la/atom-cljs-doc/teams", 668 | "hooks_url": "https://api.github.com/repos/roman01la/atom-cljs-doc/hooks", 669 | "issue_events_url": 670 | "https://api.github.com/repos/roman01la/atom-cljs-doc/issues/events{/number}", 671 | "events_url": "https://api.github.com/repos/roman01la/atom-cljs-doc/events", 672 | "assignees_url": 673 | "https://api.github.com/repos/roman01la/atom-cljs-doc/assignees{/user}", 674 | "branches_url": 675 | "https://api.github.com/repos/roman01la/atom-cljs-doc/branches{/branch}", 676 | "tags_url": "https://api.github.com/repos/roman01la/atom-cljs-doc/tags", 677 | "blobs_url": 678 | "https://api.github.com/repos/roman01la/atom-cljs-doc/git/blobs{/sha}", 679 | "git_tags_url": 680 | "https://api.github.com/repos/roman01la/atom-cljs-doc/git/tags{/sha}", 681 | "git_refs_url": 682 | "https://api.github.com/repos/roman01la/atom-cljs-doc/git/refs{/sha}", 683 | "trees_url": 684 | "https://api.github.com/repos/roman01la/atom-cljs-doc/git/trees{/sha}", 685 | "statuses_url": 686 | "https://api.github.com/repos/roman01la/atom-cljs-doc/statuses/{sha}", 687 | "languages_url": 688 | "https://api.github.com/repos/roman01la/atom-cljs-doc/languages", 689 | "stargazers_url": 690 | "https://api.github.com/repos/roman01la/atom-cljs-doc/stargazers", 691 | "contributors_url": 692 | "https://api.github.com/repos/roman01la/atom-cljs-doc/contributors", 693 | "subscribers_url": 694 | "https://api.github.com/repos/roman01la/atom-cljs-doc/subscribers", 695 | "subscription_url": 696 | "https://api.github.com/repos/roman01la/atom-cljs-doc/subscription", 697 | "commits_url": 698 | "https://api.github.com/repos/roman01la/atom-cljs-doc/commits{/sha}", 699 | "git_commits_url": 700 | "https://api.github.com/repos/roman01la/atom-cljs-doc/git/commits{/sha}", 701 | "comments_url": 702 | "https://api.github.com/repos/roman01la/atom-cljs-doc/comments{/number}", 703 | "issue_comment_url": 704 | "https://api.github.com/repos/roman01la/atom-cljs-doc/issues/comments{/number}", 705 | "contents_url": 706 | "https://api.github.com/repos/roman01la/atom-cljs-doc/contents/{+path}", 707 | "compare_url": 708 | "https://api.github.com/repos/roman01la/atom-cljs-doc/compare/{base}...{head}", 709 | "merges_url": "https://api.github.com/repos/roman01la/atom-cljs-doc/merges", 710 | "archive_url": 711 | "https://api.github.com/repos/roman01la/atom-cljs-doc/{archive_format}{/ref}", 712 | "downloads_url": 713 | "https://api.github.com/repos/roman01la/atom-cljs-doc/downloads", 714 | "issues_url": 715 | "https://api.github.com/repos/roman01la/atom-cljs-doc/issues{/number}", 716 | "pulls_url": 717 | "https://api.github.com/repos/roman01la/atom-cljs-doc/pulls{/number}", 718 | "milestones_url": 719 | "https://api.github.com/repos/roman01la/atom-cljs-doc/milestones{/number}", 720 | "notifications_url": 721 | "https://api.github.com/repos/roman01la/atom-cljs-doc/notifications{?since,all,participating}", 722 | "labels_url": 723 | "https://api.github.com/repos/roman01la/atom-cljs-doc/labels{/name}", 724 | "releases_url": 725 | "https://api.github.com/repos/roman01la/atom-cljs-doc/releases{/id}", 726 | "deployments_url": 727 | "https://api.github.com/repos/roman01la/atom-cljs-doc/deployments", 728 | "created_at": "2016-11-15T11:32:27Z", 729 | "updated_at": "2017-08-11T06:54:35Z", 730 | "pushed_at": "2017-08-11T16:50:46Z", 731 | "git_url": "git://github.com/roman01la/atom-cljs-doc.git", 732 | "ssh_url": "git@github.com:roman01la/atom-cljs-doc.git", 733 | "clone_url": "https://github.com/roman01la/atom-cljs-doc.git", 734 | "svn_url": "https://github.com/roman01la/atom-cljs-doc", 735 | "homepage": "https://atom.io/packages/atom-cljs-doc", 736 | "size": 531, 737 | "stargazers_count": 9, 738 | "watchers_count": 9, 739 | "language": "JavaScript", 740 | "has_issues": true, 741 | "has_projects": true, 742 | "has_downloads": true, 743 | "has_wiki": true, 744 | "has_pages": false, 745 | "forks_count": 2, 746 | "mirror_url": null, 747 | "archived": false, 748 | "open_issues_count": 0, 749 | "license": { 750 | "key": "mit", 751 | "name": "MIT License", 752 | "spdx_id": "MIT", 753 | "url": "https://api.github.com/licenses/mit" 754 | }, 755 | "forks": 2, 756 | "open_issues": 0, 757 | "watchers": 9, 758 | "default_branch": "master" 759 | }, 760 | { 761 | "id": 23384353, 762 | "name": "audioviz", 763 | "full_name": "roman01la/audioviz", 764 | "owner": { 765 | "login": "roman01la", 766 | "id": 1355501, 767 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 768 | "gravatar_id": "", 769 | "url": "https://api.github.com/users/roman01la", 770 | "html_url": "https://github.com/roman01la", 771 | "followers_url": "https://api.github.com/users/roman01la/followers", 772 | "following_url": 773 | "https://api.github.com/users/roman01la/following{/other_user}", 774 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 775 | "starred_url": 776 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 777 | "subscriptions_url": 778 | "https://api.github.com/users/roman01la/subscriptions", 779 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 780 | "repos_url": "https://api.github.com/users/roman01la/repos", 781 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 782 | "received_events_url": 783 | "https://api.github.com/users/roman01la/received_events", 784 | "type": "User", 785 | "site_admin": false 786 | }, 787 | "private": false, 788 | "html_url": "https://github.com/roman01la/audioviz", 789 | "description": null, 790 | "fork": false, 791 | "url": "https://api.github.com/repos/roman01la/audioviz", 792 | "forks_url": "https://api.github.com/repos/roman01la/audioviz/forks", 793 | "keys_url": "https://api.github.com/repos/roman01la/audioviz/keys{/key_id}", 794 | "collaborators_url": 795 | "https://api.github.com/repos/roman01la/audioviz/collaborators{/collaborator}", 796 | "teams_url": "https://api.github.com/repos/roman01la/audioviz/teams", 797 | "hooks_url": "https://api.github.com/repos/roman01la/audioviz/hooks", 798 | "issue_events_url": 799 | "https://api.github.com/repos/roman01la/audioviz/issues/events{/number}", 800 | "events_url": "https://api.github.com/repos/roman01la/audioviz/events", 801 | "assignees_url": 802 | "https://api.github.com/repos/roman01la/audioviz/assignees{/user}", 803 | "branches_url": 804 | "https://api.github.com/repos/roman01la/audioviz/branches{/branch}", 805 | "tags_url": "https://api.github.com/repos/roman01la/audioviz/tags", 806 | "blobs_url": 807 | "https://api.github.com/repos/roman01la/audioviz/git/blobs{/sha}", 808 | "git_tags_url": 809 | "https://api.github.com/repos/roman01la/audioviz/git/tags{/sha}", 810 | "git_refs_url": 811 | "https://api.github.com/repos/roman01la/audioviz/git/refs{/sha}", 812 | "trees_url": 813 | "https://api.github.com/repos/roman01la/audioviz/git/trees{/sha}", 814 | "statuses_url": 815 | "https://api.github.com/repos/roman01la/audioviz/statuses/{sha}", 816 | "languages_url": 817 | "https://api.github.com/repos/roman01la/audioviz/languages", 818 | "stargazers_url": 819 | "https://api.github.com/repos/roman01la/audioviz/stargazers", 820 | "contributors_url": 821 | "https://api.github.com/repos/roman01la/audioviz/contributors", 822 | "subscribers_url": 823 | "https://api.github.com/repos/roman01la/audioviz/subscribers", 824 | "subscription_url": 825 | "https://api.github.com/repos/roman01la/audioviz/subscription", 826 | "commits_url": 827 | "https://api.github.com/repos/roman01la/audioviz/commits{/sha}", 828 | "git_commits_url": 829 | "https://api.github.com/repos/roman01la/audioviz/git/commits{/sha}", 830 | "comments_url": 831 | "https://api.github.com/repos/roman01la/audioviz/comments{/number}", 832 | "issue_comment_url": 833 | "https://api.github.com/repos/roman01la/audioviz/issues/comments{/number}", 834 | "contents_url": 835 | "https://api.github.com/repos/roman01la/audioviz/contents/{+path}", 836 | "compare_url": 837 | "https://api.github.com/repos/roman01la/audioviz/compare/{base}...{head}", 838 | "merges_url": "https://api.github.com/repos/roman01la/audioviz/merges", 839 | "archive_url": 840 | "https://api.github.com/repos/roman01la/audioviz/{archive_format}{/ref}", 841 | "downloads_url": 842 | "https://api.github.com/repos/roman01la/audioviz/downloads", 843 | "issues_url": 844 | "https://api.github.com/repos/roman01la/audioviz/issues{/number}", 845 | "pulls_url": 846 | "https://api.github.com/repos/roman01la/audioviz/pulls{/number}", 847 | "milestones_url": 848 | "https://api.github.com/repos/roman01la/audioviz/milestones{/number}", 849 | "notifications_url": 850 | "https://api.github.com/repos/roman01la/audioviz/notifications{?since,all,participating}", 851 | "labels_url": 852 | "https://api.github.com/repos/roman01la/audioviz/labels{/name}", 853 | "releases_url": 854 | "https://api.github.com/repos/roman01la/audioviz/releases{/id}", 855 | "deployments_url": 856 | "https://api.github.com/repos/roman01la/audioviz/deployments", 857 | "created_at": "2014-08-27T09:34:41Z", 858 | "updated_at": "2015-03-29T12:14:19Z", 859 | "pushed_at": "2014-08-27T10:33:14Z", 860 | "git_url": "git://github.com/roman01la/audioviz.git", 861 | "ssh_url": "git@github.com:roman01la/audioviz.git", 862 | "clone_url": "https://github.com/roman01la/audioviz.git", 863 | "svn_url": "https://github.com/roman01la/audioviz", 864 | "homepage": null, 865 | "size": 120, 866 | "stargazers_count": 1, 867 | "watchers_count": 1, 868 | "language": "JavaScript", 869 | "has_issues": true, 870 | "has_projects": true, 871 | "has_downloads": true, 872 | "has_wiki": true, 873 | "has_pages": false, 874 | "forks_count": 0, 875 | "mirror_url": null, 876 | "archived": false, 877 | "open_issues_count": 0, 878 | "license": null, 879 | "forks": 0, 880 | "open_issues": 0, 881 | "watchers": 1, 882 | "default_branch": "master" 883 | }, 884 | { 885 | "id": 40026408, 886 | "name": "babel-plugin-inline", 887 | "full_name": "roman01la/babel-plugin-inline", 888 | "owner": { 889 | "login": "roman01la", 890 | "id": 1355501, 891 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 892 | "gravatar_id": "", 893 | "url": "https://api.github.com/users/roman01la", 894 | "html_url": "https://github.com/roman01la", 895 | "followers_url": "https://api.github.com/users/roman01la/followers", 896 | "following_url": 897 | "https://api.github.com/users/roman01la/following{/other_user}", 898 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 899 | "starred_url": 900 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 901 | "subscriptions_url": 902 | "https://api.github.com/users/roman01la/subscriptions", 903 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 904 | "repos_url": "https://api.github.com/users/roman01la/repos", 905 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 906 | "received_events_url": 907 | "https://api.github.com/users/roman01la/received_events", 908 | "type": "User", 909 | "site_admin": false 910 | }, 911 | "private": false, 912 | "html_url": "https://github.com/roman01la/babel-plugin-inline", 913 | "description": "Array map/filter/reduce inliner plugin", 914 | "fork": false, 915 | "url": "https://api.github.com/repos/roman01la/babel-plugin-inline", 916 | "forks_url": 917 | "https://api.github.com/repos/roman01la/babel-plugin-inline/forks", 918 | "keys_url": 919 | "https://api.github.com/repos/roman01la/babel-plugin-inline/keys{/key_id}", 920 | "collaborators_url": 921 | "https://api.github.com/repos/roman01la/babel-plugin-inline/collaborators{/collaborator}", 922 | "teams_url": 923 | "https://api.github.com/repos/roman01la/babel-plugin-inline/teams", 924 | "hooks_url": 925 | "https://api.github.com/repos/roman01la/babel-plugin-inline/hooks", 926 | "issue_events_url": 927 | "https://api.github.com/repos/roman01la/babel-plugin-inline/issues/events{/number}", 928 | "events_url": 929 | "https://api.github.com/repos/roman01la/babel-plugin-inline/events", 930 | "assignees_url": 931 | "https://api.github.com/repos/roman01la/babel-plugin-inline/assignees{/user}", 932 | "branches_url": 933 | "https://api.github.com/repos/roman01la/babel-plugin-inline/branches{/branch}", 934 | "tags_url": 935 | "https://api.github.com/repos/roman01la/babel-plugin-inline/tags", 936 | "blobs_url": 937 | "https://api.github.com/repos/roman01la/babel-plugin-inline/git/blobs{/sha}", 938 | "git_tags_url": 939 | "https://api.github.com/repos/roman01la/babel-plugin-inline/git/tags{/sha}", 940 | "git_refs_url": 941 | "https://api.github.com/repos/roman01la/babel-plugin-inline/git/refs{/sha}", 942 | "trees_url": 943 | "https://api.github.com/repos/roman01la/babel-plugin-inline/git/trees{/sha}", 944 | "statuses_url": 945 | "https://api.github.com/repos/roman01la/babel-plugin-inline/statuses/{sha}", 946 | "languages_url": 947 | "https://api.github.com/repos/roman01la/babel-plugin-inline/languages", 948 | "stargazers_url": 949 | "https://api.github.com/repos/roman01la/babel-plugin-inline/stargazers", 950 | "contributors_url": 951 | "https://api.github.com/repos/roman01la/babel-plugin-inline/contributors", 952 | "subscribers_url": 953 | "https://api.github.com/repos/roman01la/babel-plugin-inline/subscribers", 954 | "subscription_url": 955 | "https://api.github.com/repos/roman01la/babel-plugin-inline/subscription", 956 | "commits_url": 957 | "https://api.github.com/repos/roman01la/babel-plugin-inline/commits{/sha}", 958 | "git_commits_url": 959 | "https://api.github.com/repos/roman01la/babel-plugin-inline/git/commits{/sha}", 960 | "comments_url": 961 | "https://api.github.com/repos/roman01la/babel-plugin-inline/comments{/number}", 962 | "issue_comment_url": 963 | "https://api.github.com/repos/roman01la/babel-plugin-inline/issues/comments{/number}", 964 | "contents_url": 965 | "https://api.github.com/repos/roman01la/babel-plugin-inline/contents/{+path}", 966 | "compare_url": 967 | "https://api.github.com/repos/roman01la/babel-plugin-inline/compare/{base}...{head}", 968 | "merges_url": 969 | "https://api.github.com/repos/roman01la/babel-plugin-inline/merges", 970 | "archive_url": 971 | "https://api.github.com/repos/roman01la/babel-plugin-inline/{archive_format}{/ref}", 972 | "downloads_url": 973 | "https://api.github.com/repos/roman01la/babel-plugin-inline/downloads", 974 | "issues_url": 975 | "https://api.github.com/repos/roman01la/babel-plugin-inline/issues{/number}", 976 | "pulls_url": 977 | "https://api.github.com/repos/roman01la/babel-plugin-inline/pulls{/number}", 978 | "milestones_url": 979 | "https://api.github.com/repos/roman01la/babel-plugin-inline/milestones{/number}", 980 | "notifications_url": 981 | "https://api.github.com/repos/roman01la/babel-plugin-inline/notifications{?since,all,participating}", 982 | "labels_url": 983 | "https://api.github.com/repos/roman01la/babel-plugin-inline/labels{/name}", 984 | "releases_url": 985 | "https://api.github.com/repos/roman01la/babel-plugin-inline/releases{/id}", 986 | "deployments_url": 987 | "https://api.github.com/repos/roman01la/babel-plugin-inline/deployments", 988 | "created_at": "2015-07-31T21:55:48Z", 989 | "updated_at": "2017-05-09T12:24:04Z", 990 | "pushed_at": "2016-04-04T10:42:01Z", 991 | "git_url": "git://github.com/roman01la/babel-plugin-inline.git", 992 | "ssh_url": "git@github.com:roman01la/babel-plugin-inline.git", 993 | "clone_url": "https://github.com/roman01la/babel-plugin-inline.git", 994 | "svn_url": "https://github.com/roman01la/babel-plugin-inline", 995 | "homepage": null, 996 | "size": 5, 997 | "stargazers_count": 4, 998 | "watchers_count": 4, 999 | "language": "JavaScript", 1000 | "has_issues": true, 1001 | "has_projects": true, 1002 | "has_downloads": true, 1003 | "has_wiki": true, 1004 | "has_pages": false, 1005 | "forks_count": 0, 1006 | "mirror_url": null, 1007 | "archived": false, 1008 | "open_issues_count": 0, 1009 | "license": { 1010 | "key": "mit", 1011 | "name": "MIT License", 1012 | "spdx_id": "MIT", 1013 | "url": "https://api.github.com/licenses/mit" 1014 | }, 1015 | "forks": 0, 1016 | "open_issues": 0, 1017 | "watchers": 4, 1018 | "default_branch": "master" 1019 | }, 1020 | { 1021 | "id": 88636757, 1022 | "name": "babel-plugin-react-hyperscript", 1023 | "full_name": "roman01la/babel-plugin-react-hyperscript", 1024 | "owner": { 1025 | "login": "roman01la", 1026 | "id": 1355501, 1027 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 1028 | "gravatar_id": "", 1029 | "url": "https://api.github.com/users/roman01la", 1030 | "html_url": "https://github.com/roman01la", 1031 | "followers_url": "https://api.github.com/users/roman01la/followers", 1032 | "following_url": 1033 | "https://api.github.com/users/roman01la/following{/other_user}", 1034 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 1035 | "starred_url": 1036 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 1037 | "subscriptions_url": 1038 | "https://api.github.com/users/roman01la/subscriptions", 1039 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 1040 | "repos_url": "https://api.github.com/users/roman01la/repos", 1041 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 1042 | "received_events_url": 1043 | "https://api.github.com/users/roman01la/received_events", 1044 | "type": "User", 1045 | "site_admin": false 1046 | }, 1047 | "private": false, 1048 | "html_url": "https://github.com/roman01la/babel-plugin-react-hyperscript", 1049 | "description": 1050 | "HyperScript syntax for React components without runtime overhead", 1051 | "fork": false, 1052 | "url": 1053 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript", 1054 | "forks_url": 1055 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/forks", 1056 | "keys_url": 1057 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/keys{/key_id}", 1058 | "collaborators_url": 1059 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/collaborators{/collaborator}", 1060 | "teams_url": 1061 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/teams", 1062 | "hooks_url": 1063 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/hooks", 1064 | "issue_events_url": 1065 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/issues/events{/number}", 1066 | "events_url": 1067 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/events", 1068 | "assignees_url": 1069 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/assignees{/user}", 1070 | "branches_url": 1071 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/branches{/branch}", 1072 | "tags_url": 1073 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/tags", 1074 | "blobs_url": 1075 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/git/blobs{/sha}", 1076 | "git_tags_url": 1077 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/git/tags{/sha}", 1078 | "git_refs_url": 1079 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/git/refs{/sha}", 1080 | "trees_url": 1081 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/git/trees{/sha}", 1082 | "statuses_url": 1083 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/statuses/{sha}", 1084 | "languages_url": 1085 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/languages", 1086 | "stargazers_url": 1087 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/stargazers", 1088 | "contributors_url": 1089 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/contributors", 1090 | "subscribers_url": 1091 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/subscribers", 1092 | "subscription_url": 1093 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/subscription", 1094 | "commits_url": 1095 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/commits{/sha}", 1096 | "git_commits_url": 1097 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/git/commits{/sha}", 1098 | "comments_url": 1099 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/comments{/number}", 1100 | "issue_comment_url": 1101 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/issues/comments{/number}", 1102 | "contents_url": 1103 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/contents/{+path}", 1104 | "compare_url": 1105 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/compare/{base}...{head}", 1106 | "merges_url": 1107 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/merges", 1108 | "archive_url": 1109 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/{archive_format}{/ref}", 1110 | "downloads_url": 1111 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/downloads", 1112 | "issues_url": 1113 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/issues{/number}", 1114 | "pulls_url": 1115 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/pulls{/number}", 1116 | "milestones_url": 1117 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/milestones{/number}", 1118 | "notifications_url": 1119 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/notifications{?since,all,participating}", 1120 | "labels_url": 1121 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/labels{/name}", 1122 | "releases_url": 1123 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/releases{/id}", 1124 | "deployments_url": 1125 | "https://api.github.com/repos/roman01la/babel-plugin-react-hyperscript/deployments", 1126 | "created_at": "2017-04-18T14:49:03Z", 1127 | "updated_at": "2018-01-15T03:38:28Z", 1128 | "pushed_at": "2017-07-28T04:48:12Z", 1129 | "git_url": "git://github.com/roman01la/babel-plugin-react-hyperscript.git", 1130 | "ssh_url": "git@github.com:roman01la/babel-plugin-react-hyperscript.git", 1131 | "clone_url": 1132 | "https://github.com/roman01la/babel-plugin-react-hyperscript.git", 1133 | "svn_url": "https://github.com/roman01la/babel-plugin-react-hyperscript", 1134 | "homepage": "", 1135 | "size": 21, 1136 | "stargazers_count": 15, 1137 | "watchers_count": 15, 1138 | "language": "JavaScript", 1139 | "has_issues": true, 1140 | "has_projects": true, 1141 | "has_downloads": true, 1142 | "has_wiki": true, 1143 | "has_pages": false, 1144 | "forks_count": 0, 1145 | "mirror_url": null, 1146 | "archived": false, 1147 | "open_issues_count": 0, 1148 | "license": { 1149 | "key": "mit", 1150 | "name": "MIT License", 1151 | "spdx_id": "MIT", 1152 | "url": "https://api.github.com/licenses/mit" 1153 | }, 1154 | "forks": 0, 1155 | "open_issues": 0, 1156 | "watchers": 15, 1157 | "default_branch": "master" 1158 | }, 1159 | { 1160 | "id": 87669669, 1161 | "name": "babel-plugin-stateful-functional-react-components", 1162 | "full_name": "roman01la/babel-plugin-stateful-functional-react-components", 1163 | "owner": { 1164 | "login": "roman01la", 1165 | "id": 1355501, 1166 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 1167 | "gravatar_id": "", 1168 | "url": "https://api.github.com/users/roman01la", 1169 | "html_url": "https://github.com/roman01la", 1170 | "followers_url": "https://api.github.com/users/roman01la/followers", 1171 | "following_url": 1172 | "https://api.github.com/users/roman01la/following{/other_user}", 1173 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 1174 | "starred_url": 1175 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 1176 | "subscriptions_url": 1177 | "https://api.github.com/users/roman01la/subscriptions", 1178 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 1179 | "repos_url": "https://api.github.com/users/roman01la/repos", 1180 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 1181 | "received_events_url": 1182 | "https://api.github.com/users/roman01la/received_events", 1183 | "type": "User", 1184 | "site_admin": false 1185 | }, 1186 | "private": false, 1187 | "html_url": 1188 | "https://github.com/roman01la/babel-plugin-stateful-functional-react-components", 1189 | "description": 1190 | "Stateful functional React components without runtime overhead", 1191 | "fork": false, 1192 | "url": 1193 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components", 1194 | "forks_url": 1195 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/forks", 1196 | "keys_url": 1197 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/keys{/key_id}", 1198 | "collaborators_url": 1199 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/collaborators{/collaborator}", 1200 | "teams_url": 1201 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/teams", 1202 | "hooks_url": 1203 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/hooks", 1204 | "issue_events_url": 1205 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/issues/events{/number}", 1206 | "events_url": 1207 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/events", 1208 | "assignees_url": 1209 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/assignees{/user}", 1210 | "branches_url": 1211 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/branches{/branch}", 1212 | "tags_url": 1213 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/tags", 1214 | "blobs_url": 1215 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/git/blobs{/sha}", 1216 | "git_tags_url": 1217 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/git/tags{/sha}", 1218 | "git_refs_url": 1219 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/git/refs{/sha}", 1220 | "trees_url": 1221 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/git/trees{/sha}", 1222 | "statuses_url": 1223 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/statuses/{sha}", 1224 | "languages_url": 1225 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/languages", 1226 | "stargazers_url": 1227 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/stargazers", 1228 | "contributors_url": 1229 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/contributors", 1230 | "subscribers_url": 1231 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/subscribers", 1232 | "subscription_url": 1233 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/subscription", 1234 | "commits_url": 1235 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/commits{/sha}", 1236 | "git_commits_url": 1237 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/git/commits{/sha}", 1238 | "comments_url": 1239 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/comments{/number}", 1240 | "issue_comment_url": 1241 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/issues/comments{/number}", 1242 | "contents_url": 1243 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/contents/{+path}", 1244 | "compare_url": 1245 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/compare/{base}...{head}", 1246 | "merges_url": 1247 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/merges", 1248 | "archive_url": 1249 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/{archive_format}{/ref}", 1250 | "downloads_url": 1251 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/downloads", 1252 | "issues_url": 1253 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/issues{/number}", 1254 | "pulls_url": 1255 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/pulls{/number}", 1256 | "milestones_url": 1257 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/milestones{/number}", 1258 | "notifications_url": 1259 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/notifications{?since,all,participating}", 1260 | "labels_url": 1261 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/labels{/name}", 1262 | "releases_url": 1263 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/releases{/id}", 1264 | "deployments_url": 1265 | "https://api.github.com/repos/roman01la/babel-plugin-stateful-functional-react-components/deployments", 1266 | "created_at": "2017-04-08T23:09:33Z", 1267 | "updated_at": "2018-01-22T12:09:25Z", 1268 | "pushed_at": "2017-06-02T16:11:17Z", 1269 | "git_url": 1270 | "git://github.com/roman01la/babel-plugin-stateful-functional-react-components.git", 1271 | "ssh_url": 1272 | "git@github.com:roman01la/babel-plugin-stateful-functional-react-components.git", 1273 | "clone_url": 1274 | "https://github.com/roman01la/babel-plugin-stateful-functional-react-components.git", 1275 | "svn_url": 1276 | "https://github.com/roman01la/babel-plugin-stateful-functional-react-components", 1277 | "homepage": "", 1278 | "size": 17, 1279 | "stargazers_count": 84, 1280 | "watchers_count": 84, 1281 | "language": "JavaScript", 1282 | "has_issues": true, 1283 | "has_projects": true, 1284 | "has_downloads": true, 1285 | "has_wiki": true, 1286 | "has_pages": false, 1287 | "forks_count": 4, 1288 | "mirror_url": null, 1289 | "archived": false, 1290 | "open_issues_count": 1, 1291 | "license": { 1292 | "key": "mit", 1293 | "name": "MIT License", 1294 | "spdx_id": "MIT", 1295 | "url": "https://api.github.com/licenses/mit" 1296 | }, 1297 | "forks": 4, 1298 | "open_issues": 1, 1299 | "watchers": 84, 1300 | "default_branch": "master" 1301 | }, 1302 | { 1303 | "id": 43596072, 1304 | "name": "chernihivjs.org.ua", 1305 | "full_name": "roman01la/chernihivjs.org.ua", 1306 | "owner": { 1307 | "login": "roman01la", 1308 | "id": 1355501, 1309 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 1310 | "gravatar_id": "", 1311 | "url": "https://api.github.com/users/roman01la", 1312 | "html_url": "https://github.com/roman01la", 1313 | "followers_url": "https://api.github.com/users/roman01la/followers", 1314 | "following_url": 1315 | "https://api.github.com/users/roman01la/following{/other_user}", 1316 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 1317 | "starred_url": 1318 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 1319 | "subscriptions_url": 1320 | "https://api.github.com/users/roman01la/subscriptions", 1321 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 1322 | "repos_url": "https://api.github.com/users/roman01la/repos", 1323 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 1324 | "received_events_url": 1325 | "https://api.github.com/users/roman01la/received_events", 1326 | "type": "User", 1327 | "site_admin": false 1328 | }, 1329 | "private": false, 1330 | "html_url": "https://github.com/roman01la/chernihivjs.org.ua", 1331 | "description": "chernihivjs.org.ua source", 1332 | "fork": false, 1333 | "url": "https://api.github.com/repos/roman01la/chernihivjs.org.ua", 1334 | "forks_url": 1335 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/forks", 1336 | "keys_url": 1337 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/keys{/key_id}", 1338 | "collaborators_url": 1339 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/collaborators{/collaborator}", 1340 | "teams_url": 1341 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/teams", 1342 | "hooks_url": 1343 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/hooks", 1344 | "issue_events_url": 1345 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/issues/events{/number}", 1346 | "events_url": 1347 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/events", 1348 | "assignees_url": 1349 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/assignees{/user}", 1350 | "branches_url": 1351 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/branches{/branch}", 1352 | "tags_url": 1353 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/tags", 1354 | "blobs_url": 1355 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/git/blobs{/sha}", 1356 | "git_tags_url": 1357 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/git/tags{/sha}", 1358 | "git_refs_url": 1359 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/git/refs{/sha}", 1360 | "trees_url": 1361 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/git/trees{/sha}", 1362 | "statuses_url": 1363 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/statuses/{sha}", 1364 | "languages_url": 1365 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/languages", 1366 | "stargazers_url": 1367 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/stargazers", 1368 | "contributors_url": 1369 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/contributors", 1370 | "subscribers_url": 1371 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/subscribers", 1372 | "subscription_url": 1373 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/subscription", 1374 | "commits_url": 1375 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/commits{/sha}", 1376 | "git_commits_url": 1377 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/git/commits{/sha}", 1378 | "comments_url": 1379 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/comments{/number}", 1380 | "issue_comment_url": 1381 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/issues/comments{/number}", 1382 | "contents_url": 1383 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/contents/{+path}", 1384 | "compare_url": 1385 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/compare/{base}...{head}", 1386 | "merges_url": 1387 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/merges", 1388 | "archive_url": 1389 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/{archive_format}{/ref}", 1390 | "downloads_url": 1391 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/downloads", 1392 | "issues_url": 1393 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/issues{/number}", 1394 | "pulls_url": 1395 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/pulls{/number}", 1396 | "milestones_url": 1397 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/milestones{/number}", 1398 | "notifications_url": 1399 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/notifications{?since,all,participating}", 1400 | "labels_url": 1401 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/labels{/name}", 1402 | "releases_url": 1403 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/releases{/id}", 1404 | "deployments_url": 1405 | "https://api.github.com/repos/roman01la/chernihivjs.org.ua/deployments", 1406 | "created_at": "2015-10-03T10:51:56Z", 1407 | "updated_at": "2016-01-14T16:32:03Z", 1408 | "pushed_at": "2016-04-22T19:24:51Z", 1409 | "git_url": "git://github.com/roman01la/chernihivjs.org.ua.git", 1410 | "ssh_url": "git@github.com:roman01la/chernihivjs.org.ua.git", 1411 | "clone_url": "https://github.com/roman01la/chernihivjs.org.ua.git", 1412 | "svn_url": "https://github.com/roman01la/chernihivjs.org.ua", 1413 | "homepage": "https://chernihivjs.org.ua", 1414 | "size": 390, 1415 | "stargazers_count": 0, 1416 | "watchers_count": 0, 1417 | "language": "HTML", 1418 | "has_issues": true, 1419 | "has_projects": true, 1420 | "has_downloads": true, 1421 | "has_wiki": false, 1422 | "has_pages": false, 1423 | "forks_count": 0, 1424 | "mirror_url": null, 1425 | "archived": false, 1426 | "open_issues_count": 0, 1427 | "license": null, 1428 | "forks": 0, 1429 | "open_issues": 0, 1430 | "watchers": 0, 1431 | "default_branch": "master" 1432 | }, 1433 | { 1434 | "id": 90241902, 1435 | "name": "chernivtsijs.github.io", 1436 | "full_name": "roman01la/chernivtsijs.github.io", 1437 | "owner": { 1438 | "login": "roman01la", 1439 | "id": 1355501, 1440 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 1441 | "gravatar_id": "", 1442 | "url": "https://api.github.com/users/roman01la", 1443 | "html_url": "https://github.com/roman01la", 1444 | "followers_url": "https://api.github.com/users/roman01la/followers", 1445 | "following_url": 1446 | "https://api.github.com/users/roman01la/following{/other_user}", 1447 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 1448 | "starred_url": 1449 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 1450 | "subscriptions_url": 1451 | "https://api.github.com/users/roman01la/subscriptions", 1452 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 1453 | "repos_url": "https://api.github.com/users/roman01la/repos", 1454 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 1455 | "received_events_url": 1456 | "https://api.github.com/users/roman01la/received_events", 1457 | "type": "User", 1458 | "site_admin": false 1459 | }, 1460 | "private": false, 1461 | "html_url": "https://github.com/roman01la/chernivtsijs.github.io", 1462 | "description": "Chernivtsi JavaScript Community", 1463 | "fork": true, 1464 | "url": "https://api.github.com/repos/roman01la/chernivtsijs.github.io", 1465 | "forks_url": 1466 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/forks", 1467 | "keys_url": 1468 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/keys{/key_id}", 1469 | "collaborators_url": 1470 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/collaborators{/collaborator}", 1471 | "teams_url": 1472 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/teams", 1473 | "hooks_url": 1474 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/hooks", 1475 | "issue_events_url": 1476 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/issues/events{/number}", 1477 | "events_url": 1478 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/events", 1479 | "assignees_url": 1480 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/assignees{/user}", 1481 | "branches_url": 1482 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/branches{/branch}", 1483 | "tags_url": 1484 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/tags", 1485 | "blobs_url": 1486 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/git/blobs{/sha}", 1487 | "git_tags_url": 1488 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/git/tags{/sha}", 1489 | "git_refs_url": 1490 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/git/refs{/sha}", 1491 | "trees_url": 1492 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/git/trees{/sha}", 1493 | "statuses_url": 1494 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/statuses/{sha}", 1495 | "languages_url": 1496 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/languages", 1497 | "stargazers_url": 1498 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/stargazers", 1499 | "contributors_url": 1500 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/contributors", 1501 | "subscribers_url": 1502 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/subscribers", 1503 | "subscription_url": 1504 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/subscription", 1505 | "commits_url": 1506 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/commits{/sha}", 1507 | "git_commits_url": 1508 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/git/commits{/sha}", 1509 | "comments_url": 1510 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/comments{/number}", 1511 | "issue_comment_url": 1512 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/issues/comments{/number}", 1513 | "contents_url": 1514 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/contents/{+path}", 1515 | "compare_url": 1516 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/compare/{base}...{head}", 1517 | "merges_url": 1518 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/merges", 1519 | "archive_url": 1520 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/{archive_format}{/ref}", 1521 | "downloads_url": 1522 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/downloads", 1523 | "issues_url": 1524 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/issues{/number}", 1525 | "pulls_url": 1526 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/pulls{/number}", 1527 | "milestones_url": 1528 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/milestones{/number}", 1529 | "notifications_url": 1530 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/notifications{?since,all,participating}", 1531 | "labels_url": 1532 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/labels{/name}", 1533 | "releases_url": 1534 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/releases{/id}", 1535 | "deployments_url": 1536 | "https://api.github.com/repos/roman01la/chernivtsijs.github.io/deployments", 1537 | "created_at": "2017-05-04T08:51:35Z", 1538 | "updated_at": "2017-05-04T08:51:37Z", 1539 | "pushed_at": "2017-05-04T08:53:25Z", 1540 | "git_url": "git://github.com/roman01la/chernivtsijs.github.io.git", 1541 | "ssh_url": "git@github.com:roman01la/chernivtsijs.github.io.git", 1542 | "clone_url": "https://github.com/roman01la/chernivtsijs.github.io.git", 1543 | "svn_url": "https://github.com/roman01la/chernivtsijs.github.io", 1544 | "homepage": "http://chernivtsi.js.org/", 1545 | "size": 39641, 1546 | "stargazers_count": 0, 1547 | "watchers_count": 0, 1548 | "language": "HTML", 1549 | "has_issues": false, 1550 | "has_projects": true, 1551 | "has_downloads": true, 1552 | "has_wiki": false, 1553 | "has_pages": false, 1554 | "forks_count": 0, 1555 | "mirror_url": null, 1556 | "archived": false, 1557 | "open_issues_count": 0, 1558 | "license": null, 1559 | "forks": 0, 1560 | "open_issues": 0, 1561 | "watchers": 0, 1562 | "default_branch": "premaster" 1563 | }, 1564 | { 1565 | "id": 81373508, 1566 | "name": "citrus", 1567 | "full_name": "roman01la/citrus", 1568 | "owner": { 1569 | "login": "roman01la", 1570 | "id": 1355501, 1571 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 1572 | "gravatar_id": "", 1573 | "url": "https://api.github.com/users/roman01la", 1574 | "html_url": "https://github.com/roman01la", 1575 | "followers_url": "https://api.github.com/users/roman01la/followers", 1576 | "following_url": 1577 | "https://api.github.com/users/roman01la/following{/other_user}", 1578 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 1579 | "starred_url": 1580 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 1581 | "subscriptions_url": 1582 | "https://api.github.com/users/roman01la/subscriptions", 1583 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 1584 | "repos_url": "https://api.github.com/users/roman01la/repos", 1585 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 1586 | "received_events_url": 1587 | "https://api.github.com/users/roman01la/received_events", 1588 | "type": "User", 1589 | "site_admin": false 1590 | }, 1591 | "private": false, 1592 | "html_url": "https://github.com/roman01la/citrus", 1593 | "description": "State management library for Rum", 1594 | "fork": false, 1595 | "url": "https://api.github.com/repos/roman01la/citrus", 1596 | "forks_url": "https://api.github.com/repos/roman01la/citrus/forks", 1597 | "keys_url": "https://api.github.com/repos/roman01la/citrus/keys{/key_id}", 1598 | "collaborators_url": 1599 | "https://api.github.com/repos/roman01la/citrus/collaborators{/collaborator}", 1600 | "teams_url": "https://api.github.com/repos/roman01la/citrus/teams", 1601 | "hooks_url": "https://api.github.com/repos/roman01la/citrus/hooks", 1602 | "issue_events_url": 1603 | "https://api.github.com/repos/roman01la/citrus/issues/events{/number}", 1604 | "events_url": "https://api.github.com/repos/roman01la/citrus/events", 1605 | "assignees_url": 1606 | "https://api.github.com/repos/roman01la/citrus/assignees{/user}", 1607 | "branches_url": 1608 | "https://api.github.com/repos/roman01la/citrus/branches{/branch}", 1609 | "tags_url": "https://api.github.com/repos/roman01la/citrus/tags", 1610 | "blobs_url": 1611 | "https://api.github.com/repos/roman01la/citrus/git/blobs{/sha}", 1612 | "git_tags_url": 1613 | "https://api.github.com/repos/roman01la/citrus/git/tags{/sha}", 1614 | "git_refs_url": 1615 | "https://api.github.com/repos/roman01la/citrus/git/refs{/sha}", 1616 | "trees_url": 1617 | "https://api.github.com/repos/roman01la/citrus/git/trees{/sha}", 1618 | "statuses_url": 1619 | "https://api.github.com/repos/roman01la/citrus/statuses/{sha}", 1620 | "languages_url": "https://api.github.com/repos/roman01la/citrus/languages", 1621 | "stargazers_url": 1622 | "https://api.github.com/repos/roman01la/citrus/stargazers", 1623 | "contributors_url": 1624 | "https://api.github.com/repos/roman01la/citrus/contributors", 1625 | "subscribers_url": 1626 | "https://api.github.com/repos/roman01la/citrus/subscribers", 1627 | "subscription_url": 1628 | "https://api.github.com/repos/roman01la/citrus/subscription", 1629 | "commits_url": 1630 | "https://api.github.com/repos/roman01la/citrus/commits{/sha}", 1631 | "git_commits_url": 1632 | "https://api.github.com/repos/roman01la/citrus/git/commits{/sha}", 1633 | "comments_url": 1634 | "https://api.github.com/repos/roman01la/citrus/comments{/number}", 1635 | "issue_comment_url": 1636 | "https://api.github.com/repos/roman01la/citrus/issues/comments{/number}", 1637 | "contents_url": 1638 | "https://api.github.com/repos/roman01la/citrus/contents/{+path}", 1639 | "compare_url": 1640 | "https://api.github.com/repos/roman01la/citrus/compare/{base}...{head}", 1641 | "merges_url": "https://api.github.com/repos/roman01la/citrus/merges", 1642 | "archive_url": 1643 | "https://api.github.com/repos/roman01la/citrus/{archive_format}{/ref}", 1644 | "downloads_url": "https://api.github.com/repos/roman01la/citrus/downloads", 1645 | "issues_url": 1646 | "https://api.github.com/repos/roman01la/citrus/issues{/number}", 1647 | "pulls_url": "https://api.github.com/repos/roman01la/citrus/pulls{/number}", 1648 | "milestones_url": 1649 | "https://api.github.com/repos/roman01la/citrus/milestones{/number}", 1650 | "notifications_url": 1651 | "https://api.github.com/repos/roman01la/citrus/notifications{?since,all,participating}", 1652 | "labels_url": "https://api.github.com/repos/roman01la/citrus/labels{/name}", 1653 | "releases_url": 1654 | "https://api.github.com/repos/roman01la/citrus/releases{/id}", 1655 | "deployments_url": 1656 | "https://api.github.com/repos/roman01la/citrus/deployments", 1657 | "created_at": "2017-02-08T20:37:04Z", 1658 | "updated_at": "2018-02-17T19:36:51Z", 1659 | "pushed_at": "2018-02-15T16:01:55Z", 1660 | "git_url": "git://github.com/roman01la/citrus.git", 1661 | "ssh_url": "git@github.com:roman01la/citrus.git", 1662 | "clone_url": "https://github.com/roman01la/citrus.git", 1663 | "svn_url": "https://github.com/roman01la/citrus", 1664 | "homepage": "", 1665 | "size": 199, 1666 | "stargazers_count": 148, 1667 | "watchers_count": 148, 1668 | "language": "Clojure", 1669 | "has_issues": true, 1670 | "has_projects": true, 1671 | "has_downloads": true, 1672 | "has_wiki": true, 1673 | "has_pages": false, 1674 | "forks_count": 12, 1675 | "mirror_url": null, 1676 | "archived": false, 1677 | "open_issues_count": 5, 1678 | "license": { 1679 | "key": "epl-1.0", 1680 | "name": "Eclipse Public License 1.0", 1681 | "spdx_id": "EPL-1.0", 1682 | "url": "https://api.github.com/licenses/epl-1.0" 1683 | }, 1684 | "forks": 12, 1685 | "open_issues": 5, 1686 | "watchers": 148, 1687 | "default_branch": "master" 1688 | }, 1689 | { 1690 | "id": 52201110, 1691 | "name": "cityjs-list", 1692 | "full_name": "roman01la/cityjs-list", 1693 | "owner": { 1694 | "login": "roman01la", 1695 | "id": 1355501, 1696 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 1697 | "gravatar_id": "", 1698 | "url": "https://api.github.com/users/roman01la", 1699 | "html_url": "https://github.com/roman01la", 1700 | "followers_url": "https://api.github.com/users/roman01la/followers", 1701 | "following_url": 1702 | "https://api.github.com/users/roman01la/following{/other_user}", 1703 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 1704 | "starred_url": 1705 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 1706 | "subscriptions_url": 1707 | "https://api.github.com/users/roman01la/subscriptions", 1708 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 1709 | "repos_url": "https://api.github.com/users/roman01la/repos", 1710 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 1711 | "received_events_url": 1712 | "https://api.github.com/users/roman01la/received_events", 1713 | "type": "User", 1714 | "site_admin": false 1715 | }, 1716 | "private": false, 1717 | "html_url": "https://github.com/roman01la/cityjs-list", 1718 | "description": "Список сообществ CityJS", 1719 | "fork": true, 1720 | "url": "https://api.github.com/repos/roman01la/cityjs-list", 1721 | "forks_url": "https://api.github.com/repos/roman01la/cityjs-list/forks", 1722 | "keys_url": 1723 | "https://api.github.com/repos/roman01la/cityjs-list/keys{/key_id}", 1724 | "collaborators_url": 1725 | "https://api.github.com/repos/roman01la/cityjs-list/collaborators{/collaborator}", 1726 | "teams_url": "https://api.github.com/repos/roman01la/cityjs-list/teams", 1727 | "hooks_url": "https://api.github.com/repos/roman01la/cityjs-list/hooks", 1728 | "issue_events_url": 1729 | "https://api.github.com/repos/roman01la/cityjs-list/issues/events{/number}", 1730 | "events_url": "https://api.github.com/repos/roman01la/cityjs-list/events", 1731 | "assignees_url": 1732 | "https://api.github.com/repos/roman01la/cityjs-list/assignees{/user}", 1733 | "branches_url": 1734 | "https://api.github.com/repos/roman01la/cityjs-list/branches{/branch}", 1735 | "tags_url": "https://api.github.com/repos/roman01la/cityjs-list/tags", 1736 | "blobs_url": 1737 | "https://api.github.com/repos/roman01la/cityjs-list/git/blobs{/sha}", 1738 | "git_tags_url": 1739 | "https://api.github.com/repos/roman01la/cityjs-list/git/tags{/sha}", 1740 | "git_refs_url": 1741 | "https://api.github.com/repos/roman01la/cityjs-list/git/refs{/sha}", 1742 | "trees_url": 1743 | "https://api.github.com/repos/roman01la/cityjs-list/git/trees{/sha}", 1744 | "statuses_url": 1745 | "https://api.github.com/repos/roman01la/cityjs-list/statuses/{sha}", 1746 | "languages_url": 1747 | "https://api.github.com/repos/roman01la/cityjs-list/languages", 1748 | "stargazers_url": 1749 | "https://api.github.com/repos/roman01la/cityjs-list/stargazers", 1750 | "contributors_url": 1751 | "https://api.github.com/repos/roman01la/cityjs-list/contributors", 1752 | "subscribers_url": 1753 | "https://api.github.com/repos/roman01la/cityjs-list/subscribers", 1754 | "subscription_url": 1755 | "https://api.github.com/repos/roman01la/cityjs-list/subscription", 1756 | "commits_url": 1757 | "https://api.github.com/repos/roman01la/cityjs-list/commits{/sha}", 1758 | "git_commits_url": 1759 | "https://api.github.com/repos/roman01la/cityjs-list/git/commits{/sha}", 1760 | "comments_url": 1761 | "https://api.github.com/repos/roman01la/cityjs-list/comments{/number}", 1762 | "issue_comment_url": 1763 | "https://api.github.com/repos/roman01la/cityjs-list/issues/comments{/number}", 1764 | "contents_url": 1765 | "https://api.github.com/repos/roman01la/cityjs-list/contents/{+path}", 1766 | "compare_url": 1767 | "https://api.github.com/repos/roman01la/cityjs-list/compare/{base}...{head}", 1768 | "merges_url": "https://api.github.com/repos/roman01la/cityjs-list/merges", 1769 | "archive_url": 1770 | "https://api.github.com/repos/roman01la/cityjs-list/{archive_format}{/ref}", 1771 | "downloads_url": 1772 | "https://api.github.com/repos/roman01la/cityjs-list/downloads", 1773 | "issues_url": 1774 | "https://api.github.com/repos/roman01la/cityjs-list/issues{/number}", 1775 | "pulls_url": 1776 | "https://api.github.com/repos/roman01la/cityjs-list/pulls{/number}", 1777 | "milestones_url": 1778 | "https://api.github.com/repos/roman01la/cityjs-list/milestones{/number}", 1779 | "notifications_url": 1780 | "https://api.github.com/repos/roman01la/cityjs-list/notifications{?since,all,participating}", 1781 | "labels_url": 1782 | "https://api.github.com/repos/roman01la/cityjs-list/labels{/name}", 1783 | "releases_url": 1784 | "https://api.github.com/repos/roman01la/cityjs-list/releases{/id}", 1785 | "deployments_url": 1786 | "https://api.github.com/repos/roman01la/cityjs-list/deployments", 1787 | "created_at": "2016-02-21T10:20:41Z", 1788 | "updated_at": "2016-01-31T12:46:00Z", 1789 | "pushed_at": "2016-02-21T10:27:28Z", 1790 | "git_url": "git://github.com/roman01la/cityjs-list.git", 1791 | "ssh_url": "git@github.com:roman01la/cityjs-list.git", 1792 | "clone_url": "https://github.com/roman01la/cityjs-list.git", 1793 | "svn_url": "https://github.com/roman01la/cityjs-list", 1794 | "homepage": null, 1795 | "size": 16, 1796 | "stargazers_count": 0, 1797 | "watchers_count": 0, 1798 | "language": null, 1799 | "has_issues": false, 1800 | "has_projects": true, 1801 | "has_downloads": true, 1802 | "has_wiki": false, 1803 | "has_pages": false, 1804 | "forks_count": 0, 1805 | "mirror_url": null, 1806 | "archived": false, 1807 | "open_issues_count": 0, 1808 | "license": null, 1809 | "forks": 0, 1810 | "open_issues": 0, 1811 | "watchers": 0, 1812 | "default_branch": "master" 1813 | }, 1814 | { 1815 | "id": 119588400, 1816 | "name": "cljdoc", 1817 | "full_name": "roman01la/cljdoc", 1818 | "owner": { 1819 | "login": "roman01la", 1820 | "id": 1355501, 1821 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 1822 | "gravatar_id": "", 1823 | "url": "https://api.github.com/users/roman01la", 1824 | "html_url": "https://github.com/roman01la", 1825 | "followers_url": "https://api.github.com/users/roman01la/followers", 1826 | "following_url": 1827 | "https://api.github.com/users/roman01la/following{/other_user}", 1828 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 1829 | "starred_url": 1830 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 1831 | "subscriptions_url": 1832 | "https://api.github.com/users/roman01la/subscriptions", 1833 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 1834 | "repos_url": "https://api.github.com/users/roman01la/repos", 1835 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 1836 | "received_events_url": 1837 | "https://api.github.com/users/roman01la/received_events", 1838 | "type": "User", 1839 | "site_admin": false 1840 | }, 1841 | "private": false, 1842 | "html_url": "https://github.com/roman01la/cljdoc", 1843 | "description": 1844 | "A future central documentation hub for the Clojure community 🙌", 1845 | "fork": true, 1846 | "url": "https://api.github.com/repos/roman01la/cljdoc", 1847 | "forks_url": "https://api.github.com/repos/roman01la/cljdoc/forks", 1848 | "keys_url": "https://api.github.com/repos/roman01la/cljdoc/keys{/key_id}", 1849 | "collaborators_url": 1850 | "https://api.github.com/repos/roman01la/cljdoc/collaborators{/collaborator}", 1851 | "teams_url": "https://api.github.com/repos/roman01la/cljdoc/teams", 1852 | "hooks_url": "https://api.github.com/repos/roman01la/cljdoc/hooks", 1853 | "issue_events_url": 1854 | "https://api.github.com/repos/roman01la/cljdoc/issues/events{/number}", 1855 | "events_url": "https://api.github.com/repos/roman01la/cljdoc/events", 1856 | "assignees_url": 1857 | "https://api.github.com/repos/roman01la/cljdoc/assignees{/user}", 1858 | "branches_url": 1859 | "https://api.github.com/repos/roman01la/cljdoc/branches{/branch}", 1860 | "tags_url": "https://api.github.com/repos/roman01la/cljdoc/tags", 1861 | "blobs_url": 1862 | "https://api.github.com/repos/roman01la/cljdoc/git/blobs{/sha}", 1863 | "git_tags_url": 1864 | "https://api.github.com/repos/roman01la/cljdoc/git/tags{/sha}", 1865 | "git_refs_url": 1866 | "https://api.github.com/repos/roman01la/cljdoc/git/refs{/sha}", 1867 | "trees_url": 1868 | "https://api.github.com/repos/roman01la/cljdoc/git/trees{/sha}", 1869 | "statuses_url": 1870 | "https://api.github.com/repos/roman01la/cljdoc/statuses/{sha}", 1871 | "languages_url": "https://api.github.com/repos/roman01la/cljdoc/languages", 1872 | "stargazers_url": 1873 | "https://api.github.com/repos/roman01la/cljdoc/stargazers", 1874 | "contributors_url": 1875 | "https://api.github.com/repos/roman01la/cljdoc/contributors", 1876 | "subscribers_url": 1877 | "https://api.github.com/repos/roman01la/cljdoc/subscribers", 1878 | "subscription_url": 1879 | "https://api.github.com/repos/roman01la/cljdoc/subscription", 1880 | "commits_url": 1881 | "https://api.github.com/repos/roman01la/cljdoc/commits{/sha}", 1882 | "git_commits_url": 1883 | "https://api.github.com/repos/roman01la/cljdoc/git/commits{/sha}", 1884 | "comments_url": 1885 | "https://api.github.com/repos/roman01la/cljdoc/comments{/number}", 1886 | "issue_comment_url": 1887 | "https://api.github.com/repos/roman01la/cljdoc/issues/comments{/number}", 1888 | "contents_url": 1889 | "https://api.github.com/repos/roman01la/cljdoc/contents/{+path}", 1890 | "compare_url": 1891 | "https://api.github.com/repos/roman01la/cljdoc/compare/{base}...{head}", 1892 | "merges_url": "https://api.github.com/repos/roman01la/cljdoc/merges", 1893 | "archive_url": 1894 | "https://api.github.com/repos/roman01la/cljdoc/{archive_format}{/ref}", 1895 | "downloads_url": "https://api.github.com/repos/roman01la/cljdoc/downloads", 1896 | "issues_url": 1897 | "https://api.github.com/repos/roman01la/cljdoc/issues{/number}", 1898 | "pulls_url": "https://api.github.com/repos/roman01la/cljdoc/pulls{/number}", 1899 | "milestones_url": 1900 | "https://api.github.com/repos/roman01la/cljdoc/milestones{/number}", 1901 | "notifications_url": 1902 | "https://api.github.com/repos/roman01la/cljdoc/notifications{?since,all,participating}", 1903 | "labels_url": "https://api.github.com/repos/roman01la/cljdoc/labels{/name}", 1904 | "releases_url": 1905 | "https://api.github.com/repos/roman01la/cljdoc/releases{/id}", 1906 | "deployments_url": 1907 | "https://api.github.com/repos/roman01la/cljdoc/deployments", 1908 | "created_at": "2018-01-30T20:09:30Z", 1909 | "updated_at": "2018-01-30T20:09:31Z", 1910 | "pushed_at": "2018-01-30T21:45:56Z", 1911 | "git_url": "git://github.com/roman01la/cljdoc.git", 1912 | "ssh_url": "git@github.com:roman01la/cljdoc.git", 1913 | "clone_url": "https://github.com/roman01la/cljdoc.git", 1914 | "svn_url": "https://github.com/roman01la/cljdoc", 1915 | "homepage": "", 1916 | "size": 550, 1917 | "stargazers_count": 0, 1918 | "watchers_count": 0, 1919 | "language": "Clojure", 1920 | "has_issues": false, 1921 | "has_projects": true, 1922 | "has_downloads": true, 1923 | "has_wiki": true, 1924 | "has_pages": false, 1925 | "forks_count": 0, 1926 | "mirror_url": null, 1927 | "archived": false, 1928 | "open_issues_count": 0, 1929 | "license": null, 1930 | "forks": 0, 1931 | "open_issues": 0, 1932 | "watchers": 0, 1933 | "default_branch": "master" 1934 | }, 1935 | { 1936 | "id": 47409755, 1937 | "name": "cljs-for-js-devs", 1938 | "full_name": "roman01la/cljs-for-js-devs", 1939 | "owner": { 1940 | "login": "roman01la", 1941 | "id": 1355501, 1942 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 1943 | "gravatar_id": "", 1944 | "url": "https://api.github.com/users/roman01la", 1945 | "html_url": "https://github.com/roman01la", 1946 | "followers_url": "https://api.github.com/users/roman01la/followers", 1947 | "following_url": 1948 | "https://api.github.com/users/roman01la/following{/other_user}", 1949 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 1950 | "starred_url": 1951 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 1952 | "subscriptions_url": 1953 | "https://api.github.com/users/roman01la/subscriptions", 1954 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 1955 | "repos_url": "https://api.github.com/users/roman01la/repos", 1956 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 1957 | "received_events_url": 1958 | "https://api.github.com/users/roman01la/received_events", 1959 | "type": "User", 1960 | "site_admin": false 1961 | }, 1962 | "private": false, 1963 | "html_url": "https://github.com/roman01la/cljs-for-js-devs", 1964 | "description": 1965 | "Slides to the talk “ClojureScript for JavaScript developers”", 1966 | "fork": false, 1967 | "url": "https://api.github.com/repos/roman01la/cljs-for-js-devs", 1968 | "forks_url": 1969 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/forks", 1970 | "keys_url": 1971 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/keys{/key_id}", 1972 | "collaborators_url": 1973 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/collaborators{/collaborator}", 1974 | "teams_url": 1975 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/teams", 1976 | "hooks_url": 1977 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/hooks", 1978 | "issue_events_url": 1979 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/issues/events{/number}", 1980 | "events_url": 1981 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/events", 1982 | "assignees_url": 1983 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/assignees{/user}", 1984 | "branches_url": 1985 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/branches{/branch}", 1986 | "tags_url": "https://api.github.com/repos/roman01la/cljs-for-js-devs/tags", 1987 | "blobs_url": 1988 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/git/blobs{/sha}", 1989 | "git_tags_url": 1990 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/git/tags{/sha}", 1991 | "git_refs_url": 1992 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/git/refs{/sha}", 1993 | "trees_url": 1994 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/git/trees{/sha}", 1995 | "statuses_url": 1996 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/statuses/{sha}", 1997 | "languages_url": 1998 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/languages", 1999 | "stargazers_url": 2000 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/stargazers", 2001 | "contributors_url": 2002 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/contributors", 2003 | "subscribers_url": 2004 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/subscribers", 2005 | "subscription_url": 2006 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/subscription", 2007 | "commits_url": 2008 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/commits{/sha}", 2009 | "git_commits_url": 2010 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/git/commits{/sha}", 2011 | "comments_url": 2012 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/comments{/number}", 2013 | "issue_comment_url": 2014 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/issues/comments{/number}", 2015 | "contents_url": 2016 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/contents/{+path}", 2017 | "compare_url": 2018 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/compare/{base}...{head}", 2019 | "merges_url": 2020 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/merges", 2021 | "archive_url": 2022 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/{archive_format}{/ref}", 2023 | "downloads_url": 2024 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/downloads", 2025 | "issues_url": 2026 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/issues{/number}", 2027 | "pulls_url": 2028 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/pulls{/number}", 2029 | "milestones_url": 2030 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/milestones{/number}", 2031 | "notifications_url": 2032 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/notifications{?since,all,participating}", 2033 | "labels_url": 2034 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/labels{/name}", 2035 | "releases_url": 2036 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/releases{/id}", 2037 | "deployments_url": 2038 | "https://api.github.com/repos/roman01la/cljs-for-js-devs/deployments", 2039 | "created_at": "2015-12-04T14:48:18Z", 2040 | "updated_at": "2015-12-07T22:23:04Z", 2041 | "pushed_at": "2015-12-05T10:38:46Z", 2042 | "git_url": "git://github.com/roman01la/cljs-for-js-devs.git", 2043 | "ssh_url": "git@github.com:roman01la/cljs-for-js-devs.git", 2044 | "clone_url": "https://github.com/roman01la/cljs-for-js-devs.git", 2045 | "svn_url": "https://github.com/roman01la/cljs-for-js-devs", 2046 | "homepage": "http://roman01la.github.io/cljs-for-js-devs/", 2047 | "size": 282, 2048 | "stargazers_count": 0, 2049 | "watchers_count": 0, 2050 | "language": "HTML", 2051 | "has_issues": true, 2052 | "has_projects": true, 2053 | "has_downloads": true, 2054 | "has_wiki": true, 2055 | "has_pages": true, 2056 | "forks_count": 0, 2057 | "mirror_url": null, 2058 | "archived": false, 2059 | "open_issues_count": 0, 2060 | "license": null, 2061 | "forks": 0, 2062 | "open_issues": 0, 2063 | "watchers": 0, 2064 | "default_branch": "gh-pages" 2065 | }, 2066 | { 2067 | "id": 80299412, 2068 | "name": "cljs-npm-test", 2069 | "full_name": "roman01la/cljs-npm-test", 2070 | "owner": { 2071 | "login": "roman01la", 2072 | "id": 1355501, 2073 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 2074 | "gravatar_id": "", 2075 | "url": "https://api.github.com/users/roman01la", 2076 | "html_url": "https://github.com/roman01la", 2077 | "followers_url": "https://api.github.com/users/roman01la/followers", 2078 | "following_url": 2079 | "https://api.github.com/users/roman01la/following{/other_user}", 2080 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 2081 | "starred_url": 2082 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 2083 | "subscriptions_url": 2084 | "https://api.github.com/users/roman01la/subscriptions", 2085 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 2086 | "repos_url": "https://api.github.com/users/roman01la/repos", 2087 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 2088 | "received_events_url": 2089 | "https://api.github.com/users/roman01la/received_events", 2090 | "type": "User", 2091 | "site_admin": false 2092 | }, 2093 | "private": false, 2094 | "html_url": "https://github.com/roman01la/cljs-npm-test", 2095 | "description": null, 2096 | "fork": false, 2097 | "url": "https://api.github.com/repos/roman01la/cljs-npm-test", 2098 | "forks_url": "https://api.github.com/repos/roman01la/cljs-npm-test/forks", 2099 | "keys_url": 2100 | "https://api.github.com/repos/roman01la/cljs-npm-test/keys{/key_id}", 2101 | "collaborators_url": 2102 | "https://api.github.com/repos/roman01la/cljs-npm-test/collaborators{/collaborator}", 2103 | "teams_url": "https://api.github.com/repos/roman01la/cljs-npm-test/teams", 2104 | "hooks_url": "https://api.github.com/repos/roman01la/cljs-npm-test/hooks", 2105 | "issue_events_url": 2106 | "https://api.github.com/repos/roman01la/cljs-npm-test/issues/events{/number}", 2107 | "events_url": "https://api.github.com/repos/roman01la/cljs-npm-test/events", 2108 | "assignees_url": 2109 | "https://api.github.com/repos/roman01la/cljs-npm-test/assignees{/user}", 2110 | "branches_url": 2111 | "https://api.github.com/repos/roman01la/cljs-npm-test/branches{/branch}", 2112 | "tags_url": "https://api.github.com/repos/roman01la/cljs-npm-test/tags", 2113 | "blobs_url": 2114 | "https://api.github.com/repos/roman01la/cljs-npm-test/git/blobs{/sha}", 2115 | "git_tags_url": 2116 | "https://api.github.com/repos/roman01la/cljs-npm-test/git/tags{/sha}", 2117 | "git_refs_url": 2118 | "https://api.github.com/repos/roman01la/cljs-npm-test/git/refs{/sha}", 2119 | "trees_url": 2120 | "https://api.github.com/repos/roman01la/cljs-npm-test/git/trees{/sha}", 2121 | "statuses_url": 2122 | "https://api.github.com/repos/roman01la/cljs-npm-test/statuses/{sha}", 2123 | "languages_url": 2124 | "https://api.github.com/repos/roman01la/cljs-npm-test/languages", 2125 | "stargazers_url": 2126 | "https://api.github.com/repos/roman01la/cljs-npm-test/stargazers", 2127 | "contributors_url": 2128 | "https://api.github.com/repos/roman01la/cljs-npm-test/contributors", 2129 | "subscribers_url": 2130 | "https://api.github.com/repos/roman01la/cljs-npm-test/subscribers", 2131 | "subscription_url": 2132 | "https://api.github.com/repos/roman01la/cljs-npm-test/subscription", 2133 | "commits_url": 2134 | "https://api.github.com/repos/roman01la/cljs-npm-test/commits{/sha}", 2135 | "git_commits_url": 2136 | "https://api.github.com/repos/roman01la/cljs-npm-test/git/commits{/sha}", 2137 | "comments_url": 2138 | "https://api.github.com/repos/roman01la/cljs-npm-test/comments{/number}", 2139 | "issue_comment_url": 2140 | "https://api.github.com/repos/roman01la/cljs-npm-test/issues/comments{/number}", 2141 | "contents_url": 2142 | "https://api.github.com/repos/roman01la/cljs-npm-test/contents/{+path}", 2143 | "compare_url": 2144 | "https://api.github.com/repos/roman01la/cljs-npm-test/compare/{base}...{head}", 2145 | "merges_url": "https://api.github.com/repos/roman01la/cljs-npm-test/merges", 2146 | "archive_url": 2147 | "https://api.github.com/repos/roman01la/cljs-npm-test/{archive_format}{/ref}", 2148 | "downloads_url": 2149 | "https://api.github.com/repos/roman01la/cljs-npm-test/downloads", 2150 | "issues_url": 2151 | "https://api.github.com/repos/roman01la/cljs-npm-test/issues{/number}", 2152 | "pulls_url": 2153 | "https://api.github.com/repos/roman01la/cljs-npm-test/pulls{/number}", 2154 | "milestones_url": 2155 | "https://api.github.com/repos/roman01la/cljs-npm-test/milestones{/number}", 2156 | "notifications_url": 2157 | "https://api.github.com/repos/roman01la/cljs-npm-test/notifications{?since,all,participating}", 2158 | "labels_url": 2159 | "https://api.github.com/repos/roman01la/cljs-npm-test/labels{/name}", 2160 | "releases_url": 2161 | "https://api.github.com/repos/roman01la/cljs-npm-test/releases{/id}", 2162 | "deployments_url": 2163 | "https://api.github.com/repos/roman01la/cljs-npm-test/deployments", 2164 | "created_at": "2017-01-28T17:42:37Z", 2165 | "updated_at": "2017-05-24T15:00:25Z", 2166 | "pushed_at": "2017-01-28T17:45:23Z", 2167 | "git_url": "git://github.com/roman01la/cljs-npm-test.git", 2168 | "ssh_url": "git@github.com:roman01la/cljs-npm-test.git", 2169 | "clone_url": "https://github.com/roman01la/cljs-npm-test.git", 2170 | "svn_url": "https://github.com/roman01la/cljs-npm-test", 2171 | "homepage": null, 2172 | "size": 3, 2173 | "stargazers_count": 2, 2174 | "watchers_count": 2, 2175 | "language": "JavaScript", 2176 | "has_issues": true, 2177 | "has_projects": true, 2178 | "has_downloads": true, 2179 | "has_wiki": true, 2180 | "has_pages": false, 2181 | "forks_count": 0, 2182 | "mirror_url": null, 2183 | "archived": false, 2184 | "open_issues_count": 0, 2185 | "license": null, 2186 | "forks": 0, 2187 | "open_issues": 0, 2188 | "watchers": 2, 2189 | "default_branch": "master" 2190 | }, 2191 | { 2192 | "id": 92580626, 2193 | "name": "cljs-reagent-webpack", 2194 | "full_name": "roman01la/cljs-reagent-webpack", 2195 | "owner": { 2196 | "login": "roman01la", 2197 | "id": 1355501, 2198 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 2199 | "gravatar_id": "", 2200 | "url": "https://api.github.com/users/roman01la", 2201 | "html_url": "https://github.com/roman01la", 2202 | "followers_url": "https://api.github.com/users/roman01la/followers", 2203 | "following_url": 2204 | "https://api.github.com/users/roman01la/following{/other_user}", 2205 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 2206 | "starred_url": 2207 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 2208 | "subscriptions_url": 2209 | "https://api.github.com/users/roman01la/subscriptions", 2210 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 2211 | "repos_url": "https://api.github.com/users/roman01la/repos", 2212 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 2213 | "received_events_url": 2214 | "https://api.github.com/users/roman01la/received_events", 2215 | "type": "User", 2216 | "site_admin": false 2217 | }, 2218 | "private": false, 2219 | "html_url": "https://github.com/roman01la/cljs-reagent-webpack", 2220 | "description": null, 2221 | "fork": false, 2222 | "url": "https://api.github.com/repos/roman01la/cljs-reagent-webpack", 2223 | "forks_url": 2224 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/forks", 2225 | "keys_url": 2226 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/keys{/key_id}", 2227 | "collaborators_url": 2228 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/collaborators{/collaborator}", 2229 | "teams_url": 2230 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/teams", 2231 | "hooks_url": 2232 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/hooks", 2233 | "issue_events_url": 2234 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/issues/events{/number}", 2235 | "events_url": 2236 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/events", 2237 | "assignees_url": 2238 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/assignees{/user}", 2239 | "branches_url": 2240 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/branches{/branch}", 2241 | "tags_url": 2242 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/tags", 2243 | "blobs_url": 2244 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/git/blobs{/sha}", 2245 | "git_tags_url": 2246 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/git/tags{/sha}", 2247 | "git_refs_url": 2248 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/git/refs{/sha}", 2249 | "trees_url": 2250 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/git/trees{/sha}", 2251 | "statuses_url": 2252 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/statuses/{sha}", 2253 | "languages_url": 2254 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/languages", 2255 | "stargazers_url": 2256 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/stargazers", 2257 | "contributors_url": 2258 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/contributors", 2259 | "subscribers_url": 2260 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/subscribers", 2261 | "subscription_url": 2262 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/subscription", 2263 | "commits_url": 2264 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/commits{/sha}", 2265 | "git_commits_url": 2266 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/git/commits{/sha}", 2267 | "comments_url": 2268 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/comments{/number}", 2269 | "issue_comment_url": 2270 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/issues/comments{/number}", 2271 | "contents_url": 2272 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/contents/{+path}", 2273 | "compare_url": 2274 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/compare/{base}...{head}", 2275 | "merges_url": 2276 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/merges", 2277 | "archive_url": 2278 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/{archive_format}{/ref}", 2279 | "downloads_url": 2280 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/downloads", 2281 | "issues_url": 2282 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/issues{/number}", 2283 | "pulls_url": 2284 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/pulls{/number}", 2285 | "milestones_url": 2286 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/milestones{/number}", 2287 | "notifications_url": 2288 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/notifications{?since,all,participating}", 2289 | "labels_url": 2290 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/labels{/name}", 2291 | "releases_url": 2292 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/releases{/id}", 2293 | "deployments_url": 2294 | "https://api.github.com/repos/roman01la/cljs-reagent-webpack/deployments", 2295 | "created_at": "2017-05-27T07:33:58Z", 2296 | "updated_at": "2018-02-01T13:08:11Z", 2297 | "pushed_at": "2017-05-27T15:55:12Z", 2298 | "git_url": "git://github.com/roman01la/cljs-reagent-webpack.git", 2299 | "ssh_url": "git@github.com:roman01la/cljs-reagent-webpack.git", 2300 | "clone_url": "https://github.com/roman01la/cljs-reagent-webpack.git", 2301 | "svn_url": "https://github.com/roman01la/cljs-reagent-webpack", 2302 | "homepage": null, 2303 | "size": 14, 2304 | "stargazers_count": 17, 2305 | "watchers_count": 17, 2306 | "language": "CSS", 2307 | "has_issues": true, 2308 | "has_projects": true, 2309 | "has_downloads": true, 2310 | "has_wiki": true, 2311 | "has_pages": false, 2312 | "forks_count": 1, 2313 | "mirror_url": null, 2314 | "archived": false, 2315 | "open_issues_count": 0, 2316 | "license": null, 2317 | "forks": 1, 2318 | "open_issues": 0, 2319 | "watchers": 17, 2320 | "default_branch": "master" 2321 | }, 2322 | { 2323 | "id": 89483322, 2324 | "name": "cljs-rum-realworld-example-app", 2325 | "full_name": "roman01la/cljs-rum-realworld-example-app", 2326 | "owner": { 2327 | "login": "roman01la", 2328 | "id": 1355501, 2329 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 2330 | "gravatar_id": "", 2331 | "url": "https://api.github.com/users/roman01la", 2332 | "html_url": "https://github.com/roman01la", 2333 | "followers_url": "https://api.github.com/users/roman01la/followers", 2334 | "following_url": 2335 | "https://api.github.com/users/roman01la/following{/other_user}", 2336 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 2337 | "starred_url": 2338 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 2339 | "subscriptions_url": 2340 | "https://api.github.com/users/roman01la/subscriptions", 2341 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 2342 | "repos_url": "https://api.github.com/users/roman01la/repos", 2343 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 2344 | "received_events_url": 2345 | "https://api.github.com/users/roman01la/received_events", 2346 | "type": "User", 2347 | "site_admin": false 2348 | }, 2349 | "private": false, 2350 | "html_url": "https://github.com/roman01la/cljs-rum-realworld-example-app", 2351 | "description": 2352 | "ClojureScript + Rum codebase containing real world examples", 2353 | "fork": false, 2354 | "url": 2355 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app", 2356 | "forks_url": 2357 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/forks", 2358 | "keys_url": 2359 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/keys{/key_id}", 2360 | "collaborators_url": 2361 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/collaborators{/collaborator}", 2362 | "teams_url": 2363 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/teams", 2364 | "hooks_url": 2365 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/hooks", 2366 | "issue_events_url": 2367 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/issues/events{/number}", 2368 | "events_url": 2369 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/events", 2370 | "assignees_url": 2371 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/assignees{/user}", 2372 | "branches_url": 2373 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/branches{/branch}", 2374 | "tags_url": 2375 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/tags", 2376 | "blobs_url": 2377 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/git/blobs{/sha}", 2378 | "git_tags_url": 2379 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/git/tags{/sha}", 2380 | "git_refs_url": 2381 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/git/refs{/sha}", 2382 | "trees_url": 2383 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/git/trees{/sha}", 2384 | "statuses_url": 2385 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/statuses/{sha}", 2386 | "languages_url": 2387 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/languages", 2388 | "stargazers_url": 2389 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/stargazers", 2390 | "contributors_url": 2391 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/contributors", 2392 | "subscribers_url": 2393 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/subscribers", 2394 | "subscription_url": 2395 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/subscription", 2396 | "commits_url": 2397 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/commits{/sha}", 2398 | "git_commits_url": 2399 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/git/commits{/sha}", 2400 | "comments_url": 2401 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/comments{/number}", 2402 | "issue_comment_url": 2403 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/issues/comments{/number}", 2404 | "contents_url": 2405 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/contents/{+path}", 2406 | "compare_url": 2407 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/compare/{base}...{head}", 2408 | "merges_url": 2409 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/merges", 2410 | "archive_url": 2411 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/{archive_format}{/ref}", 2412 | "downloads_url": 2413 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/downloads", 2414 | "issues_url": 2415 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/issues{/number}", 2416 | "pulls_url": 2417 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/pulls{/number}", 2418 | "milestones_url": 2419 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/milestones{/number}", 2420 | "notifications_url": 2421 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/notifications{?since,all,participating}", 2422 | "labels_url": 2423 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/labels{/name}", 2424 | "releases_url": 2425 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/releases{/id}", 2426 | "deployments_url": 2427 | "https://api.github.com/repos/roman01la/cljs-rum-realworld-example-app/deployments", 2428 | "created_at": "2017-04-26T13:22:21Z", 2429 | "updated_at": "2018-01-19T21:58:57Z", 2430 | "pushed_at": "2017-12-24T09:16:16Z", 2431 | "git_url": "git://github.com/roman01la/cljs-rum-realworld-example-app.git", 2432 | "ssh_url": "git@github.com:roman01la/cljs-rum-realworld-example-app.git", 2433 | "clone_url": 2434 | "https://github.com/roman01la/cljs-rum-realworld-example-app.git", 2435 | "svn_url": "https://github.com/roman01la/cljs-rum-realworld-example-app", 2436 | "homepage": "", 2437 | "size": 114, 2438 | "stargazers_count": 26, 2439 | "watchers_count": 26, 2440 | "language": "Clojure", 2441 | "has_issues": true, 2442 | "has_projects": true, 2443 | "has_downloads": true, 2444 | "has_wiki": true, 2445 | "has_pages": false, 2446 | "forks_count": 3, 2447 | "mirror_url": null, 2448 | "archived": false, 2449 | "open_issues_count": 9, 2450 | "license": null, 2451 | "forks": 3, 2452 | "open_issues": 9, 2453 | "watchers": 26, 2454 | "default_branch": "master" 2455 | }, 2456 | { 2457 | "id": 56921303, 2458 | "name": "cljs-spa-libs-samples", 2459 | "full_name": "roman01la/cljs-spa-libs-samples", 2460 | "owner": { 2461 | "login": "roman01la", 2462 | "id": 1355501, 2463 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 2464 | "gravatar_id": "", 2465 | "url": "https://api.github.com/users/roman01la", 2466 | "html_url": "https://github.com/roman01la", 2467 | "followers_url": "https://api.github.com/users/roman01la/followers", 2468 | "following_url": 2469 | "https://api.github.com/users/roman01la/following{/other_user}", 2470 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 2471 | "starred_url": 2472 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 2473 | "subscriptions_url": 2474 | "https://api.github.com/users/roman01la/subscriptions", 2475 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 2476 | "repos_url": "https://api.github.com/users/roman01la/repos", 2477 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 2478 | "received_events_url": 2479 | "https://api.github.com/users/roman01la/received_events", 2480 | "type": "User", 2481 | "site_admin": false 2482 | }, 2483 | "private": false, 2484 | "html_url": "https://github.com/roman01la/cljs-spa-libs-samples", 2485 | "description": null, 2486 | "fork": false, 2487 | "url": "https://api.github.com/repos/roman01la/cljs-spa-libs-samples", 2488 | "forks_url": 2489 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/forks", 2490 | "keys_url": 2491 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/keys{/key_id}", 2492 | "collaborators_url": 2493 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/collaborators{/collaborator}", 2494 | "teams_url": 2495 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/teams", 2496 | "hooks_url": 2497 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/hooks", 2498 | "issue_events_url": 2499 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/issues/events{/number}", 2500 | "events_url": 2501 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/events", 2502 | "assignees_url": 2503 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/assignees{/user}", 2504 | "branches_url": 2505 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/branches{/branch}", 2506 | "tags_url": 2507 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/tags", 2508 | "blobs_url": 2509 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/git/blobs{/sha}", 2510 | "git_tags_url": 2511 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/git/tags{/sha}", 2512 | "git_refs_url": 2513 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/git/refs{/sha}", 2514 | "trees_url": 2515 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/git/trees{/sha}", 2516 | "statuses_url": 2517 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/statuses/{sha}", 2518 | "languages_url": 2519 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/languages", 2520 | "stargazers_url": 2521 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/stargazers", 2522 | "contributors_url": 2523 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/contributors", 2524 | "subscribers_url": 2525 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/subscribers", 2526 | "subscription_url": 2527 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/subscription", 2528 | "commits_url": 2529 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/commits{/sha}", 2530 | "git_commits_url": 2531 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/git/commits{/sha}", 2532 | "comments_url": 2533 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/comments{/number}", 2534 | "issue_comment_url": 2535 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/issues/comments{/number}", 2536 | "contents_url": 2537 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/contents/{+path}", 2538 | "compare_url": 2539 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/compare/{base}...{head}", 2540 | "merges_url": 2541 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/merges", 2542 | "archive_url": 2543 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/{archive_format}{/ref}", 2544 | "downloads_url": 2545 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/downloads", 2546 | "issues_url": 2547 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/issues{/number}", 2548 | "pulls_url": 2549 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/pulls{/number}", 2550 | "milestones_url": 2551 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/milestones{/number}", 2552 | "notifications_url": 2553 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/notifications{?since,all,participating}", 2554 | "labels_url": 2555 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/labels{/name}", 2556 | "releases_url": 2557 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/releases{/id}", 2558 | "deployments_url": 2559 | "https://api.github.com/repos/roman01la/cljs-spa-libs-samples/deployments", 2560 | "created_at": "2016-04-23T13:44:40Z", 2561 | "updated_at": "2016-04-23T13:45:02Z", 2562 | "pushed_at": "2016-04-26T19:50:54Z", 2563 | "git_url": "git://github.com/roman01la/cljs-spa-libs-samples.git", 2564 | "ssh_url": "git@github.com:roman01la/cljs-spa-libs-samples.git", 2565 | "clone_url": "https://github.com/roman01la/cljs-spa-libs-samples.git", 2566 | "svn_url": "https://github.com/roman01la/cljs-spa-libs-samples", 2567 | "homepage": null, 2568 | "size": 14, 2569 | "stargazers_count": 0, 2570 | "watchers_count": 0, 2571 | "language": "Clojure", 2572 | "has_issues": true, 2573 | "has_projects": true, 2574 | "has_downloads": true, 2575 | "has_wiki": true, 2576 | "has_pages": false, 2577 | "forks_count": 0, 2578 | "mirror_url": null, 2579 | "archived": false, 2580 | "open_issues_count": 0, 2581 | "license": { 2582 | "key": "epl-1.0", 2583 | "name": "Eclipse Public License 1.0", 2584 | "spdx_id": "EPL-1.0", 2585 | "url": "https://api.github.com/licenses/epl-1.0" 2586 | }, 2587 | "forks": 0, 2588 | "open_issues": 0, 2589 | "watchers": 0, 2590 | "default_branch": "rum" 2591 | }, 2592 | { 2593 | "id": 50077094, 2594 | "name": "cljs-starter", 2595 | "full_name": "roman01la/cljs-starter", 2596 | "owner": { 2597 | "login": "roman01la", 2598 | "id": 1355501, 2599 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 2600 | "gravatar_id": "", 2601 | "url": "https://api.github.com/users/roman01la", 2602 | "html_url": "https://github.com/roman01la", 2603 | "followers_url": "https://api.github.com/users/roman01la/followers", 2604 | "following_url": 2605 | "https://api.github.com/users/roman01la/following{/other_user}", 2606 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 2607 | "starred_url": 2608 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 2609 | "subscriptions_url": 2610 | "https://api.github.com/users/roman01la/subscriptions", 2611 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 2612 | "repos_url": "https://api.github.com/users/roman01la/repos", 2613 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 2614 | "received_events_url": 2615 | "https://api.github.com/users/roman01la/received_events", 2616 | "type": "User", 2617 | "site_admin": false 2618 | }, 2619 | "private": false, 2620 | "html_url": "https://github.com/roman01la/cljs-starter", 2621 | "description": null, 2622 | "fork": false, 2623 | "url": "https://api.github.com/repos/roman01la/cljs-starter", 2624 | "forks_url": "https://api.github.com/repos/roman01la/cljs-starter/forks", 2625 | "keys_url": 2626 | "https://api.github.com/repos/roman01la/cljs-starter/keys{/key_id}", 2627 | "collaborators_url": 2628 | "https://api.github.com/repos/roman01la/cljs-starter/collaborators{/collaborator}", 2629 | "teams_url": "https://api.github.com/repos/roman01la/cljs-starter/teams", 2630 | "hooks_url": "https://api.github.com/repos/roman01la/cljs-starter/hooks", 2631 | "issue_events_url": 2632 | "https://api.github.com/repos/roman01la/cljs-starter/issues/events{/number}", 2633 | "events_url": "https://api.github.com/repos/roman01la/cljs-starter/events", 2634 | "assignees_url": 2635 | "https://api.github.com/repos/roman01la/cljs-starter/assignees{/user}", 2636 | "branches_url": 2637 | "https://api.github.com/repos/roman01la/cljs-starter/branches{/branch}", 2638 | "tags_url": "https://api.github.com/repos/roman01la/cljs-starter/tags", 2639 | "blobs_url": 2640 | "https://api.github.com/repos/roman01la/cljs-starter/git/blobs{/sha}", 2641 | "git_tags_url": 2642 | "https://api.github.com/repos/roman01la/cljs-starter/git/tags{/sha}", 2643 | "git_refs_url": 2644 | "https://api.github.com/repos/roman01la/cljs-starter/git/refs{/sha}", 2645 | "trees_url": 2646 | "https://api.github.com/repos/roman01la/cljs-starter/git/trees{/sha}", 2647 | "statuses_url": 2648 | "https://api.github.com/repos/roman01la/cljs-starter/statuses/{sha}", 2649 | "languages_url": 2650 | "https://api.github.com/repos/roman01la/cljs-starter/languages", 2651 | "stargazers_url": 2652 | "https://api.github.com/repos/roman01la/cljs-starter/stargazers", 2653 | "contributors_url": 2654 | "https://api.github.com/repos/roman01la/cljs-starter/contributors", 2655 | "subscribers_url": 2656 | "https://api.github.com/repos/roman01la/cljs-starter/subscribers", 2657 | "subscription_url": 2658 | "https://api.github.com/repos/roman01la/cljs-starter/subscription", 2659 | "commits_url": 2660 | "https://api.github.com/repos/roman01la/cljs-starter/commits{/sha}", 2661 | "git_commits_url": 2662 | "https://api.github.com/repos/roman01la/cljs-starter/git/commits{/sha}", 2663 | "comments_url": 2664 | "https://api.github.com/repos/roman01la/cljs-starter/comments{/number}", 2665 | "issue_comment_url": 2666 | "https://api.github.com/repos/roman01la/cljs-starter/issues/comments{/number}", 2667 | "contents_url": 2668 | "https://api.github.com/repos/roman01la/cljs-starter/contents/{+path}", 2669 | "compare_url": 2670 | "https://api.github.com/repos/roman01la/cljs-starter/compare/{base}...{head}", 2671 | "merges_url": "https://api.github.com/repos/roman01la/cljs-starter/merges", 2672 | "archive_url": 2673 | "https://api.github.com/repos/roman01la/cljs-starter/{archive_format}{/ref}", 2674 | "downloads_url": 2675 | "https://api.github.com/repos/roman01la/cljs-starter/downloads", 2676 | "issues_url": 2677 | "https://api.github.com/repos/roman01la/cljs-starter/issues{/number}", 2678 | "pulls_url": 2679 | "https://api.github.com/repos/roman01la/cljs-starter/pulls{/number}", 2680 | "milestones_url": 2681 | "https://api.github.com/repos/roman01la/cljs-starter/milestones{/number}", 2682 | "notifications_url": 2683 | "https://api.github.com/repos/roman01la/cljs-starter/notifications{?since,all,participating}", 2684 | "labels_url": 2685 | "https://api.github.com/repos/roman01la/cljs-starter/labels{/name}", 2686 | "releases_url": 2687 | "https://api.github.com/repos/roman01la/cljs-starter/releases{/id}", 2688 | "deployments_url": 2689 | "https://api.github.com/repos/roman01la/cljs-starter/deployments", 2690 | "created_at": "2016-01-21T02:45:25Z", 2691 | "updated_at": "2016-03-12T13:45:06Z", 2692 | "pushed_at": "2016-03-13T17:12:51Z", 2693 | "git_url": "git://github.com/roman01la/cljs-starter.git", 2694 | "ssh_url": "git@github.com:roman01la/cljs-starter.git", 2695 | "clone_url": "https://github.com/roman01la/cljs-starter.git", 2696 | "svn_url": "https://github.com/roman01la/cljs-starter", 2697 | "homepage": null, 2698 | "size": 7, 2699 | "stargazers_count": 1, 2700 | "watchers_count": 1, 2701 | "language": "Clojure", 2702 | "has_issues": true, 2703 | "has_projects": true, 2704 | "has_downloads": true, 2705 | "has_wiki": true, 2706 | "has_pages": false, 2707 | "forks_count": 0, 2708 | "mirror_url": null, 2709 | "archived": false, 2710 | "open_issues_count": 0, 2711 | "license": null, 2712 | "forks": 0, 2713 | "open_issues": 0, 2714 | "watchers": 1, 2715 | "default_branch": "master" 2716 | }, 2717 | { 2718 | "id": 68304304, 2719 | "name": "cljsjs.github.io", 2720 | "full_name": "roman01la/cljsjs.github.io", 2721 | "owner": { 2722 | "login": "roman01la", 2723 | "id": 1355501, 2724 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 2725 | "gravatar_id": "", 2726 | "url": "https://api.github.com/users/roman01la", 2727 | "html_url": "https://github.com/roman01la", 2728 | "followers_url": "https://api.github.com/users/roman01la/followers", 2729 | "following_url": 2730 | "https://api.github.com/users/roman01la/following{/other_user}", 2731 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 2732 | "starred_url": 2733 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 2734 | "subscriptions_url": 2735 | "https://api.github.com/users/roman01la/subscriptions", 2736 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 2737 | "repos_url": "https://api.github.com/users/roman01la/repos", 2738 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 2739 | "received_events_url": 2740 | "https://api.github.com/users/roman01la/received_events", 2741 | "type": "User", 2742 | "site_admin": false 2743 | }, 2744 | "private": false, 2745 | "html_url": "https://github.com/roman01la/cljsjs.github.io", 2746 | "description": null, 2747 | "fork": true, 2748 | "url": "https://api.github.com/repos/roman01la/cljsjs.github.io", 2749 | "forks_url": 2750 | "https://api.github.com/repos/roman01la/cljsjs.github.io/forks", 2751 | "keys_url": 2752 | "https://api.github.com/repos/roman01la/cljsjs.github.io/keys{/key_id}", 2753 | "collaborators_url": 2754 | "https://api.github.com/repos/roman01la/cljsjs.github.io/collaborators{/collaborator}", 2755 | "teams_url": 2756 | "https://api.github.com/repos/roman01la/cljsjs.github.io/teams", 2757 | "hooks_url": 2758 | "https://api.github.com/repos/roman01la/cljsjs.github.io/hooks", 2759 | "issue_events_url": 2760 | "https://api.github.com/repos/roman01la/cljsjs.github.io/issues/events{/number}", 2761 | "events_url": 2762 | "https://api.github.com/repos/roman01la/cljsjs.github.io/events", 2763 | "assignees_url": 2764 | "https://api.github.com/repos/roman01la/cljsjs.github.io/assignees{/user}", 2765 | "branches_url": 2766 | "https://api.github.com/repos/roman01la/cljsjs.github.io/branches{/branch}", 2767 | "tags_url": "https://api.github.com/repos/roman01la/cljsjs.github.io/tags", 2768 | "blobs_url": 2769 | "https://api.github.com/repos/roman01la/cljsjs.github.io/git/blobs{/sha}", 2770 | "git_tags_url": 2771 | "https://api.github.com/repos/roman01la/cljsjs.github.io/git/tags{/sha}", 2772 | "git_refs_url": 2773 | "https://api.github.com/repos/roman01la/cljsjs.github.io/git/refs{/sha}", 2774 | "trees_url": 2775 | "https://api.github.com/repos/roman01la/cljsjs.github.io/git/trees{/sha}", 2776 | "statuses_url": 2777 | "https://api.github.com/repos/roman01la/cljsjs.github.io/statuses/{sha}", 2778 | "languages_url": 2779 | "https://api.github.com/repos/roman01la/cljsjs.github.io/languages", 2780 | "stargazers_url": 2781 | "https://api.github.com/repos/roman01la/cljsjs.github.io/stargazers", 2782 | "contributors_url": 2783 | "https://api.github.com/repos/roman01la/cljsjs.github.io/contributors", 2784 | "subscribers_url": 2785 | "https://api.github.com/repos/roman01la/cljsjs.github.io/subscribers", 2786 | "subscription_url": 2787 | "https://api.github.com/repos/roman01la/cljsjs.github.io/subscription", 2788 | "commits_url": 2789 | "https://api.github.com/repos/roman01la/cljsjs.github.io/commits{/sha}", 2790 | "git_commits_url": 2791 | "https://api.github.com/repos/roman01la/cljsjs.github.io/git/commits{/sha}", 2792 | "comments_url": 2793 | "https://api.github.com/repos/roman01la/cljsjs.github.io/comments{/number}", 2794 | "issue_comment_url": 2795 | "https://api.github.com/repos/roman01la/cljsjs.github.io/issues/comments{/number}", 2796 | "contents_url": 2797 | "https://api.github.com/repos/roman01la/cljsjs.github.io/contents/{+path}", 2798 | "compare_url": 2799 | "https://api.github.com/repos/roman01la/cljsjs.github.io/compare/{base}...{head}", 2800 | "merges_url": 2801 | "https://api.github.com/repos/roman01la/cljsjs.github.io/merges", 2802 | "archive_url": 2803 | "https://api.github.com/repos/roman01la/cljsjs.github.io/{archive_format}{/ref}", 2804 | "downloads_url": 2805 | "https://api.github.com/repos/roman01la/cljsjs.github.io/downloads", 2806 | "issues_url": 2807 | "https://api.github.com/repos/roman01la/cljsjs.github.io/issues{/number}", 2808 | "pulls_url": 2809 | "https://api.github.com/repos/roman01la/cljsjs.github.io/pulls{/number}", 2810 | "milestones_url": 2811 | "https://api.github.com/repos/roman01la/cljsjs.github.io/milestones{/number}", 2812 | "notifications_url": 2813 | "https://api.github.com/repos/roman01la/cljsjs.github.io/notifications{?since,all,participating}", 2814 | "labels_url": 2815 | "https://api.github.com/repos/roman01la/cljsjs.github.io/labels{/name}", 2816 | "releases_url": 2817 | "https://api.github.com/repos/roman01la/cljsjs.github.io/releases{/id}", 2818 | "deployments_url": 2819 | "https://api.github.com/repos/roman01la/cljsjs.github.io/deployments", 2820 | "created_at": "2016-09-15T15:04:23Z", 2821 | "updated_at": "2016-09-15T15:04:24Z", 2822 | "pushed_at": "2016-09-15T22:30:49Z", 2823 | "git_url": "git://github.com/roman01la/cljsjs.github.io.git", 2824 | "ssh_url": "git@github.com:roman01la/cljsjs.github.io.git", 2825 | "clone_url": "https://github.com/roman01la/cljsjs.github.io.git", 2826 | "svn_url": "https://github.com/roman01la/cljsjs.github.io", 2827 | "homepage": "cljsjs.github.io", 2828 | "size": 1915, 2829 | "stargazers_count": 0, 2830 | "watchers_count": 0, 2831 | "language": "Clojure", 2832 | "has_issues": false, 2833 | "has_projects": true, 2834 | "has_downloads": true, 2835 | "has_wiki": true, 2836 | "has_pages": false, 2837 | "forks_count": 0, 2838 | "mirror_url": null, 2839 | "archived": false, 2840 | "open_issues_count": 0, 2841 | "license": null, 2842 | "forks": 0, 2843 | "open_issues": 0, 2844 | "watchers": 0, 2845 | "default_branch": "real-code" 2846 | }, 2847 | { 2848 | "id": 80995148, 2849 | "name": "cljss", 2850 | "full_name": "roman01la/cljss", 2851 | "owner": { 2852 | "login": "roman01la", 2853 | "id": 1355501, 2854 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 2855 | "gravatar_id": "", 2856 | "url": "https://api.github.com/users/roman01la", 2857 | "html_url": "https://github.com/roman01la", 2858 | "followers_url": "https://api.github.com/users/roman01la/followers", 2859 | "following_url": 2860 | "https://api.github.com/users/roman01la/following{/other_user}", 2861 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 2862 | "starred_url": 2863 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 2864 | "subscriptions_url": 2865 | "https://api.github.com/users/roman01la/subscriptions", 2866 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 2867 | "repos_url": "https://api.github.com/users/roman01la/repos", 2868 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 2869 | "received_events_url": 2870 | "https://api.github.com/users/roman01la/received_events", 2871 | "type": "User", 2872 | "site_admin": false 2873 | }, 2874 | "private": false, 2875 | "html_url": "https://github.com/roman01la/cljss", 2876 | "description": "Clojure Style Sheets — CSS-in-JS for ClojureScript", 2877 | "fork": false, 2878 | "url": "https://api.github.com/repos/roman01la/cljss", 2879 | "forks_url": "https://api.github.com/repos/roman01la/cljss/forks", 2880 | "keys_url": "https://api.github.com/repos/roman01la/cljss/keys{/key_id}", 2881 | "collaborators_url": 2882 | "https://api.github.com/repos/roman01la/cljss/collaborators{/collaborator}", 2883 | "teams_url": "https://api.github.com/repos/roman01la/cljss/teams", 2884 | "hooks_url": "https://api.github.com/repos/roman01la/cljss/hooks", 2885 | "issue_events_url": 2886 | "https://api.github.com/repos/roman01la/cljss/issues/events{/number}", 2887 | "events_url": "https://api.github.com/repos/roman01la/cljss/events", 2888 | "assignees_url": 2889 | "https://api.github.com/repos/roman01la/cljss/assignees{/user}", 2890 | "branches_url": 2891 | "https://api.github.com/repos/roman01la/cljss/branches{/branch}", 2892 | "tags_url": "https://api.github.com/repos/roman01la/cljss/tags", 2893 | "blobs_url": "https://api.github.com/repos/roman01la/cljss/git/blobs{/sha}", 2894 | "git_tags_url": 2895 | "https://api.github.com/repos/roman01la/cljss/git/tags{/sha}", 2896 | "git_refs_url": 2897 | "https://api.github.com/repos/roman01la/cljss/git/refs{/sha}", 2898 | "trees_url": "https://api.github.com/repos/roman01la/cljss/git/trees{/sha}", 2899 | "statuses_url": 2900 | "https://api.github.com/repos/roman01la/cljss/statuses/{sha}", 2901 | "languages_url": "https://api.github.com/repos/roman01la/cljss/languages", 2902 | "stargazers_url": "https://api.github.com/repos/roman01la/cljss/stargazers", 2903 | "contributors_url": 2904 | "https://api.github.com/repos/roman01la/cljss/contributors", 2905 | "subscribers_url": 2906 | "https://api.github.com/repos/roman01la/cljss/subscribers", 2907 | "subscription_url": 2908 | "https://api.github.com/repos/roman01la/cljss/subscription", 2909 | "commits_url": "https://api.github.com/repos/roman01la/cljss/commits{/sha}", 2910 | "git_commits_url": 2911 | "https://api.github.com/repos/roman01la/cljss/git/commits{/sha}", 2912 | "comments_url": 2913 | "https://api.github.com/repos/roman01la/cljss/comments{/number}", 2914 | "issue_comment_url": 2915 | "https://api.github.com/repos/roman01la/cljss/issues/comments{/number}", 2916 | "contents_url": 2917 | "https://api.github.com/repos/roman01la/cljss/contents/{+path}", 2918 | "compare_url": 2919 | "https://api.github.com/repos/roman01la/cljss/compare/{base}...{head}", 2920 | "merges_url": "https://api.github.com/repos/roman01la/cljss/merges", 2921 | "archive_url": 2922 | "https://api.github.com/repos/roman01la/cljss/{archive_format}{/ref}", 2923 | "downloads_url": "https://api.github.com/repos/roman01la/cljss/downloads", 2924 | "issues_url": 2925 | "https://api.github.com/repos/roman01la/cljss/issues{/number}", 2926 | "pulls_url": "https://api.github.com/repos/roman01la/cljss/pulls{/number}", 2927 | "milestones_url": 2928 | "https://api.github.com/repos/roman01la/cljss/milestones{/number}", 2929 | "notifications_url": 2930 | "https://api.github.com/repos/roman01la/cljss/notifications{?since,all,participating}", 2931 | "labels_url": "https://api.github.com/repos/roman01la/cljss/labels{/name}", 2932 | "releases_url": 2933 | "https://api.github.com/repos/roman01la/cljss/releases{/id}", 2934 | "deployments_url": 2935 | "https://api.github.com/repos/roman01la/cljss/deployments", 2936 | "created_at": "2017-02-05T13:37:36Z", 2937 | "updated_at": "2018-02-23T04:00:15Z", 2938 | "pushed_at": "2018-02-20T09:52:21Z", 2939 | "git_url": "git://github.com/roman01la/cljss.git", 2940 | "ssh_url": "git@github.com:roman01la/cljss.git", 2941 | "clone_url": "https://github.com/roman01la/cljss.git", 2942 | "svn_url": "https://github.com/roman01la/cljss", 2943 | "homepage": "https://roman01la.github.io/cljss/", 2944 | "size": 188, 2945 | "stargazers_count": 190, 2946 | "watchers_count": 190, 2947 | "language": "Clojure", 2948 | "has_issues": true, 2949 | "has_projects": true, 2950 | "has_downloads": true, 2951 | "has_wiki": true, 2952 | "has_pages": true, 2953 | "forks_count": 8, 2954 | "mirror_url": null, 2955 | "archived": false, 2956 | "open_issues_count": 5, 2957 | "license": { 2958 | "key": "epl-1.0", 2959 | "name": "Eclipse Public License 1.0", 2960 | "spdx_id": "EPL-1.0", 2961 | "url": "https://api.github.com/licenses/epl-1.0" 2962 | }, 2963 | "forks": 8, 2964 | "open_issues": 5, 2965 | "watchers": 190, 2966 | "default_branch": "master" 2967 | }, 2968 | { 2969 | "id": 78673877, 2970 | "name": "clojure-hacking-day", 2971 | "full_name": "roman01la/clojure-hacking-day", 2972 | "owner": { 2973 | "login": "roman01la", 2974 | "id": 1355501, 2975 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 2976 | "gravatar_id": "", 2977 | "url": "https://api.github.com/users/roman01la", 2978 | "html_url": "https://github.com/roman01la", 2979 | "followers_url": "https://api.github.com/users/roman01la/followers", 2980 | "following_url": 2981 | "https://api.github.com/users/roman01la/following{/other_user}", 2982 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 2983 | "starred_url": 2984 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 2985 | "subscriptions_url": 2986 | "https://api.github.com/users/roman01la/subscriptions", 2987 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 2988 | "repos_url": "https://api.github.com/users/roman01la/repos", 2989 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 2990 | "received_events_url": 2991 | "https://api.github.com/users/roman01la/received_events", 2992 | "type": "User", 2993 | "site_admin": false 2994 | }, 2995 | "private": false, 2996 | "html_url": "https://github.com/roman01la/clojure-hacking-day", 2997 | "description": null, 2998 | "fork": false, 2999 | "url": "https://api.github.com/repos/roman01la/clojure-hacking-day", 3000 | "forks_url": 3001 | "https://api.github.com/repos/roman01la/clojure-hacking-day/forks", 3002 | "keys_url": 3003 | "https://api.github.com/repos/roman01la/clojure-hacking-day/keys{/key_id}", 3004 | "collaborators_url": 3005 | "https://api.github.com/repos/roman01la/clojure-hacking-day/collaborators{/collaborator}", 3006 | "teams_url": 3007 | "https://api.github.com/repos/roman01la/clojure-hacking-day/teams", 3008 | "hooks_url": 3009 | "https://api.github.com/repos/roman01la/clojure-hacking-day/hooks", 3010 | "issue_events_url": 3011 | "https://api.github.com/repos/roman01la/clojure-hacking-day/issues/events{/number}", 3012 | "events_url": 3013 | "https://api.github.com/repos/roman01la/clojure-hacking-day/events", 3014 | "assignees_url": 3015 | "https://api.github.com/repos/roman01la/clojure-hacking-day/assignees{/user}", 3016 | "branches_url": 3017 | "https://api.github.com/repos/roman01la/clojure-hacking-day/branches{/branch}", 3018 | "tags_url": 3019 | "https://api.github.com/repos/roman01la/clojure-hacking-day/tags", 3020 | "blobs_url": 3021 | "https://api.github.com/repos/roman01la/clojure-hacking-day/git/blobs{/sha}", 3022 | "git_tags_url": 3023 | "https://api.github.com/repos/roman01la/clojure-hacking-day/git/tags{/sha}", 3024 | "git_refs_url": 3025 | "https://api.github.com/repos/roman01la/clojure-hacking-day/git/refs{/sha}", 3026 | "trees_url": 3027 | "https://api.github.com/repos/roman01la/clojure-hacking-day/git/trees{/sha}", 3028 | "statuses_url": 3029 | "https://api.github.com/repos/roman01la/clojure-hacking-day/statuses/{sha}", 3030 | "languages_url": 3031 | "https://api.github.com/repos/roman01la/clojure-hacking-day/languages", 3032 | "stargazers_url": 3033 | "https://api.github.com/repos/roman01la/clojure-hacking-day/stargazers", 3034 | "contributors_url": 3035 | "https://api.github.com/repos/roman01la/clojure-hacking-day/contributors", 3036 | "subscribers_url": 3037 | "https://api.github.com/repos/roman01la/clojure-hacking-day/subscribers", 3038 | "subscription_url": 3039 | "https://api.github.com/repos/roman01la/clojure-hacking-day/subscription", 3040 | "commits_url": 3041 | "https://api.github.com/repos/roman01la/clojure-hacking-day/commits{/sha}", 3042 | "git_commits_url": 3043 | "https://api.github.com/repos/roman01la/clojure-hacking-day/git/commits{/sha}", 3044 | "comments_url": 3045 | "https://api.github.com/repos/roman01la/clojure-hacking-day/comments{/number}", 3046 | "issue_comment_url": 3047 | "https://api.github.com/repos/roman01la/clojure-hacking-day/issues/comments{/number}", 3048 | "contents_url": 3049 | "https://api.github.com/repos/roman01la/clojure-hacking-day/contents/{+path}", 3050 | "compare_url": 3051 | "https://api.github.com/repos/roman01la/clojure-hacking-day/compare/{base}...{head}", 3052 | "merges_url": 3053 | "https://api.github.com/repos/roman01la/clojure-hacking-day/merges", 3054 | "archive_url": 3055 | "https://api.github.com/repos/roman01la/clojure-hacking-day/{archive_format}{/ref}", 3056 | "downloads_url": 3057 | "https://api.github.com/repos/roman01la/clojure-hacking-day/downloads", 3058 | "issues_url": 3059 | "https://api.github.com/repos/roman01la/clojure-hacking-day/issues{/number}", 3060 | "pulls_url": 3061 | "https://api.github.com/repos/roman01la/clojure-hacking-day/pulls{/number}", 3062 | "milestones_url": 3063 | "https://api.github.com/repos/roman01la/clojure-hacking-day/milestones{/number}", 3064 | "notifications_url": 3065 | "https://api.github.com/repos/roman01la/clojure-hacking-day/notifications{?since,all,participating}", 3066 | "labels_url": 3067 | "https://api.github.com/repos/roman01la/clojure-hacking-day/labels{/name}", 3068 | "releases_url": 3069 | "https://api.github.com/repos/roman01la/clojure-hacking-day/releases{/id}", 3070 | "deployments_url": 3071 | "https://api.github.com/repos/roman01la/clojure-hacking-day/deployments", 3072 | "created_at": "2017-01-11T19:51:28Z", 3073 | "updated_at": "2017-05-27T08:24:10Z", 3074 | "pushed_at": "2017-02-26T20:26:34Z", 3075 | "git_url": "git://github.com/roman01la/clojure-hacking-day.git", 3076 | "ssh_url": "git@github.com:roman01la/clojure-hacking-day.git", 3077 | "clone_url": "https://github.com/roman01la/clojure-hacking-day.git", 3078 | "svn_url": "https://github.com/roman01la/clojure-hacking-day", 3079 | "homepage": "https://roman01la.github.io/clojure-hacking-day/", 3080 | "size": 703, 3081 | "stargazers_count": 5, 3082 | "watchers_count": 5, 3083 | "language": "Clojure", 3084 | "has_issues": false, 3085 | "has_projects": true, 3086 | "has_downloads": true, 3087 | "has_wiki": false, 3088 | "has_pages": true, 3089 | "forks_count": 11, 3090 | "mirror_url": null, 3091 | "archived": false, 3092 | "open_issues_count": 0, 3093 | "license": null, 3094 | "forks": 11, 3095 | "open_issues": 0, 3096 | "watchers": 5, 3097 | "default_branch": "master" 3098 | }, 3099 | { 3100 | "id": 74374439, 3101 | "name": "clojurescript", 3102 | "full_name": "roman01la/clojurescript", 3103 | "owner": { 3104 | "login": "roman01la", 3105 | "id": 1355501, 3106 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 3107 | "gravatar_id": "", 3108 | "url": "https://api.github.com/users/roman01la", 3109 | "html_url": "https://github.com/roman01la", 3110 | "followers_url": "https://api.github.com/users/roman01la/followers", 3111 | "following_url": 3112 | "https://api.github.com/users/roman01la/following{/other_user}", 3113 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 3114 | "starred_url": 3115 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 3116 | "subscriptions_url": 3117 | "https://api.github.com/users/roman01la/subscriptions", 3118 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 3119 | "repos_url": "https://api.github.com/users/roman01la/repos", 3120 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 3121 | "received_events_url": 3122 | "https://api.github.com/users/roman01la/received_events", 3123 | "type": "User", 3124 | "site_admin": false 3125 | }, 3126 | "private": false, 3127 | "html_url": "https://github.com/roman01la/clojurescript", 3128 | "description": "Clojure to JS compiler", 3129 | "fork": true, 3130 | "url": "https://api.github.com/repos/roman01la/clojurescript", 3131 | "forks_url": "https://api.github.com/repos/roman01la/clojurescript/forks", 3132 | "keys_url": 3133 | "https://api.github.com/repos/roman01la/clojurescript/keys{/key_id}", 3134 | "collaborators_url": 3135 | "https://api.github.com/repos/roman01la/clojurescript/collaborators{/collaborator}", 3136 | "teams_url": "https://api.github.com/repos/roman01la/clojurescript/teams", 3137 | "hooks_url": "https://api.github.com/repos/roman01la/clojurescript/hooks", 3138 | "issue_events_url": 3139 | "https://api.github.com/repos/roman01la/clojurescript/issues/events{/number}", 3140 | "events_url": "https://api.github.com/repos/roman01la/clojurescript/events", 3141 | "assignees_url": 3142 | "https://api.github.com/repos/roman01la/clojurescript/assignees{/user}", 3143 | "branches_url": 3144 | "https://api.github.com/repos/roman01la/clojurescript/branches{/branch}", 3145 | "tags_url": "https://api.github.com/repos/roman01la/clojurescript/tags", 3146 | "blobs_url": 3147 | "https://api.github.com/repos/roman01la/clojurescript/git/blobs{/sha}", 3148 | "git_tags_url": 3149 | "https://api.github.com/repos/roman01la/clojurescript/git/tags{/sha}", 3150 | "git_refs_url": 3151 | "https://api.github.com/repos/roman01la/clojurescript/git/refs{/sha}", 3152 | "trees_url": 3153 | "https://api.github.com/repos/roman01la/clojurescript/git/trees{/sha}", 3154 | "statuses_url": 3155 | "https://api.github.com/repos/roman01la/clojurescript/statuses/{sha}", 3156 | "languages_url": 3157 | "https://api.github.com/repos/roman01la/clojurescript/languages", 3158 | "stargazers_url": 3159 | "https://api.github.com/repos/roman01la/clojurescript/stargazers", 3160 | "contributors_url": 3161 | "https://api.github.com/repos/roman01la/clojurescript/contributors", 3162 | "subscribers_url": 3163 | "https://api.github.com/repos/roman01la/clojurescript/subscribers", 3164 | "subscription_url": 3165 | "https://api.github.com/repos/roman01la/clojurescript/subscription", 3166 | "commits_url": 3167 | "https://api.github.com/repos/roman01la/clojurescript/commits{/sha}", 3168 | "git_commits_url": 3169 | "https://api.github.com/repos/roman01la/clojurescript/git/commits{/sha}", 3170 | "comments_url": 3171 | "https://api.github.com/repos/roman01la/clojurescript/comments{/number}", 3172 | "issue_comment_url": 3173 | "https://api.github.com/repos/roman01la/clojurescript/issues/comments{/number}", 3174 | "contents_url": 3175 | "https://api.github.com/repos/roman01la/clojurescript/contents/{+path}", 3176 | "compare_url": 3177 | "https://api.github.com/repos/roman01la/clojurescript/compare/{base}...{head}", 3178 | "merges_url": "https://api.github.com/repos/roman01la/clojurescript/merges", 3179 | "archive_url": 3180 | "https://api.github.com/repos/roman01la/clojurescript/{archive_format}{/ref}", 3181 | "downloads_url": 3182 | "https://api.github.com/repos/roman01la/clojurescript/downloads", 3183 | "issues_url": 3184 | "https://api.github.com/repos/roman01la/clojurescript/issues{/number}", 3185 | "pulls_url": 3186 | "https://api.github.com/repos/roman01la/clojurescript/pulls{/number}", 3187 | "milestones_url": 3188 | "https://api.github.com/repos/roman01la/clojurescript/milestones{/number}", 3189 | "notifications_url": 3190 | "https://api.github.com/repos/roman01la/clojurescript/notifications{?since,all,participating}", 3191 | "labels_url": 3192 | "https://api.github.com/repos/roman01la/clojurescript/labels{/name}", 3193 | "releases_url": 3194 | "https://api.github.com/repos/roman01la/clojurescript/releases{/id}", 3195 | "deployments_url": 3196 | "https://api.github.com/repos/roman01la/clojurescript/deployments", 3197 | "created_at": "2016-11-21T14:56:28Z", 3198 | "updated_at": "2016-11-21T14:56:30Z", 3199 | "pushed_at": "2016-11-19T23:40:52Z", 3200 | "git_url": "git://github.com/roman01la/clojurescript.git", 3201 | "ssh_url": "git@github.com:roman01la/clojurescript.git", 3202 | "clone_url": "https://github.com/roman01la/clojurescript.git", 3203 | "svn_url": "https://github.com/roman01la/clojurescript", 3204 | "homepage": "", 3205 | "size": 14452, 3206 | "stargazers_count": 0, 3207 | "watchers_count": 0, 3208 | "language": "Clojure", 3209 | "has_issues": false, 3210 | "has_projects": true, 3211 | "has_downloads": true, 3212 | "has_wiki": true, 3213 | "has_pages": false, 3214 | "forks_count": 0, 3215 | "mirror_url": null, 3216 | "archived": false, 3217 | "open_issues_count": 0, 3218 | "license": null, 3219 | "forks": 0, 3220 | "open_issues": 0, 3221 | "watchers": 0, 3222 | "default_branch": "master" 3223 | }, 3224 | { 3225 | "id": 82192325, 3226 | "name": "clojurescript-unraveled", 3227 | "full_name": "roman01la/clojurescript-unraveled", 3228 | "owner": { 3229 | "login": "roman01la", 3230 | "id": 1355501, 3231 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 3232 | "gravatar_id": "", 3233 | "url": "https://api.github.com/users/roman01la", 3234 | "html_url": "https://github.com/roman01la", 3235 | "followers_url": "https://api.github.com/users/roman01la/followers", 3236 | "following_url": 3237 | "https://api.github.com/users/roman01la/following{/other_user}", 3238 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 3239 | "starred_url": 3240 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 3241 | "subscriptions_url": 3242 | "https://api.github.com/users/roman01la/subscriptions", 3243 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 3244 | "repos_url": "https://api.github.com/users/roman01la/repos", 3245 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 3246 | "received_events_url": 3247 | "https://api.github.com/users/roman01la/received_events", 3248 | "type": "User", 3249 | "site_admin": false 3250 | }, 3251 | "private": false, 3252 | "html_url": "https://github.com/roman01la/clojurescript-unraveled", 3253 | "description": 3254 | "Ukrainian translation of “ClojureScript Unraveled” by @funcool", 3255 | "fork": true, 3256 | "url": "https://api.github.com/repos/roman01la/clojurescript-unraveled", 3257 | "forks_url": 3258 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/forks", 3259 | "keys_url": 3260 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/keys{/key_id}", 3261 | "collaborators_url": 3262 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/collaborators{/collaborator}", 3263 | "teams_url": 3264 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/teams", 3265 | "hooks_url": 3266 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/hooks", 3267 | "issue_events_url": 3268 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/issues/events{/number}", 3269 | "events_url": 3270 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/events", 3271 | "assignees_url": 3272 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/assignees{/user}", 3273 | "branches_url": 3274 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/branches{/branch}", 3275 | "tags_url": 3276 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/tags", 3277 | "blobs_url": 3278 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/git/blobs{/sha}", 3279 | "git_tags_url": 3280 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/git/tags{/sha}", 3281 | "git_refs_url": 3282 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/git/refs{/sha}", 3283 | "trees_url": 3284 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/git/trees{/sha}", 3285 | "statuses_url": 3286 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/statuses/{sha}", 3287 | "languages_url": 3288 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/languages", 3289 | "stargazers_url": 3290 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/stargazers", 3291 | "contributors_url": 3292 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/contributors", 3293 | "subscribers_url": 3294 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/subscribers", 3295 | "subscription_url": 3296 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/subscription", 3297 | "commits_url": 3298 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/commits{/sha}", 3299 | "git_commits_url": 3300 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/git/commits{/sha}", 3301 | "comments_url": 3302 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/comments{/number}", 3303 | "issue_comment_url": 3304 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/issues/comments{/number}", 3305 | "contents_url": 3306 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/contents/{+path}", 3307 | "compare_url": 3308 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/compare/{base}...{head}", 3309 | "merges_url": 3310 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/merges", 3311 | "archive_url": 3312 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/{archive_format}{/ref}", 3313 | "downloads_url": 3314 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/downloads", 3315 | "issues_url": 3316 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/issues{/number}", 3317 | "pulls_url": 3318 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/pulls{/number}", 3319 | "milestones_url": 3320 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/milestones{/number}", 3321 | "notifications_url": 3322 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/notifications{?since,all,participating}", 3323 | "labels_url": 3324 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/labels{/name}", 3325 | "releases_url": 3326 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/releases{/id}", 3327 | "deployments_url": 3328 | "https://api.github.com/repos/roman01la/clojurescript-unraveled/deployments", 3329 | "created_at": "2017-02-16T14:58:46Z", 3330 | "updated_at": "2017-02-15T00:14:14Z", 3331 | "pushed_at": "2017-03-22T10:01:51Z", 3332 | "git_url": "git://github.com/roman01la/clojurescript-unraveled.git", 3333 | "ssh_url": "git@github.com:roman01la/clojurescript-unraveled.git", 3334 | "clone_url": "https://github.com/roman01la/clojurescript-unraveled.git", 3335 | "svn_url": "https://github.com/roman01la/clojurescript-unraveled", 3336 | "homepage": "https://lambdabooks.github.io/clojurescript-unraveled/", 3337 | "size": 776, 3338 | "stargazers_count": 0, 3339 | "watchers_count": 0, 3340 | "language": null, 3341 | "has_issues": false, 3342 | "has_projects": true, 3343 | "has_downloads": true, 3344 | "has_wiki": true, 3345 | "has_pages": false, 3346 | "forks_count": 0, 3347 | "mirror_url": null, 3348 | "archived": false, 3349 | "open_issues_count": 0, 3350 | "license": null, 3351 | "forks": 0, 3352 | "open_issues": 0, 3353 | "watchers": 0, 3354 | "default_branch": "master" 3355 | }, 3356 | { 3357 | "id": 82494208, 3358 | "name": "clojurescript-unraveled-1", 3359 | "full_name": "roman01la/clojurescript-unraveled-1", 3360 | "owner": { 3361 | "login": "roman01la", 3362 | "id": 1355501, 3363 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 3364 | "gravatar_id": "", 3365 | "url": "https://api.github.com/users/roman01la", 3366 | "html_url": "https://github.com/roman01la", 3367 | "followers_url": "https://api.github.com/users/roman01la/followers", 3368 | "following_url": 3369 | "https://api.github.com/users/roman01la/following{/other_user}", 3370 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 3371 | "starred_url": 3372 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 3373 | "subscriptions_url": 3374 | "https://api.github.com/users/roman01la/subscriptions", 3375 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 3376 | "repos_url": "https://api.github.com/users/roman01la/repos", 3377 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 3378 | "received_events_url": 3379 | "https://api.github.com/users/roman01la/received_events", 3380 | "type": "User", 3381 | "site_admin": false 3382 | }, 3383 | "private": false, 3384 | "html_url": "https://github.com/roman01la/clojurescript-unraveled-1", 3385 | "description": "An open source book about ClojureScript", 3386 | "fork": true, 3387 | "url": "https://api.github.com/repos/roman01la/clojurescript-unraveled-1", 3388 | "forks_url": 3389 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/forks", 3390 | "keys_url": 3391 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/keys{/key_id}", 3392 | "collaborators_url": 3393 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/collaborators{/collaborator}", 3394 | "teams_url": 3395 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/teams", 3396 | "hooks_url": 3397 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/hooks", 3398 | "issue_events_url": 3399 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/issues/events{/number}", 3400 | "events_url": 3401 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/events", 3402 | "assignees_url": 3403 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/assignees{/user}", 3404 | "branches_url": 3405 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/branches{/branch}", 3406 | "tags_url": 3407 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/tags", 3408 | "blobs_url": 3409 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/git/blobs{/sha}", 3410 | "git_tags_url": 3411 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/git/tags{/sha}", 3412 | "git_refs_url": 3413 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/git/refs{/sha}", 3414 | "trees_url": 3415 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/git/trees{/sha}", 3416 | "statuses_url": 3417 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/statuses/{sha}", 3418 | "languages_url": 3419 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/languages", 3420 | "stargazers_url": 3421 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/stargazers", 3422 | "contributors_url": 3423 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/contributors", 3424 | "subscribers_url": 3425 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/subscribers", 3426 | "subscription_url": 3427 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/subscription", 3428 | "commits_url": 3429 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/commits{/sha}", 3430 | "git_commits_url": 3431 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/git/commits{/sha}", 3432 | "comments_url": 3433 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/comments{/number}", 3434 | "issue_comment_url": 3435 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/issues/comments{/number}", 3436 | "contents_url": 3437 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/contents/{+path}", 3438 | "compare_url": 3439 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/compare/{base}...{head}", 3440 | "merges_url": 3441 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/merges", 3442 | "archive_url": 3443 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/{archive_format}{/ref}", 3444 | "downloads_url": 3445 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/downloads", 3446 | "issues_url": 3447 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/issues{/number}", 3448 | "pulls_url": 3449 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/pulls{/number}", 3450 | "milestones_url": 3451 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/milestones{/number}", 3452 | "notifications_url": 3453 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/notifications{?since,all,participating}", 3454 | "labels_url": 3455 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/labels{/name}", 3456 | "releases_url": 3457 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/releases{/id}", 3458 | "deployments_url": 3459 | "https://api.github.com/repos/roman01la/clojurescript-unraveled-1/deployments", 3460 | "created_at": "2017-02-19T22:28:54Z", 3461 | "updated_at": "2017-02-19T22:28:58Z", 3462 | "pushed_at": "2017-02-19T12:25:51Z", 3463 | "git_url": "git://github.com/roman01la/clojurescript-unraveled-1.git", 3464 | "ssh_url": "git@github.com:roman01la/clojurescript-unraveled-1.git", 3465 | "clone_url": "https://github.com/roman01la/clojurescript-unraveled-1.git", 3466 | "svn_url": "https://github.com/roman01la/clojurescript-unraveled-1", 3467 | "homepage": "http://funcool.github.io/clojurescript-unraveled/", 3468 | "size": 12343, 3469 | "stargazers_count": 0, 3470 | "watchers_count": 0, 3471 | "language": "XSLT", 3472 | "has_issues": false, 3473 | "has_projects": true, 3474 | "has_downloads": true, 3475 | "has_wiki": true, 3476 | "has_pages": false, 3477 | "forks_count": 0, 3478 | "mirror_url": null, 3479 | "archived": false, 3480 | "open_issues_count": 0, 3481 | "license": null, 3482 | "forks": 0, 3483 | "open_issues": 0, 3484 | "watchers": 0, 3485 | "default_branch": "master" 3486 | }, 3487 | { 3488 | "id": 72355284, 3489 | "name": "clojurescript-workshop", 3490 | "full_name": "roman01la/clojurescript-workshop", 3491 | "owner": { 3492 | "login": "roman01la", 3493 | "id": 1355501, 3494 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 3495 | "gravatar_id": "", 3496 | "url": "https://api.github.com/users/roman01la", 3497 | "html_url": "https://github.com/roman01la", 3498 | "followers_url": "https://api.github.com/users/roman01la/followers", 3499 | "following_url": 3500 | "https://api.github.com/users/roman01la/following{/other_user}", 3501 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 3502 | "starred_url": 3503 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 3504 | "subscriptions_url": 3505 | "https://api.github.com/users/roman01la/subscriptions", 3506 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 3507 | "repos_url": "https://api.github.com/users/roman01la/repos", 3508 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 3509 | "received_events_url": 3510 | "https://api.github.com/users/roman01la/received_events", 3511 | "type": "User", 3512 | "site_admin": false 3513 | }, 3514 | "private": false, 3515 | "html_url": "https://github.com/roman01la/clojurescript-workshop", 3516 | "description": "Repository of related materials to the workshop", 3517 | "fork": false, 3518 | "url": "https://api.github.com/repos/roman01la/clojurescript-workshop", 3519 | "forks_url": 3520 | "https://api.github.com/repos/roman01la/clojurescript-workshop/forks", 3521 | "keys_url": 3522 | "https://api.github.com/repos/roman01la/clojurescript-workshop/keys{/key_id}", 3523 | "collaborators_url": 3524 | "https://api.github.com/repos/roman01la/clojurescript-workshop/collaborators{/collaborator}", 3525 | "teams_url": 3526 | "https://api.github.com/repos/roman01la/clojurescript-workshop/teams", 3527 | "hooks_url": 3528 | "https://api.github.com/repos/roman01la/clojurescript-workshop/hooks", 3529 | "issue_events_url": 3530 | "https://api.github.com/repos/roman01la/clojurescript-workshop/issues/events{/number}", 3531 | "events_url": 3532 | "https://api.github.com/repos/roman01la/clojurescript-workshop/events", 3533 | "assignees_url": 3534 | "https://api.github.com/repos/roman01la/clojurescript-workshop/assignees{/user}", 3535 | "branches_url": 3536 | "https://api.github.com/repos/roman01la/clojurescript-workshop/branches{/branch}", 3537 | "tags_url": 3538 | "https://api.github.com/repos/roman01la/clojurescript-workshop/tags", 3539 | "blobs_url": 3540 | "https://api.github.com/repos/roman01la/clojurescript-workshop/git/blobs{/sha}", 3541 | "git_tags_url": 3542 | "https://api.github.com/repos/roman01la/clojurescript-workshop/git/tags{/sha}", 3543 | "git_refs_url": 3544 | "https://api.github.com/repos/roman01la/clojurescript-workshop/git/refs{/sha}", 3545 | "trees_url": 3546 | "https://api.github.com/repos/roman01la/clojurescript-workshop/git/trees{/sha}", 3547 | "statuses_url": 3548 | "https://api.github.com/repos/roman01la/clojurescript-workshop/statuses/{sha}", 3549 | "languages_url": 3550 | "https://api.github.com/repos/roman01la/clojurescript-workshop/languages", 3551 | "stargazers_url": 3552 | "https://api.github.com/repos/roman01la/clojurescript-workshop/stargazers", 3553 | "contributors_url": 3554 | "https://api.github.com/repos/roman01la/clojurescript-workshop/contributors", 3555 | "subscribers_url": 3556 | "https://api.github.com/repos/roman01la/clojurescript-workshop/subscribers", 3557 | "subscription_url": 3558 | "https://api.github.com/repos/roman01la/clojurescript-workshop/subscription", 3559 | "commits_url": 3560 | "https://api.github.com/repos/roman01la/clojurescript-workshop/commits{/sha}", 3561 | "git_commits_url": 3562 | "https://api.github.com/repos/roman01la/clojurescript-workshop/git/commits{/sha}", 3563 | "comments_url": 3564 | "https://api.github.com/repos/roman01la/clojurescript-workshop/comments{/number}", 3565 | "issue_comment_url": 3566 | "https://api.github.com/repos/roman01la/clojurescript-workshop/issues/comments{/number}", 3567 | "contents_url": 3568 | "https://api.github.com/repos/roman01la/clojurescript-workshop/contents/{+path}", 3569 | "compare_url": 3570 | "https://api.github.com/repos/roman01la/clojurescript-workshop/compare/{base}...{head}", 3571 | "merges_url": 3572 | "https://api.github.com/repos/roman01la/clojurescript-workshop/merges", 3573 | "archive_url": 3574 | "https://api.github.com/repos/roman01la/clojurescript-workshop/{archive_format}{/ref}", 3575 | "downloads_url": 3576 | "https://api.github.com/repos/roman01la/clojurescript-workshop/downloads", 3577 | "issues_url": 3578 | "https://api.github.com/repos/roman01la/clojurescript-workshop/issues{/number}", 3579 | "pulls_url": 3580 | "https://api.github.com/repos/roman01la/clojurescript-workshop/pulls{/number}", 3581 | "milestones_url": 3582 | "https://api.github.com/repos/roman01la/clojurescript-workshop/milestones{/number}", 3583 | "notifications_url": 3584 | "https://api.github.com/repos/roman01la/clojurescript-workshop/notifications{?since,all,participating}", 3585 | "labels_url": 3586 | "https://api.github.com/repos/roman01la/clojurescript-workshop/labels{/name}", 3587 | "releases_url": 3588 | "https://api.github.com/repos/roman01la/clojurescript-workshop/releases{/id}", 3589 | "deployments_url": 3590 | "https://api.github.com/repos/roman01la/clojurescript-workshop/deployments", 3591 | "created_at": "2016-10-30T14:46:19Z", 3592 | "updated_at": "2018-01-08T19:21:56Z", 3593 | "pushed_at": "2016-12-11T12:52:45Z", 3594 | "git_url": "git://github.com/roman01la/clojurescript-workshop.git", 3595 | "ssh_url": "git@github.com:roman01la/clojurescript-workshop.git", 3596 | "clone_url": "https://github.com/roman01la/clojurescript-workshop.git", 3597 | "svn_url": "https://github.com/roman01la/clojurescript-workshop", 3598 | "homepage": "https://roman01la.github.io/clojurescript-workshop/", 3599 | "size": 233, 3600 | "stargazers_count": 30, 3601 | "watchers_count": 30, 3602 | "language": "Clojure", 3603 | "has_issues": true, 3604 | "has_projects": true, 3605 | "has_downloads": true, 3606 | "has_wiki": true, 3607 | "has_pages": true, 3608 | "forks_count": 2, 3609 | "mirror_url": null, 3610 | "archived": false, 3611 | "open_issues_count": 0, 3612 | "license": null, 3613 | "forks": 2, 3614 | "open_issues": 0, 3615 | "watchers": 30, 3616 | "default_branch": "master" 3617 | }, 3618 | { 3619 | "id": 73221676, 3620 | "name": "closure-compiler-handbook", 3621 | "full_name": "roman01la/closure-compiler-handbook", 3622 | "owner": { 3623 | "login": "roman01la", 3624 | "id": 1355501, 3625 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 3626 | "gravatar_id": "", 3627 | "url": "https://api.github.com/users/roman01la", 3628 | "html_url": "https://github.com/roman01la", 3629 | "followers_url": "https://api.github.com/users/roman01la/followers", 3630 | "following_url": 3631 | "https://api.github.com/users/roman01la/following{/other_user}", 3632 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 3633 | "starred_url": 3634 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 3635 | "subscriptions_url": 3636 | "https://api.github.com/users/roman01la/subscriptions", 3637 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 3638 | "repos_url": "https://api.github.com/users/roman01la/repos", 3639 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 3640 | "received_events_url": 3641 | "https://api.github.com/users/roman01la/received_events", 3642 | "type": "User", 3643 | "site_admin": false 3644 | }, 3645 | "private": false, 3646 | "html_url": "https://github.com/roman01la/closure-compiler-handbook", 3647 | "description": "How to use Google's Closure Compiler", 3648 | "fork": false, 3649 | "url": "https://api.github.com/repos/roman01la/closure-compiler-handbook", 3650 | "forks_url": 3651 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/forks", 3652 | "keys_url": 3653 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/keys{/key_id}", 3654 | "collaborators_url": 3655 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/collaborators{/collaborator}", 3656 | "teams_url": 3657 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/teams", 3658 | "hooks_url": 3659 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/hooks", 3660 | "issue_events_url": 3661 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/issues/events{/number}", 3662 | "events_url": 3663 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/events", 3664 | "assignees_url": 3665 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/assignees{/user}", 3666 | "branches_url": 3667 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/branches{/branch}", 3668 | "tags_url": 3669 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/tags", 3670 | "blobs_url": 3671 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/git/blobs{/sha}", 3672 | "git_tags_url": 3673 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/git/tags{/sha}", 3674 | "git_refs_url": 3675 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/git/refs{/sha}", 3676 | "trees_url": 3677 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/git/trees{/sha}", 3678 | "statuses_url": 3679 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/statuses/{sha}", 3680 | "languages_url": 3681 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/languages", 3682 | "stargazers_url": 3683 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/stargazers", 3684 | "contributors_url": 3685 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/contributors", 3686 | "subscribers_url": 3687 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/subscribers", 3688 | "subscription_url": 3689 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/subscription", 3690 | "commits_url": 3691 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/commits{/sha}", 3692 | "git_commits_url": 3693 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/git/commits{/sha}", 3694 | "comments_url": 3695 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/comments{/number}", 3696 | "issue_comment_url": 3697 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/issues/comments{/number}", 3698 | "contents_url": 3699 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/contents/{+path}", 3700 | "compare_url": 3701 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/compare/{base}...{head}", 3702 | "merges_url": 3703 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/merges", 3704 | "archive_url": 3705 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/{archive_format}{/ref}", 3706 | "downloads_url": 3707 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/downloads", 3708 | "issues_url": 3709 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/issues{/number}", 3710 | "pulls_url": 3711 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/pulls{/number}", 3712 | "milestones_url": 3713 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/milestones{/number}", 3714 | "notifications_url": 3715 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/notifications{?since,all,participating}", 3716 | "labels_url": 3717 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/labels{/name}", 3718 | "releases_url": 3719 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/releases{/id}", 3720 | "deployments_url": 3721 | "https://api.github.com/repos/roman01la/closure-compiler-handbook/deployments", 3722 | "created_at": "2016-11-08T19:53:11Z", 3723 | "updated_at": "2018-02-18T12:51:59Z", 3724 | "pushed_at": "2017-03-02T15:14:47Z", 3725 | "git_url": "git://github.com/roman01la/closure-compiler-handbook.git", 3726 | "ssh_url": "git@github.com:roman01la/closure-compiler-handbook.git", 3727 | "clone_url": "https://github.com/roman01la/closure-compiler-handbook.git", 3728 | "svn_url": "https://github.com/roman01la/closure-compiler-handbook", 3729 | "homepage": "", 3730 | "size": 67, 3731 | "stargazers_count": 383, 3732 | "watchers_count": 383, 3733 | "language": null, 3734 | "has_issues": true, 3735 | "has_projects": true, 3736 | "has_downloads": true, 3737 | "has_wiki": true, 3738 | "has_pages": false, 3739 | "forks_count": 1, 3740 | "mirror_url": null, 3741 | "archived": false, 3742 | "open_issues_count": 0, 3743 | "license": { 3744 | "key": "other", 3745 | "name": "Other", 3746 | "spdx_id": null, 3747 | "url": null 3748 | }, 3749 | "forks": 1, 3750 | "open_issues": 0, 3751 | "watchers": 383, 3752 | "default_branch": "master" 3753 | }, 3754 | { 3755 | "id": 34044302, 3756 | "name": "code-screenshots", 3757 | "full_name": "roman01la/code-screenshots", 3758 | "owner": { 3759 | "login": "roman01la", 3760 | "id": 1355501, 3761 | "avatar_url": "https://avatars0.githubusercontent.com/u/1355501?v=4", 3762 | "gravatar_id": "", 3763 | "url": "https://api.github.com/users/roman01la", 3764 | "html_url": "https://github.com/roman01la", 3765 | "followers_url": "https://api.github.com/users/roman01la/followers", 3766 | "following_url": 3767 | "https://api.github.com/users/roman01la/following{/other_user}", 3768 | "gists_url": "https://api.github.com/users/roman01la/gists{/gist_id}", 3769 | "starred_url": 3770 | "https://api.github.com/users/roman01la/starred{/owner}{/repo}", 3771 | "subscriptions_url": 3772 | "https://api.github.com/users/roman01la/subscriptions", 3773 | "organizations_url": "https://api.github.com/users/roman01la/orgs", 3774 | "repos_url": "https://api.github.com/users/roman01la/repos", 3775 | "events_url": "https://api.github.com/users/roman01la/events{/privacy}", 3776 | "received_events_url": 3777 | "https://api.github.com/users/roman01la/received_events", 3778 | "type": "User", 3779 | "site_admin": false 3780 | }, 3781 | "private": false, 3782 | "html_url": "https://github.com/roman01la/code-screenshots", 3783 | "description": "Скриншоты редакторов кода разных разработчиков", 3784 | "fork": true, 3785 | "url": "https://api.github.com/repos/roman01la/code-screenshots", 3786 | "forks_url": 3787 | "https://api.github.com/repos/roman01la/code-screenshots/forks", 3788 | "keys_url": 3789 | "https://api.github.com/repos/roman01la/code-screenshots/keys{/key_id}", 3790 | "collaborators_url": 3791 | "https://api.github.com/repos/roman01la/code-screenshots/collaborators{/collaborator}", 3792 | "teams_url": 3793 | "https://api.github.com/repos/roman01la/code-screenshots/teams", 3794 | "hooks_url": 3795 | "https://api.github.com/repos/roman01la/code-screenshots/hooks", 3796 | "issue_events_url": 3797 | "https://api.github.com/repos/roman01la/code-screenshots/issues/events{/number}", 3798 | "events_url": 3799 | "https://api.github.com/repos/roman01la/code-screenshots/events", 3800 | "assignees_url": 3801 | "https://api.github.com/repos/roman01la/code-screenshots/assignees{/user}", 3802 | "branches_url": 3803 | "https://api.github.com/repos/roman01la/code-screenshots/branches{/branch}", 3804 | "tags_url": "https://api.github.com/repos/roman01la/code-screenshots/tags", 3805 | "blobs_url": 3806 | "https://api.github.com/repos/roman01la/code-screenshots/git/blobs{/sha}", 3807 | "git_tags_url": 3808 | "https://api.github.com/repos/roman01la/code-screenshots/git/tags{/sha}", 3809 | "git_refs_url": 3810 | "https://api.github.com/repos/roman01la/code-screenshots/git/refs{/sha}", 3811 | "trees_url": 3812 | "https://api.github.com/repos/roman01la/code-screenshots/git/trees{/sha}", 3813 | "statuses_url": 3814 | "https://api.github.com/repos/roman01la/code-screenshots/statuses/{sha}", 3815 | "languages_url": 3816 | "https://api.github.com/repos/roman01la/code-screenshots/languages", 3817 | "stargazers_url": 3818 | "https://api.github.com/repos/roman01la/code-screenshots/stargazers", 3819 | "contributors_url": 3820 | "https://api.github.com/repos/roman01la/code-screenshots/contributors", 3821 | "subscribers_url": 3822 | "https://api.github.com/repos/roman01la/code-screenshots/subscribers", 3823 | "subscription_url": 3824 | "https://api.github.com/repos/roman01la/code-screenshots/subscription", 3825 | "commits_url": 3826 | "https://api.github.com/repos/roman01la/code-screenshots/commits{/sha}", 3827 | "git_commits_url": 3828 | "https://api.github.com/repos/roman01la/code-screenshots/git/commits{/sha}", 3829 | "comments_url": 3830 | "https://api.github.com/repos/roman01la/code-screenshots/comments{/number}", 3831 | "issue_comment_url": 3832 | "https://api.github.com/repos/roman01la/code-screenshots/issues/comments{/number}", 3833 | "contents_url": 3834 | "https://api.github.com/repos/roman01la/code-screenshots/contents/{+path}", 3835 | "compare_url": 3836 | "https://api.github.com/repos/roman01la/code-screenshots/compare/{base}...{head}", 3837 | "merges_url": 3838 | "https://api.github.com/repos/roman01la/code-screenshots/merges", 3839 | "archive_url": 3840 | "https://api.github.com/repos/roman01la/code-screenshots/{archive_format}{/ref}", 3841 | "downloads_url": 3842 | "https://api.github.com/repos/roman01la/code-screenshots/downloads", 3843 | "issues_url": 3844 | "https://api.github.com/repos/roman01la/code-screenshots/issues{/number}", 3845 | "pulls_url": 3846 | "https://api.github.com/repos/roman01la/code-screenshots/pulls{/number}", 3847 | "milestones_url": 3848 | "https://api.github.com/repos/roman01la/code-screenshots/milestones{/number}", 3849 | "notifications_url": 3850 | "https://api.github.com/repos/roman01la/code-screenshots/notifications{?since,all,participating}", 3851 | "labels_url": 3852 | "https://api.github.com/repos/roman01la/code-screenshots/labels{/name}", 3853 | "releases_url": 3854 | "https://api.github.com/repos/roman01la/code-screenshots/releases{/id}", 3855 | "deployments_url": 3856 | "https://api.github.com/repos/roman01la/code-screenshots/deployments", 3857 | "created_at": "2015-04-16T08:41:10Z", 3858 | "updated_at": "2015-04-13T12:48:12Z", 3859 | "pushed_at": "2015-04-16T09:03:08Z", 3860 | "git_url": "git://github.com/roman01la/code-screenshots.git", 3861 | "ssh_url": "git@github.com:roman01la/code-screenshots.git", 3862 | "clone_url": "https://github.com/roman01la/code-screenshots.git", 3863 | "svn_url": "https://github.com/roman01la/code-screenshots", 3864 | "homepage": "http://shuvalov-anton.github.io/code-screenshots", 3865 | "size": 198, 3866 | "stargazers_count": 0, 3867 | "watchers_count": 0, 3868 | "language": null, 3869 | "has_issues": false, 3870 | "has_projects": true, 3871 | "has_downloads": true, 3872 | "has_wiki": false, 3873 | "has_pages": false, 3874 | "forks_count": 0, 3875 | "mirror_url": null, 3876 | "archived": false, 3877 | "open_issues_count": 0, 3878 | "license": null, 3879 | "forks": 0, 3880 | "open_issues": 0, 3881 | "watchers": 0, 3882 | "default_branch": "master" 3883 | } 3884 | ] 3885 | --------------------------------------------------------------------------------