├── test
├── fixtures
│ ├── data
│ │ ├── empty.yml
│ │ ├── one.json
│ │ ├── two.yml
│ │ ├── AUTHORS
│ │ ├── metadata.json
│ │ ├── three.json
│ │ └── helpers.json
│ ├── pages
│ │ ├── two.hbs
│ │ ├── three.hbs
│ │ ├── one.hbs
│ │ └── example.hbs
│ ├── includes
│ │ └── alert.hbs
│ └── layouts
│ │ └── default.hbs
└── test.js
├── .gitattributes
├── .travis.yml
├── examples
└── middleware.js
├── .gitignore
├── .jshintrc
├── .editorconfig
├── index.js
├── gulpfile.js
├── LICENSE
├── README.md
├── .verb.md
├── package.json
└── .eslintrc.json
/test/fixtures/data/empty.yml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/fixtures/data/one.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "foo"
3 | }
--------------------------------------------------------------------------------
/test/fixtures/data/two.yml:
--------------------------------------------------------------------------------
1 | description: replacement description.
--------------------------------------------------------------------------------
/test/fixtures/pages/two.hbs:
--------------------------------------------------------------------------------
1 | ---
2 | title: two
3 | ---
4 | howdy {{title}}
--------------------------------------------------------------------------------
/test/fixtures/pages/three.hbs:
--------------------------------------------------------------------------------
1 | ---
2 | title: three
3 | ---
4 | howdy {{title}}
--------------------------------------------------------------------------------
/test/fixtures/includes/alert.hbs:
--------------------------------------------------------------------------------
1 | ---
2 | title: components-alert
3 | ---
4 | howdy {{title}}
--------------------------------------------------------------------------------
/test/fixtures/pages/one.hbs:
--------------------------------------------------------------------------------
1 | ---
2 | title: one
3 | ---
4 |
{{site.title}}
5 |
6 | howdy {{title}}
--------------------------------------------------------------------------------
/test/fixtures/data/AUTHORS:
--------------------------------------------------------------------------------
1 | {%= author.name %} ({%= author.url %})
2 |
3 | [{%= authors[0].name %}]({%= authors[0].url %})
--------------------------------------------------------------------------------
/test/fixtures/data/metadata.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "SUCCESS!",
3 | "description": "This is data from test/fixtures/metadata.json"
4 | }
--------------------------------------------------------------------------------
/test/fixtures/pages/example.hbs:
--------------------------------------------------------------------------------
1 | ---
2 | title: Example
3 | ---
4 | {{site.title}}
5 |
6 | {{title}}
7 | {{!debug example}}
8 | {{foo}}
9 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Enforce Unix newlines
2 | * text eol=lf
3 |
4 | # binaries
5 | *.ai binary
6 | *.psd binary
7 | *.jpg binary
8 | *.gif binary
9 | *.png binary
10 | *.jpeg binary
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | sudo: false
2 | language: node_js
3 | node_js:
4 | - "stable"
5 | - "5"
6 | - "4"
7 | - "0.12"
8 | - "0.10"
9 | matrix:
10 | fast_finish: true
11 | allow_failures:
12 | - node_js: "0.10"
13 |
--------------------------------------------------------------------------------
/test/fixtures/layouts/default.hbs:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | {{title}}
6 |
7 |
8 | {{> alert}}
9 | {% body %}
10 |
11 |
--------------------------------------------------------------------------------
/examples/middleware.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | module.exports = function(assemble) {
4 | return function(file, next) {
5 | // do stuff
6 | file.data.foo = "Added to file.data through example middleware!";
7 | next();
8 | };
9 | };
10 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | *.DS_Store
2 | lib-cov
3 | *.seed
4 | *.log
5 | *.csv
6 | *.dat
7 | *.out
8 | *.pid
9 | *.gz
10 | *.rar
11 | npm-debug.log
12 | node_modules
13 | pids
14 | logs
15 |
16 |
17 | release
18 | /tmp/
19 | /temp/
20 |
21 | TODO.md
22 |
23 | *.sublime
24 |
25 | _gh_pages
--------------------------------------------------------------------------------
/test/fixtures/data/three.json:
--------------------------------------------------------------------------------
1 | {
2 | "main": "index.js",
3 | "dependencies": {
4 | "acorn": "~0.3.1",
5 | "assemble-yaml": "~0.2.1",
6 | "glob-utils": "~0.1.0",
7 | "lodash": "~2.3.0",
8 | "marked-toc": "~0.1.0",
9 | "node-name": "~0.1.3",
10 | "resolve-dep": "~0.1.3"
11 | }
12 | }
--------------------------------------------------------------------------------
/.jshintrc:
--------------------------------------------------------------------------------
1 | {
2 | "asi": false,
3 | "boss": true,
4 | "curly": true,
5 | "eqeqeq": true,
6 | "eqnull": true,
7 | "esnext": true,
8 | "immed": true,
9 | "latedef": false,
10 | "laxcomma": false,
11 | "mocha": true,
12 | "newcap": true,
13 | "noarg": true,
14 | "node": true,
15 | "sub": true,
16 | "undef": true,
17 | "unused": true
18 | }
19 |
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | # http://editorconfig.org
2 | root = true
3 |
4 | [*]
5 | indent_style = space
6 | end_of_line = lf
7 | charset = utf-8
8 | indent_size = 2
9 | trim_trailing_whitespace = true
10 | insert_final_newline = true
11 |
12 | [*.md]
13 | trim_trailing_whitespace = false
14 | insert_final_newline = false
15 |
16 | [test/**]
17 | trim_trailing_whitespace = false
18 | insert_final_newline = false
19 |
20 | [templates/**]
21 | trim_trailing_whitespace = false
22 | insert_final_newline = false
23 |
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * gulp-assemble
3 | *
4 | * Copyright (c) 2014-2015, Brian Woodward.
5 | * Licensed under the MIT License.
6 | */
7 |
8 | 'use strict';
9 |
10 | var renderPlugin = require('template-render');
11 | var initPlugin = require('template-init');
12 | var es = require('event-stream');
13 |
14 | module.exports = function assemblePlugin(assemble, opts) {
15 | var init = initPlugin(assemble);
16 | var render = renderPlugin(assemble);
17 | return es.pipeline.apply(es, [init(opts), render(opts)]);
18 | };
19 |
--------------------------------------------------------------------------------
/gulpfile.js:
--------------------------------------------------------------------------------
1 | var gulp = require('gulp');
2 | var htmlmin = require('gulp-htmlmin');
3 | var extname = require('gulp-extname');
4 | var assemble = require('assemble');
5 | var middleware = require('./examples/middleware');
6 | var gulpAssemble = require('./');
7 |
8 | // setup items on the assemble object
9 | assemble.data({site: {title: 'Blog'}});
10 | assemble.data(['test/fixtures/data/*.{json,yml}']);
11 | assemble.layouts(['test/fixtures/layouts/*.hbs']);
12 | assemble.partials(['test/fixtures/includes/*.hbs']);
13 |
14 | // arbitrary middleware that runs when files loaded
15 | assemble.onLoad(/index\.hbs/, middleware(assemble));
16 |
17 | // render templates in `test/fixtures`
18 | gulp.task('default', function () {
19 | gulp.src('test/fixtures/pages/*.hbs')
20 | .pipe(gulpAssemble(assemble, { layout: 'default' }))
21 | .pipe(htmlmin({collapseWhitespace: true}))
22 | .pipe(extname())
23 | .pipe(gulp.dest('_gh_pages/'));
24 | });
25 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2014-2016, Brian Woodward.
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in
13 | all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | THE SOFTWARE.
22 |
--------------------------------------------------------------------------------
/test/test.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * gulp-assemble
3 | *
4 | * Copyright (c) 2014-2015, Brian Woodward.
5 | * Licensed under the MIT License.
6 | */
7 |
8 | 'use strict';
9 |
10 | var path = require('path');
11 | var File = require('gulp-util').File;
12 | var assert = require('assert');
13 | var fixtures = require('fixture');
14 | var assemble = require('assemble');
15 | var gulpAssemble = require('../');
16 |
17 | var fixture = path.join(fixtures, 'handlebars/with-yfm');
18 |
19 | describe('gulp-assemble', function() {
20 | describe('when assemble is configured with options', function() {
21 | it('should build files', function(done) {
22 |
23 | assemble.data({ foo: 'bar' });
24 | assemble.helper('upper', function(str) {
25 | return str.toUpperCase();
26 | });
27 |
28 | var stream = gulpAssemble(assemble);
29 |
30 | var fakeFile = new File({
31 | cwd: fixture,
32 | base: fixture,
33 | path: fixture + '/alert.hbs',
34 | contents: new Buffer('---\ntitle: sup\n---\n{{upper title}} - {{foo}}')
35 | });
36 |
37 | stream.on('data', function(page) {
38 | assert.equal('SUP - bar', page.contents.toString());
39 | });
40 |
41 | stream.on('end', function() {
42 | done();
43 | });
44 |
45 | stream.write(fakeFile);
46 | stream.end();
47 | });
48 | });
49 | });
50 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Heads up!
2 |
3 | This project has been deprecated. [Assemble](https://github.com/assemble/assemble) can be used directly with or without gulp.
4 |
5 | ## Examples
6 |
7 | **Assemble with gulp**
8 |
9 | ```js
10 | var gulp = require('gulp');
11 | var htmlmin = require('gulp-htmlmin');
12 | var extname = require('gulp-extname');
13 | var assemble = require('assemble');
14 | var app = assemble();
15 |
16 | gulp.task('load', function(cb) {
17 | app.partials('templates/partials/*.hbs');
18 | app.layouts('templates/layouts/*.hbs');
19 | app.pages('templates/pages/*.hbs');
20 | cb();
21 | });
22 |
23 | gulp.task('assemble', ['load'], function() {
24 | return app.toStream('pages')
25 | .pipe(app.renderFile())
26 | .pipe(htmlmin())
27 | .pipe(extname())
28 | .pipe(app.dest('site'));
29 | });
30 |
31 | gulp.task('default', ['assemble']);
32 | ```
33 |
34 | **Assemble without gulp**
35 |
36 | ```js
37 | var htmlmin = require('gulp-htmlmin');
38 | var extname = require('gulp-extname');
39 | var assemble = require('assemble');
40 | var app = assemble();
41 |
42 | app.task('load', function(cb) {
43 | app.partials('templates/partials/*.hbs');
44 | app.layouts('templates/layouts/*.hbs');
45 | app.pages('templates/pages/*.hbs');
46 | cb();
47 | });
48 |
49 | app.task('assemble', ['load'], function() {
50 | return app.toStream('pages')
51 | .pipe(app.renderFile())
52 | .pipe(htmlmin())
53 | .pipe(extname())
54 | .pipe(app.dest('site'));
55 | });
56 |
57 | app.task('default', ['assemble']);
58 | ```
--------------------------------------------------------------------------------
/.verb.md:
--------------------------------------------------------------------------------
1 | # Heads up!
2 |
3 | This project has been deprecated. [Assemble][assemble] can be used directly with or without gulp.
4 |
5 | ## Examples
6 |
7 | **Assemble with gulp**
8 |
9 | ```js
10 | var gulp = require('gulp');
11 | var htmlmin = require('gulp-htmlmin');
12 | var extname = require('gulp-extname');
13 | var assemble = require('assemble');
14 | var app = assemble();
15 |
16 | gulp.task('load', function(cb) {
17 | app.partials('templates/partials/*.hbs');
18 | app.layouts('templates/layouts/*.hbs');
19 | app.pages('templates/pages/*.hbs');
20 | cb();
21 | });
22 |
23 | gulp.task('assemble', ['load'], function() {
24 | return app.toStream('pages')
25 | .pipe(app.renderFile())
26 | .pipe(htmlmin())
27 | .pipe(extname())
28 | .pipe(app.dest('site'));
29 | });
30 |
31 | gulp.task('default', ['assemble']);
32 | ```
33 |
34 | **Assemble without gulp**
35 |
36 | ```js
37 | var htmlmin = require('gulp-htmlmin');
38 | var extname = require('gulp-extname');
39 | var assemble = require('assemble');
40 | var app = assemble();
41 |
42 | app.task('load', function(cb) {
43 | app.partials('templates/partials/*.hbs');
44 | app.layouts('templates/layouts/*.hbs');
45 | app.pages('templates/pages/*.hbs');
46 | cb();
47 | });
48 |
49 | app.task('assemble', ['load'], function() {
50 | return app.toStream('pages')
51 | .pipe(app.renderFile())
52 | .pipe(htmlmin())
53 | .pipe(extname())
54 | .pipe(app.dest('site'));
55 | });
56 |
57 | app.task('default', ['assemble']);
58 | ```
59 |
60 | [assemble]: https://github.com/assemble/assemble
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "gulp-assemble",
3 | "description": "Gulp plugin for Assemble.",
4 | "version": "0.3.3",
5 | "homepage": "http://assemble.io",
6 | "deprecated": "This project has been deprecated. Use assemble directly or as a node library with gulp.",
7 | "author": "Brian Woodward (https://github.com/doowb)",
8 | "repository": "assemble/gulp-assemble",
9 | "bugs": {
10 | "url": "git://github.com/assemble/gulp-assemble/issues"
11 | },
12 | "license": "MIT",
13 | "files": [
14 | "index.js"
15 | ],
16 | "main": "index.js",
17 | "engines": {
18 | "node": ">= 0.10.0"
19 | },
20 | "scripts": {
21 | "test": "mocha"
22 | },
23 | "dependencies": {
24 | "event-stream": "^3.3.0",
25 | "template-init": "^0.3.0",
26 | "template-render": "^0.4.1"
27 | },
28 | "devDependencies": {
29 | "assemble": "0.6.0-beta.3",
30 | "fixture": "^0.1.0",
31 | "gulp": "^3.8.11",
32 | "gulp-extname": "^0.2.0",
33 | "gulp-htmlmin": "^1.1.1",
34 | "gulp-util": "^3.0.4"
35 | },
36 | "keywords": [
37 | "assemble",
38 | "blog",
39 | "build",
40 | "component",
41 | "front",
42 | "front-matter",
43 | "generate",
44 | "generator",
45 | "gulp",
46 | "gulpplugin",
47 | "handlebars",
48 | "helper",
49 | "helpers",
50 | "matter",
51 | "page",
52 | "partial",
53 | "plugin",
54 | "post",
55 | "scaffold",
56 | "site",
57 | "static",
58 | "task",
59 | "templates"
60 | ],
61 | "verb": {
62 | "related": {
63 | "list": []
64 | },
65 | "plugins": [
66 | "gulp-format-md"
67 | ]
68 | }
69 | }
70 |
--------------------------------------------------------------------------------
/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "ecmaFeatures": {
3 | "modules": true,
4 | "experimentalObjectRestSpread": true
5 | },
6 | "env": {
7 | "browser": false,
8 | "es6": true,
9 | "node": true,
10 | "mocha": true
11 | },
12 | "globals": {
13 | "document": false,
14 | "navigator": false,
15 | "window": false
16 | },
17 | "rules": {
18 | "accessor-pairs": 2,
19 | "arrow-spacing": [
20 | 2,
21 | {
22 | "before": true,
23 | "after": true
24 | }
25 | ],
26 | "block-spacing": [
27 | 2,
28 | "always"
29 | ],
30 | "brace-style": [
31 | 2,
32 | "1tbs",
33 | {
34 | "allowSingleLine": true
35 | }
36 | ],
37 | "comma-dangle": [
38 | 2,
39 | "never"
40 | ],
41 | "comma-spacing": [
42 | 2,
43 | {
44 | "before": false,
45 | "after": true
46 | }
47 | ],
48 | "comma-style": [
49 | 2,
50 | "last"
51 | ],
52 | "constructor-super": 2,
53 | "curly": [
54 | 2,
55 | "multi-line"
56 | ],
57 | "dot-location": [
58 | 2,
59 | "property"
60 | ],
61 | "eol-last": 2,
62 | "eqeqeq": [
63 | 2,
64 | "allow-null"
65 | ],
66 | "generator-star-spacing": [
67 | 2,
68 | {
69 | "before": true,
70 | "after": true
71 | }
72 | ],
73 | "handle-callback-err": [
74 | 2,
75 | "^(err|error)$"
76 | ],
77 | "indent": [
78 | 2,
79 | 2,
80 | {
81 | "SwitchCase": 1
82 | }
83 | ],
84 | "key-spacing": [
85 | 2,
86 | {
87 | "beforeColon": false,
88 | "afterColon": true
89 | }
90 | ],
91 | "new-cap": [
92 | 2,
93 | {
94 | "newIsCap": true,
95 | "capIsNew": false
96 | }
97 | ],
98 | "new-parens": 2,
99 | "no-array-constructor": 2,
100 | "no-caller": 2,
101 | "no-class-assign": 2,
102 | "no-cond-assign": 2,
103 | "no-const-assign": 2,
104 | "no-control-regex": 2,
105 | "no-debugger": 2,
106 | "no-delete-var": 2,
107 | "no-dupe-args": 2,
108 | "no-dupe-class-members": 2,
109 | "no-dupe-keys": 2,
110 | "no-duplicate-case": 2,
111 | "no-empty-character-class": 2,
112 | "no-empty-label": 2,
113 | "no-eval": 2,
114 | "no-ex-assign": 2,
115 | "no-extend-native": 2,
116 | "no-extra-bind": 2,
117 | "no-extra-boolean-cast": 2,
118 | "no-extra-parens": [
119 | 2,
120 | "functions"
121 | ],
122 | "no-fallthrough": 2,
123 | "no-floating-decimal": 2,
124 | "no-func-assign": 2,
125 | "no-implied-eval": 2,
126 | "no-inner-declarations": [
127 | 2,
128 | "functions"
129 | ],
130 | "no-invalid-regexp": 2,
131 | "no-irregular-whitespace": 2,
132 | "no-iterator": 2,
133 | "no-label-var": 2,
134 | "no-labels": 2,
135 | "no-lone-blocks": 2,
136 | "no-mixed-spaces-and-tabs": 2,
137 | "no-multi-spaces": 2,
138 | "no-multi-str": 2,
139 | "no-multiple-empty-lines": [
140 | 2,
141 | {
142 | "max": 1
143 | }
144 | ],
145 | "no-native-reassign": 2,
146 | "no-negated-in-lhs": 2,
147 | "no-new": 2,
148 | "no-new-func": 2,
149 | "no-new-object": 2,
150 | "no-new-require": 2,
151 | "no-new-wrappers": 2,
152 | "no-obj-calls": 2,
153 | "no-octal": 2,
154 | "no-octal-escape": 2,
155 | "no-proto": 0,
156 | "no-redeclare": 2,
157 | "no-regex-spaces": 2,
158 | "no-return-assign": 2,
159 | "no-self-compare": 2,
160 | "no-sequences": 2,
161 | "no-shadow-restricted-names": 2,
162 | "no-spaced-func": 2,
163 | "no-sparse-arrays": 2,
164 | "no-this-before-super": 2,
165 | "no-throw-literal": 2,
166 | "no-trailing-spaces": 0,
167 | "no-undef": 2,
168 | "no-undef-init": 2,
169 | "no-unexpected-multiline": 2,
170 | "no-unneeded-ternary": [
171 | 2,
172 | {
173 | "defaultAssignment": false
174 | }
175 | ],
176 | "no-unreachable": 2,
177 | "no-unused-vars": [
178 | 2,
179 | {
180 | "vars": "all",
181 | "args": "none"
182 | }
183 | ],
184 | "no-useless-call": 0,
185 | "no-with": 2,
186 | "one-var": [
187 | 0,
188 | {
189 | "initialized": "never"
190 | }
191 | ],
192 | "operator-linebreak": [
193 | 0,
194 | "after",
195 | {
196 | "overrides": {
197 | "?": "before",
198 | ":": "before"
199 | }
200 | }
201 | ],
202 | "padded-blocks": [
203 | 0,
204 | "never"
205 | ],
206 | "quotes": [
207 | 2,
208 | "single",
209 | "avoid-escape"
210 | ],
211 | "radix": 2,
212 | "semi": [
213 | 2,
214 | "always"
215 | ],
216 | "semi-spacing": [
217 | 2,
218 | {
219 | "before": false,
220 | "after": true
221 | }
222 | ],
223 | "space-after-keywords": [
224 | 2,
225 | "always"
226 | ],
227 | "space-before-blocks": [
228 | 2,
229 | "always"
230 | ],
231 | "space-before-function-paren": [
232 | 2,
233 | "never"
234 | ],
235 | "space-before-keywords": [
236 | 2,
237 | "always"
238 | ],
239 | "space-in-parens": [
240 | 2,
241 | "never"
242 | ],
243 | "space-infix-ops": 2,
244 | "space-return-throw-case": 2,
245 | "space-unary-ops": [
246 | 2,
247 | {
248 | "words": true,
249 | "nonwords": false
250 | }
251 | ],
252 | "spaced-comment": [
253 | 0,
254 | "always",
255 | {
256 | "markers": [
257 | "global",
258 | "globals",
259 | "eslint",
260 | "eslint-disable",
261 | "*package",
262 | "!",
263 | ","
264 | ]
265 | }
266 | ],
267 | "use-isnan": 2,
268 | "valid-typeof": 2,
269 | "wrap-iife": [
270 | 2,
271 | "any"
272 | ],
273 | "yoda": [
274 | 2,
275 | "never"
276 | ]
277 | }
278 | }
279 |
--------------------------------------------------------------------------------
/test/fixtures/data/helpers.json:
--------------------------------------------------------------------------------
1 | {
2 | "helpers": [
3 | {
4 | "id": 12918338,
5 | "name": "frep",
6 | "full_name": "helpers/frep",
7 | "owner": {
8 | "login": "helpers",
9 | "id": 4811808,
10 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
11 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
12 | "url": "https://api.github.com/users/helpers",
13 | "html_url": "https://github.com/helpers",
14 | "followers_url": "https://api.github.com/users/helpers/followers",
15 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
16 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
17 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
18 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
19 | "organizations_url": "https://api.github.com/users/helpers/orgs",
20 | "repos_url": "https://api.github.com/users/helpers/repos",
21 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
22 | "received_events_url": "https://api.github.com/users/helpers/received_events",
23 | "type": "Organization",
24 | "site_admin": false
25 | },
26 | "private": false,
27 | "html_url": "https://github.com/helpers/frep",
28 | "description": "A find and replace utility. Modify strings by passing an array of RegExp or string replacement patterns",
29 | "fork": false,
30 | "url": "https://github.com/helpers/frep",
31 | "forks_url": "https://api.github.com/repos/helpers/frep/forks",
32 | "keys_url": "https://api.github.com/repos/helpers/frep/keys{/key_id}",
33 | "collaborators_url": "https://api.github.com/repos/helpers/frep/collaborators{/collaborator}",
34 | "teams_url": "https://api.github.com/repos/helpers/frep/teams",
35 | "hooks_url": "https://api.github.com/repos/helpers/frep/hooks",
36 | "issue_events_url": "https://api.github.com/repos/helpers/frep/issues/events{/number}",
37 | "events_url": "https://api.github.com/repos/helpers/frep/events",
38 | "assignees_url": "https://api.github.com/repos/helpers/frep/assignees{/user}",
39 | "branches_url": "https://api.github.com/repos/helpers/frep/branches{/branch}",
40 | "tags_url": "https://api.github.com/repos/helpers/frep/tags",
41 | "blobs_url": "https://api.github.com/repos/helpers/frep/git/blobs{/sha}",
42 | "git_tags_url": "https://api.github.com/repos/helpers/frep/git/tags{/sha}",
43 | "git_refs_url": "https://api.github.com/repos/helpers/frep/git/refs{/sha}",
44 | "trees_url": "https://api.github.com/repos/helpers/frep/git/trees{/sha}",
45 | "statuses_url": "https://api.github.com/repos/helpers/frep/statuses/{sha}",
46 | "languages_url": "https://api.github.com/repos/helpers/frep/languages",
47 | "stargazers_url": "https://api.github.com/repos/helpers/frep/stargazers",
48 | "contributors_url": "https://api.github.com/repos/helpers/frep/contributors",
49 | "subscribers_url": "https://api.github.com/repos/helpers/frep/subscribers",
50 | "subscription_url": "https://api.github.com/repos/helpers/frep/subscription",
51 | "commits_url": "https://api.github.com/repos/helpers/frep/commits{/sha}",
52 | "git_commits_url": "https://api.github.com/repos/helpers/frep/git/commits{/sha}",
53 | "comments_url": "https://api.github.com/repos/helpers/frep/comments{/number}",
54 | "issue_comment_url": "https://api.github.com/repos/helpers/frep/issues/comments/{number}",
55 | "contents_url": "https://api.github.com/repos/helpers/frep/contents/{+path}",
56 | "compare_url": "https://api.github.com/repos/helpers/frep/compare/{base}...{head}",
57 | "merges_url": "https://api.github.com/repos/helpers/frep/merges",
58 | "archive_url": "https://api.github.com/repos/helpers/frep/{archive_format}{/ref}",
59 | "downloads_url": "https://api.github.com/repos/helpers/frep/downloads",
60 | "issues_url": "https://api.github.com/repos/helpers/frep/issues{/number}",
61 | "pulls_url": "https://api.github.com/repos/helpers/frep/pulls{/number}",
62 | "milestones_url": "https://api.github.com/repos/helpers/frep/milestones{/number}",
63 | "notifications_url": "https://api.github.com/repos/helpers/frep/notifications{?since,all,participating}",
64 | "labels_url": "https://api.github.com/repos/helpers/frep/labels{/name}",
65 | "releases_url": "https://api.github.com/repos/helpers/frep/releases{/id}",
66 | "created_at": "2013-09-18T08:49:14Z",
67 | "updated_at": "2013-10-22T23:39:36Z",
68 | "pushed_at": "2013-10-03T03:24:23Z",
69 | "git_url": "git://github.com/helpers/frep.git",
70 | "ssh_url": "git@github.com:helpers/frep.git",
71 | "clone_url": "https://github.com/helpers/frep.git",
72 | "svn_url": "https://github.com/helpers/frep",
73 | "homepage": null,
74 | "size": 100,
75 | "stargazers_count": 2,
76 | "watchers_count": 2,
77 | "language": "JavaScript",
78 | "has_issues": true,
79 | "has_downloads": true,
80 | "has_wiki": true,
81 | "forks_count": 0,
82 | "mirror_url": null,
83 | "open_issues_count": 0,
84 | "forks": 0,
85 | "open_issues": 0,
86 | "watchers": 2,
87 | "default_branch": "master",
88 | "master_branch": "master",
89 | "permissions": {
90 | "admin": false,
91 | "push": false,
92 | "pull": true
93 | },
94 | "fullname": "helpers/frep",
95 | "download": "https://github.com/helpers/frep/archive/master.zip"
96 | },
97 | {
98 | "id": 13643090,
99 | "name": "fs-utils",
100 | "full_name": "helpers/fs-utils",
101 | "owner": {
102 | "login": "helpers",
103 | "id": 4811808,
104 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
105 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
106 | "url": "https://api.github.com/users/helpers",
107 | "html_url": "https://github.com/helpers",
108 | "followers_url": "https://api.github.com/users/helpers/followers",
109 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
110 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
111 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
112 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
113 | "organizations_url": "https://api.github.com/users/helpers/orgs",
114 | "repos_url": "https://api.github.com/users/helpers/repos",
115 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
116 | "received_events_url": "https://api.github.com/users/helpers/received_events",
117 | "type": "Organization",
118 | "site_admin": false
119 | },
120 | "private": false,
121 | "html_url": "https://github.com/helpers/fs-utils",
122 | "description": "File utils from Grunt.js. This is temporary, we'll switch to grunt-file when it's published.",
123 | "fork": false,
124 | "url": "https://github.com/helpers/fs-utils",
125 | "forks_url": "https://api.github.com/repos/helpers/fs-utils/forks",
126 | "keys_url": "https://api.github.com/repos/helpers/fs-utils/keys{/key_id}",
127 | "collaborators_url": "https://api.github.com/repos/helpers/fs-utils/collaborators{/collaborator}",
128 | "teams_url": "https://api.github.com/repos/helpers/fs-utils/teams",
129 | "hooks_url": "https://api.github.com/repos/helpers/fs-utils/hooks",
130 | "issue_events_url": "https://api.github.com/repos/helpers/fs-utils/issues/events{/number}",
131 | "events_url": "https://api.github.com/repos/helpers/fs-utils/events",
132 | "assignees_url": "https://api.github.com/repos/helpers/fs-utils/assignees{/user}",
133 | "branches_url": "https://api.github.com/repos/helpers/fs-utils/branches{/branch}",
134 | "tags_url": "https://api.github.com/repos/helpers/fs-utils/tags",
135 | "blobs_url": "https://api.github.com/repos/helpers/fs-utils/git/blobs{/sha}",
136 | "git_tags_url": "https://api.github.com/repos/helpers/fs-utils/git/tags{/sha}",
137 | "git_refs_url": "https://api.github.com/repos/helpers/fs-utils/git/refs{/sha}",
138 | "trees_url": "https://api.github.com/repos/helpers/fs-utils/git/trees{/sha}",
139 | "statuses_url": "https://api.github.com/repos/helpers/fs-utils/statuses/{sha}",
140 | "languages_url": "https://api.github.com/repos/helpers/fs-utils/languages",
141 | "stargazers_url": "https://api.github.com/repos/helpers/fs-utils/stargazers",
142 | "contributors_url": "https://api.github.com/repos/helpers/fs-utils/contributors",
143 | "subscribers_url": "https://api.github.com/repos/helpers/fs-utils/subscribers",
144 | "subscription_url": "https://api.github.com/repos/helpers/fs-utils/subscription",
145 | "commits_url": "https://api.github.com/repos/helpers/fs-utils/commits{/sha}",
146 | "git_commits_url": "https://api.github.com/repos/helpers/fs-utils/git/commits{/sha}",
147 | "comments_url": "https://api.github.com/repos/helpers/fs-utils/comments{/number}",
148 | "issue_comment_url": "https://api.github.com/repos/helpers/fs-utils/issues/comments/{number}",
149 | "contents_url": "https://api.github.com/repos/helpers/fs-utils/contents/{+path}",
150 | "compare_url": "https://api.github.com/repos/helpers/fs-utils/compare/{base}...{head}",
151 | "merges_url": "https://api.github.com/repos/helpers/fs-utils/merges",
152 | "archive_url": "https://api.github.com/repos/helpers/fs-utils/{archive_format}{/ref}",
153 | "downloads_url": "https://api.github.com/repos/helpers/fs-utils/downloads",
154 | "issues_url": "https://api.github.com/repos/helpers/fs-utils/issues{/number}",
155 | "pulls_url": "https://api.github.com/repos/helpers/fs-utils/pulls{/number}",
156 | "milestones_url": "https://api.github.com/repos/helpers/fs-utils/milestones{/number}",
157 | "notifications_url": "https://api.github.com/repos/helpers/fs-utils/notifications{?since,all,participating}",
158 | "labels_url": "https://api.github.com/repos/helpers/fs-utils/labels{/name}",
159 | "releases_url": "https://api.github.com/repos/helpers/fs-utils/releases{/id}",
160 | "created_at": "2013-10-17T08:21:17Z",
161 | "updated_at": "2013-11-08T18:12:09Z",
162 | "pushed_at": "2013-11-08T18:12:07Z",
163 | "git_url": "git://github.com/helpers/fs-utils.git",
164 | "ssh_url": "git@github.com:helpers/fs-utils.git",
165 | "clone_url": "https://github.com/helpers/fs-utils.git",
166 | "svn_url": "https://github.com/helpers/fs-utils",
167 | "homepage": "",
168 | "size": 100,
169 | "stargazers_count": 0,
170 | "watchers_count": 0,
171 | "language": "JavaScript",
172 | "has_issues": true,
173 | "has_downloads": true,
174 | "has_wiki": true,
175 | "forks_count": 0,
176 | "mirror_url": null,
177 | "open_issues_count": 0,
178 | "forks": 0,
179 | "open_issues": 0,
180 | "watchers": 0,
181 | "default_branch": "master",
182 | "master_branch": "master",
183 | "permissions": {
184 | "admin": false,
185 | "push": false,
186 | "pull": true
187 | },
188 | "fullname": "helpers/fs-utils",
189 | "download": "https://github.com/helpers/fs-utils/archive/master.zip"
190 | },
191 | {
192 | "id": 10557117,
193 | "name": "glob-object",
194 | "full_name": "helpers/glob-object",
195 | "owner": {
196 | "login": "helpers",
197 | "id": 4811808,
198 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
199 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
200 | "url": "https://api.github.com/users/helpers",
201 | "html_url": "https://github.com/helpers",
202 | "followers_url": "https://api.github.com/users/helpers/followers",
203 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
204 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
205 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
206 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
207 | "organizations_url": "https://api.github.com/users/helpers/orgs",
208 | "repos_url": "https://api.github.com/users/helpers/repos",
209 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
210 | "received_events_url": "https://api.github.com/users/helpers/received_events",
211 | "type": "Organization",
212 | "site_admin": false
213 | },
214 | "private": false,
215 | "html_url": "https://github.com/helpers/glob-object",
216 | "description": "Globbing for objects and properties.",
217 | "fork": false,
218 | "url": "https://github.com/helpers/glob-object",
219 | "forks_url": "https://api.github.com/repos/helpers/glob-object/forks",
220 | "keys_url": "https://api.github.com/repos/helpers/glob-object/keys{/key_id}",
221 | "collaborators_url": "https://api.github.com/repos/helpers/glob-object/collaborators{/collaborator}",
222 | "teams_url": "https://api.github.com/repos/helpers/glob-object/teams",
223 | "hooks_url": "https://api.github.com/repos/helpers/glob-object/hooks",
224 | "issue_events_url": "https://api.github.com/repos/helpers/glob-object/issues/events{/number}",
225 | "events_url": "https://api.github.com/repos/helpers/glob-object/events",
226 | "assignees_url": "https://api.github.com/repos/helpers/glob-object/assignees{/user}",
227 | "branches_url": "https://api.github.com/repos/helpers/glob-object/branches{/branch}",
228 | "tags_url": "https://api.github.com/repos/helpers/glob-object/tags",
229 | "blobs_url": "https://api.github.com/repos/helpers/glob-object/git/blobs{/sha}",
230 | "git_tags_url": "https://api.github.com/repos/helpers/glob-object/git/tags{/sha}",
231 | "git_refs_url": "https://api.github.com/repos/helpers/glob-object/git/refs{/sha}",
232 | "trees_url": "https://api.github.com/repos/helpers/glob-object/git/trees{/sha}",
233 | "statuses_url": "https://api.github.com/repos/helpers/glob-object/statuses/{sha}",
234 | "languages_url": "https://api.github.com/repos/helpers/glob-object/languages",
235 | "stargazers_url": "https://api.github.com/repos/helpers/glob-object/stargazers",
236 | "contributors_url": "https://api.github.com/repos/helpers/glob-object/contributors",
237 | "subscribers_url": "https://api.github.com/repos/helpers/glob-object/subscribers",
238 | "subscription_url": "https://api.github.com/repos/helpers/glob-object/subscription",
239 | "commits_url": "https://api.github.com/repos/helpers/glob-object/commits{/sha}",
240 | "git_commits_url": "https://api.github.com/repos/helpers/glob-object/git/commits{/sha}",
241 | "comments_url": "https://api.github.com/repos/helpers/glob-object/comments{/number}",
242 | "issue_comment_url": "https://api.github.com/repos/helpers/glob-object/issues/comments/{number}",
243 | "contents_url": "https://api.github.com/repos/helpers/glob-object/contents/{+path}",
244 | "compare_url": "https://api.github.com/repos/helpers/glob-object/compare/{base}...{head}",
245 | "merges_url": "https://api.github.com/repos/helpers/glob-object/merges",
246 | "archive_url": "https://api.github.com/repos/helpers/glob-object/{archive_format}{/ref}",
247 | "downloads_url": "https://api.github.com/repos/helpers/glob-object/downloads",
248 | "issues_url": "https://api.github.com/repos/helpers/glob-object/issues{/number}",
249 | "pulls_url": "https://api.github.com/repos/helpers/glob-object/pulls{/number}",
250 | "milestones_url": "https://api.github.com/repos/helpers/glob-object/milestones{/number}",
251 | "notifications_url": "https://api.github.com/repos/helpers/glob-object/notifications{?since,all,participating}",
252 | "labels_url": "https://api.github.com/repos/helpers/glob-object/labels{/name}",
253 | "releases_url": "https://api.github.com/repos/helpers/glob-object/releases{/id}",
254 | "created_at": "2013-06-07T19:14:49Z",
255 | "updated_at": "2013-11-09T12:53:53Z",
256 | "pushed_at": "2013-08-11T08:05:22Z",
257 | "git_url": "git://github.com/helpers/glob-object.git",
258 | "ssh_url": "git@github.com:helpers/glob-object.git",
259 | "clone_url": "https://github.com/helpers/glob-object.git",
260 | "svn_url": "https://github.com/helpers/glob-object",
261 | "homepage": null,
262 | "size": 46,
263 | "stargazers_count": 2,
264 | "watchers_count": 2,
265 | "language": null,
266 | "has_issues": true,
267 | "has_downloads": true,
268 | "has_wiki": true,
269 | "forks_count": 1,
270 | "mirror_url": null,
271 | "open_issues_count": 0,
272 | "forks": 1,
273 | "open_issues": 0,
274 | "watchers": 2,
275 | "default_branch": "master",
276 | "master_branch": "master",
277 | "permissions": {
278 | "admin": false,
279 | "push": false,
280 | "pull": true
281 | },
282 | "fullname": "helpers/glob-object",
283 | "download": "https://github.com/helpers/glob-object/archive/master.zip"
284 | },
285 | {
286 | "id": 12958319,
287 | "name": "glob-utils",
288 | "full_name": "helpers/glob-utils",
289 | "owner": {
290 | "login": "helpers",
291 | "id": 4811808,
292 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
293 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
294 | "url": "https://api.github.com/users/helpers",
295 | "html_url": "https://github.com/helpers",
296 | "followers_url": "https://api.github.com/users/helpers/followers",
297 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
298 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
299 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
300 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
301 | "organizations_url": "https://api.github.com/users/helpers/orgs",
302 | "repos_url": "https://api.github.com/users/helpers/repos",
303 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
304 | "received_events_url": "https://api.github.com/users/helpers/received_events",
305 | "type": "Organization",
306 | "site_admin": false
307 | },
308 | "private": false,
309 | "html_url": "https://github.com/helpers/glob-utils",
310 | "description": "Globbing utilities for Grunt.js and node.js projects.",
311 | "fork": false,
312 | "url": "https://github.com/helpers/glob-utils",
313 | "forks_url": "https://api.github.com/repos/helpers/glob-utils/forks",
314 | "keys_url": "https://api.github.com/repos/helpers/glob-utils/keys{/key_id}",
315 | "collaborators_url": "https://api.github.com/repos/helpers/glob-utils/collaborators{/collaborator}",
316 | "teams_url": "https://api.github.com/repos/helpers/glob-utils/teams",
317 | "hooks_url": "https://api.github.com/repos/helpers/glob-utils/hooks",
318 | "issue_events_url": "https://api.github.com/repos/helpers/glob-utils/issues/events{/number}",
319 | "events_url": "https://api.github.com/repos/helpers/glob-utils/events",
320 | "assignees_url": "https://api.github.com/repos/helpers/glob-utils/assignees{/user}",
321 | "branches_url": "https://api.github.com/repos/helpers/glob-utils/branches{/branch}",
322 | "tags_url": "https://api.github.com/repos/helpers/glob-utils/tags",
323 | "blobs_url": "https://api.github.com/repos/helpers/glob-utils/git/blobs{/sha}",
324 | "git_tags_url": "https://api.github.com/repos/helpers/glob-utils/git/tags{/sha}",
325 | "git_refs_url": "https://api.github.com/repos/helpers/glob-utils/git/refs{/sha}",
326 | "trees_url": "https://api.github.com/repos/helpers/glob-utils/git/trees{/sha}",
327 | "statuses_url": "https://api.github.com/repos/helpers/glob-utils/statuses/{sha}",
328 | "languages_url": "https://api.github.com/repos/helpers/glob-utils/languages",
329 | "stargazers_url": "https://api.github.com/repos/helpers/glob-utils/stargazers",
330 | "contributors_url": "https://api.github.com/repos/helpers/glob-utils/contributors",
331 | "subscribers_url": "https://api.github.com/repos/helpers/glob-utils/subscribers",
332 | "subscription_url": "https://api.github.com/repos/helpers/glob-utils/subscription",
333 | "commits_url": "https://api.github.com/repos/helpers/glob-utils/commits{/sha}",
334 | "git_commits_url": "https://api.github.com/repos/helpers/glob-utils/git/commits{/sha}",
335 | "comments_url": "https://api.github.com/repos/helpers/glob-utils/comments{/number}",
336 | "issue_comment_url": "https://api.github.com/repos/helpers/glob-utils/issues/comments/{number}",
337 | "contents_url": "https://api.github.com/repos/helpers/glob-utils/contents/{+path}",
338 | "compare_url": "https://api.github.com/repos/helpers/glob-utils/compare/{base}...{head}",
339 | "merges_url": "https://api.github.com/repos/helpers/glob-utils/merges",
340 | "archive_url": "https://api.github.com/repos/helpers/glob-utils/{archive_format}{/ref}",
341 | "downloads_url": "https://api.github.com/repos/helpers/glob-utils/downloads",
342 | "issues_url": "https://api.github.com/repos/helpers/glob-utils/issues{/number}",
343 | "pulls_url": "https://api.github.com/repos/helpers/glob-utils/pulls{/number}",
344 | "milestones_url": "https://api.github.com/repos/helpers/glob-utils/milestones{/number}",
345 | "notifications_url": "https://api.github.com/repos/helpers/glob-utils/notifications{?since,all,participating}",
346 | "labels_url": "https://api.github.com/repos/helpers/glob-utils/labels{/name}",
347 | "releases_url": "https://api.github.com/repos/helpers/glob-utils/releases{/id}",
348 | "created_at": "2013-09-19T20:13:28Z",
349 | "updated_at": "2013-11-15T10:43:54Z",
350 | "pushed_at": "2013-11-15T10:43:51Z",
351 | "git_url": "git://github.com/helpers/glob-utils.git",
352 | "ssh_url": "git@github.com:helpers/glob-utils.git",
353 | "clone_url": "https://github.com/helpers/glob-utils.git",
354 | "svn_url": "https://github.com/helpers/glob-utils",
355 | "homepage": "",
356 | "size": 132,
357 | "stargazers_count": 2,
358 | "watchers_count": 2,
359 | "language": "JavaScript",
360 | "has_issues": true,
361 | "has_downloads": true,
362 | "has_wiki": true,
363 | "forks_count": 0,
364 | "mirror_url": null,
365 | "open_issues_count": 0,
366 | "forks": 0,
367 | "open_issues": 0,
368 | "watchers": 2,
369 | "default_branch": "master",
370 | "master_branch": "master",
371 | "permissions": {
372 | "admin": false,
373 | "push": false,
374 | "pull": true
375 | },
376 | "fullname": "helpers/glob-utils",
377 | "download": "https://github.com/helpers/glob-utils/archive/master.zip"
378 | },
379 | {
380 | "id": 14579116,
381 | "name": "grunt-helpers",
382 | "full_name": "helpers/grunt-helpers",
383 | "owner": {
384 | "login": "helpers",
385 | "id": 4811808,
386 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
387 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
388 | "url": "https://api.github.com/users/helpers",
389 | "html_url": "https://github.com/helpers",
390 | "followers_url": "https://api.github.com/users/helpers/followers",
391 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
392 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
393 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
394 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
395 | "organizations_url": "https://api.github.com/users/helpers/orgs",
396 | "repos_url": "https://api.github.com/users/helpers/repos",
397 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
398 | "received_events_url": "https://api.github.com/users/helpers/received_events",
399 | "type": "Organization",
400 | "site_admin": false
401 | },
402 | "private": false,
403 | "html_url": "https://github.com/helpers/grunt-helpers",
404 | "description": "Utils for grunt.js projects.",
405 | "fork": false,
406 | "url": "https://github.com/helpers/grunt-helpers",
407 | "forks_url": "https://api.github.com/repos/helpers/grunt-helpers/forks",
408 | "keys_url": "https://api.github.com/repos/helpers/grunt-helpers/keys{/key_id}",
409 | "collaborators_url": "https://api.github.com/repos/helpers/grunt-helpers/collaborators{/collaborator}",
410 | "teams_url": "https://api.github.com/repos/helpers/grunt-helpers/teams",
411 | "hooks_url": "https://api.github.com/repos/helpers/grunt-helpers/hooks",
412 | "issue_events_url": "https://api.github.com/repos/helpers/grunt-helpers/issues/events{/number}",
413 | "events_url": "https://api.github.com/repos/helpers/grunt-helpers/events",
414 | "assignees_url": "https://api.github.com/repos/helpers/grunt-helpers/assignees{/user}",
415 | "branches_url": "https://api.github.com/repos/helpers/grunt-helpers/branches{/branch}",
416 | "tags_url": "https://api.github.com/repos/helpers/grunt-helpers/tags",
417 | "blobs_url": "https://api.github.com/repos/helpers/grunt-helpers/git/blobs{/sha}",
418 | "git_tags_url": "https://api.github.com/repos/helpers/grunt-helpers/git/tags{/sha}",
419 | "git_refs_url": "https://api.github.com/repos/helpers/grunt-helpers/git/refs{/sha}",
420 | "trees_url": "https://api.github.com/repos/helpers/grunt-helpers/git/trees{/sha}",
421 | "statuses_url": "https://api.github.com/repos/helpers/grunt-helpers/statuses/{sha}",
422 | "languages_url": "https://api.github.com/repos/helpers/grunt-helpers/languages",
423 | "stargazers_url": "https://api.github.com/repos/helpers/grunt-helpers/stargazers",
424 | "contributors_url": "https://api.github.com/repos/helpers/grunt-helpers/contributors",
425 | "subscribers_url": "https://api.github.com/repos/helpers/grunt-helpers/subscribers",
426 | "subscription_url": "https://api.github.com/repos/helpers/grunt-helpers/subscription",
427 | "commits_url": "https://api.github.com/repos/helpers/grunt-helpers/commits{/sha}",
428 | "git_commits_url": "https://api.github.com/repos/helpers/grunt-helpers/git/commits{/sha}",
429 | "comments_url": "https://api.github.com/repos/helpers/grunt-helpers/comments{/number}",
430 | "issue_comment_url": "https://api.github.com/repos/helpers/grunt-helpers/issues/comments/{number}",
431 | "contents_url": "https://api.github.com/repos/helpers/grunt-helpers/contents/{+path}",
432 | "compare_url": "https://api.github.com/repos/helpers/grunt-helpers/compare/{base}...{head}",
433 | "merges_url": "https://api.github.com/repos/helpers/grunt-helpers/merges",
434 | "archive_url": "https://api.github.com/repos/helpers/grunt-helpers/{archive_format}{/ref}",
435 | "downloads_url": "https://api.github.com/repos/helpers/grunt-helpers/downloads",
436 | "issues_url": "https://api.github.com/repos/helpers/grunt-helpers/issues{/number}",
437 | "pulls_url": "https://api.github.com/repos/helpers/grunt-helpers/pulls{/number}",
438 | "milestones_url": "https://api.github.com/repos/helpers/grunt-helpers/milestones{/number}",
439 | "notifications_url": "https://api.github.com/repos/helpers/grunt-helpers/notifications{?since,all,participating}",
440 | "labels_url": "https://api.github.com/repos/helpers/grunt-helpers/labels{/name}",
441 | "releases_url": "https://api.github.com/repos/helpers/grunt-helpers/releases{/id}",
442 | "created_at": "2013-11-21T05:54:04Z",
443 | "updated_at": "2013-11-26T14:08:07Z",
444 | "pushed_at": "2013-11-21T05:54:36Z",
445 | "git_url": "git://github.com/helpers/grunt-helpers.git",
446 | "ssh_url": "git@github.com:helpers/grunt-helpers.git",
447 | "clone_url": "https://github.com/helpers/grunt-helpers.git",
448 | "svn_url": "https://github.com/helpers/grunt-helpers",
449 | "homepage": null,
450 | "size": 84,
451 | "stargazers_count": 2,
452 | "watchers_count": 2,
453 | "language": "JavaScript",
454 | "has_issues": true,
455 | "has_downloads": true,
456 | "has_wiki": true,
457 | "forks_count": 0,
458 | "mirror_url": null,
459 | "open_issues_count": 0,
460 | "forks": 0,
461 | "open_issues": 0,
462 | "watchers": 2,
463 | "default_branch": "master",
464 | "master_branch": "master",
465 | "permissions": {
466 | "admin": false,
467 | "push": false,
468 | "pull": true
469 | },
470 | "fullname": "helpers/grunt-helpers",
471 | "download": "https://github.com/helpers/grunt-helpers/archive/master.zip"
472 | },
473 | {
474 | "id": 12114793,
475 | "name": "grunt-init-helper-mod",
476 | "full_name": "helpers/grunt-init-helper-mod",
477 | "owner": {
478 | "login": "helpers",
479 | "id": 4811808,
480 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
481 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
482 | "url": "https://api.github.com/users/helpers",
483 | "html_url": "https://github.com/helpers",
484 | "followers_url": "https://api.github.com/users/helpers/followers",
485 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
486 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
487 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
488 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
489 | "organizations_url": "https://api.github.com/users/helpers/orgs",
490 | "repos_url": "https://api.github.com/users/helpers/repos",
491 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
492 | "received_events_url": "https://api.github.com/users/helpers/received_events",
493 | "type": "Organization",
494 | "site_admin": false
495 | },
496 | "private": false,
497 | "html_url": "https://github.com/helpers/grunt-init-helper-mod",
498 | "description": "Grunt init template for creating a new helper module.",
499 | "fork": false,
500 | "url": "https://github.com/helpers/grunt-init-helper-mod",
501 | "forks_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/forks",
502 | "keys_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/keys{/key_id}",
503 | "collaborators_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/collaborators{/collaborator}",
504 | "teams_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/teams",
505 | "hooks_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/hooks",
506 | "issue_events_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/issues/events{/number}",
507 | "events_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/events",
508 | "assignees_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/assignees{/user}",
509 | "branches_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/branches{/branch}",
510 | "tags_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/tags",
511 | "blobs_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/git/blobs{/sha}",
512 | "git_tags_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/git/tags{/sha}",
513 | "git_refs_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/git/refs{/sha}",
514 | "trees_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/git/trees{/sha}",
515 | "statuses_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/statuses/{sha}",
516 | "languages_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/languages",
517 | "stargazers_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/stargazers",
518 | "contributors_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/contributors",
519 | "subscribers_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/subscribers",
520 | "subscription_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/subscription",
521 | "commits_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/commits{/sha}",
522 | "git_commits_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/git/commits{/sha}",
523 | "comments_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/comments{/number}",
524 | "issue_comment_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/issues/comments/{number}",
525 | "contents_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/contents/{+path}",
526 | "compare_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/compare/{base}...{head}",
527 | "merges_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/merges",
528 | "archive_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/{archive_format}{/ref}",
529 | "downloads_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/downloads",
530 | "issues_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/issues{/number}",
531 | "pulls_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/pulls{/number}",
532 | "milestones_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/milestones{/number}",
533 | "notifications_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/notifications{?since,all,participating}",
534 | "labels_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/labels{/name}",
535 | "releases_url": "https://api.github.com/repos/helpers/grunt-init-helper-mod/releases{/id}",
536 | "created_at": "2013-08-14T17:19:59Z",
537 | "updated_at": "2013-11-07T03:54:47Z",
538 | "pushed_at": "2013-11-07T03:54:44Z",
539 | "git_url": "git://github.com/helpers/grunt-init-helper-mod.git",
540 | "ssh_url": "git@github.com:helpers/grunt-init-helper-mod.git",
541 | "clone_url": "https://github.com/helpers/grunt-init-helper-mod.git",
542 | "svn_url": "https://github.com/helpers/grunt-init-helper-mod",
543 | "homepage": null,
544 | "size": 116,
545 | "stargazers_count": 1,
546 | "watchers_count": 1,
547 | "language": "JavaScript",
548 | "has_issues": true,
549 | "has_downloads": true,
550 | "has_wiki": true,
551 | "forks_count": 0,
552 | "mirror_url": null,
553 | "open_issues_count": 0,
554 | "forks": 0,
555 | "open_issues": 0,
556 | "watchers": 1,
557 | "default_branch": "master",
558 | "master_branch": "master",
559 | "permissions": {
560 | "admin": false,
561 | "push": false,
562 | "pull": true
563 | },
564 | "fullname": "helpers/grunt-init-helper-mod",
565 | "download": "https://github.com/helpers/grunt-init-helper-mod/archive/master.zip"
566 | },
567 | {
568 | "id": 13180384,
569 | "name": "handlebars-helper-aggregate",
570 | "full_name": "helpers/handlebars-helper-aggregate",
571 | "owner": {
572 | "login": "helpers",
573 | "id": 4811808,
574 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
575 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
576 | "url": "https://api.github.com/users/helpers",
577 | "html_url": "https://github.com/helpers",
578 | "followers_url": "https://api.github.com/users/helpers/followers",
579 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
580 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
581 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
582 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
583 | "organizations_url": "https://api.github.com/users/helpers/orgs",
584 | "repos_url": "https://api.github.com/users/helpers/repos",
585 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
586 | "received_events_url": "https://api.github.com/users/helpers/received_events",
587 | "type": "Organization",
588 | "site_admin": false
589 | },
590 | "private": false,
591 | "html_url": "https://github.com/helpers/handlebars-helper-aggregate",
592 | "description": "{{aggregate}} handlebars helper. inlines content from multiple files optionally using wildcard (globbing/minimatch) patterns. uses YAML front matter as context for each file. optionally pass in a sorting function.",
593 | "fork": false,
594 | "url": "https://github.com/helpers/handlebars-helper-aggregate",
595 | "forks_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/forks",
596 | "keys_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/keys{/key_id}",
597 | "collaborators_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/collaborators{/collaborator}",
598 | "teams_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/teams",
599 | "hooks_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/hooks",
600 | "issue_events_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/issues/events{/number}",
601 | "events_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/events",
602 | "assignees_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/assignees{/user}",
603 | "branches_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/branches{/branch}",
604 | "tags_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/tags",
605 | "blobs_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/git/blobs{/sha}",
606 | "git_tags_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/git/tags{/sha}",
607 | "git_refs_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/git/refs{/sha}",
608 | "trees_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/git/trees{/sha}",
609 | "statuses_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/statuses/{sha}",
610 | "languages_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/languages",
611 | "stargazers_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/stargazers",
612 | "contributors_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/contributors",
613 | "subscribers_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/subscribers",
614 | "subscription_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/subscription",
615 | "commits_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/commits{/sha}",
616 | "git_commits_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/git/commits{/sha}",
617 | "comments_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/comments{/number}",
618 | "issue_comment_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/issues/comments/{number}",
619 | "contents_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/contents/{+path}",
620 | "compare_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/compare/{base}...{head}",
621 | "merges_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/merges",
622 | "archive_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/{archive_format}{/ref}",
623 | "downloads_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/downloads",
624 | "issues_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/issues{/number}",
625 | "pulls_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/pulls{/number}",
626 | "milestones_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/milestones{/number}",
627 | "notifications_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/notifications{?since,all,participating}",
628 | "labels_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/labels{/name}",
629 | "releases_url": "https://api.github.com/repos/helpers/handlebars-helper-aggregate/releases{/id}",
630 | "created_at": "2013-09-28T20:37:20Z",
631 | "updated_at": "2013-10-21T22:25:33Z",
632 | "pushed_at": "2013-10-21T22:25:32Z",
633 | "git_url": "git://github.com/helpers/handlebars-helper-aggregate.git",
634 | "ssh_url": "git@github.com:helpers/handlebars-helper-aggregate.git",
635 | "clone_url": "https://github.com/helpers/handlebars-helper-aggregate.git",
636 | "svn_url": "https://github.com/helpers/handlebars-helper-aggregate",
637 | "homepage": null,
638 | "size": 137,
639 | "stargazers_count": 3,
640 | "watchers_count": 3,
641 | "language": "JavaScript",
642 | "has_issues": true,
643 | "has_downloads": true,
644 | "has_wiki": true,
645 | "forks_count": 1,
646 | "mirror_url": null,
647 | "open_issues_count": 0,
648 | "forks": 1,
649 | "open_issues": 0,
650 | "watchers": 3,
651 | "default_branch": "master",
652 | "master_branch": "master",
653 | "permissions": {
654 | "admin": false,
655 | "push": false,
656 | "pull": true
657 | },
658 | "fullname": "helpers/handlebars-helper-aggregate",
659 | "download": "https://github.com/helpers/handlebars-helper-aggregate/archive/master.zip"
660 | },
661 | {
662 | "id": 13198005,
663 | "name": "handlebars-helper-compose",
664 | "full_name": "helpers/handlebars-helper-compose",
665 | "owner": {
666 | "login": "helpers",
667 | "id": 4811808,
668 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
669 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
670 | "url": "https://api.github.com/users/helpers",
671 | "html_url": "https://github.com/helpers",
672 | "followers_url": "https://api.github.com/users/helpers/followers",
673 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
674 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
675 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
676 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
677 | "organizations_url": "https://api.github.com/users/helpers/orgs",
678 | "repos_url": "https://api.github.com/users/helpers/repos",
679 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
680 | "received_events_url": "https://api.github.com/users/helpers/received_events",
681 | "type": "Organization",
682 | "site_admin": false
683 | },
684 | "private": false,
685 | "html_url": "https://github.com/helpers/handlebars-helper-compose",
686 | "description": "{{compose}} handlebars helper. Similar to {{aggregate}}, but this is a block expression helper that inlines content from multiple files differently, extracting YAML front matter to pass to context for each file. Optionally use wildcard (globbing/minimatch) patterns. Accepts compare function as 3rd parameter for sorting inlined files.",
687 | "fork": false,
688 | "url": "https://github.com/helpers/handlebars-helper-compose",
689 | "forks_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/forks",
690 | "keys_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/keys{/key_id}",
691 | "collaborators_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/collaborators{/collaborator}",
692 | "teams_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/teams",
693 | "hooks_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/hooks",
694 | "issue_events_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/issues/events{/number}",
695 | "events_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/events",
696 | "assignees_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/assignees{/user}",
697 | "branches_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/branches{/branch}",
698 | "tags_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/tags",
699 | "blobs_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/git/blobs{/sha}",
700 | "git_tags_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/git/tags{/sha}",
701 | "git_refs_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/git/refs{/sha}",
702 | "trees_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/git/trees{/sha}",
703 | "statuses_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/statuses/{sha}",
704 | "languages_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/languages",
705 | "stargazers_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/stargazers",
706 | "contributors_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/contributors",
707 | "subscribers_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/subscribers",
708 | "subscription_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/subscription",
709 | "commits_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/commits{/sha}",
710 | "git_commits_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/git/commits{/sha}",
711 | "comments_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/comments{/number}",
712 | "issue_comment_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/issues/comments/{number}",
713 | "contents_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/contents/{+path}",
714 | "compare_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/compare/{base}...{head}",
715 | "merges_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/merges",
716 | "archive_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/{archive_format}{/ref}",
717 | "downloads_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/downloads",
718 | "issues_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/issues{/number}",
719 | "pulls_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/pulls{/number}",
720 | "milestones_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/milestones{/number}",
721 | "notifications_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/notifications{?since,all,participating}",
722 | "labels_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/labels{/name}",
723 | "releases_url": "https://api.github.com/repos/helpers/handlebars-helper-compose/releases{/id}",
724 | "created_at": "2013-09-29T19:02:33Z",
725 | "updated_at": "2013-11-23T06:20:19Z",
726 | "pushed_at": "2013-11-01T09:49:48Z",
727 | "git_url": "git://github.com/helpers/handlebars-helper-compose.git",
728 | "ssh_url": "git@github.com:helpers/handlebars-helper-compose.git",
729 | "clone_url": "https://github.com/helpers/handlebars-helper-compose.git",
730 | "svn_url": "https://github.com/helpers/handlebars-helper-compose",
731 | "homepage": null,
732 | "size": 163,
733 | "stargazers_count": 3,
734 | "watchers_count": 3,
735 | "language": "JavaScript",
736 | "has_issues": true,
737 | "has_downloads": true,
738 | "has_wiki": true,
739 | "forks_count": 3,
740 | "mirror_url": null,
741 | "open_issues_count": 2,
742 | "forks": 3,
743 | "open_issues": 2,
744 | "watchers": 3,
745 | "default_branch": "master",
746 | "master_branch": "master",
747 | "permissions": {
748 | "admin": false,
749 | "push": false,
750 | "pull": true
751 | },
752 | "fullname": "helpers/handlebars-helper-compose",
753 | "download": "https://github.com/helpers/handlebars-helper-compose/archive/master.zip"
754 | },
755 | {
756 | "id": 13756735,
757 | "name": "handlebars-helper-condense",
758 | "full_name": "helpers/handlebars-helper-condense",
759 | "owner": {
760 | "login": "helpers",
761 | "id": 4811808,
762 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
763 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
764 | "url": "https://api.github.com/users/helpers",
765 | "html_url": "https://github.com/helpers",
766 | "followers_url": "https://api.github.com/users/helpers/followers",
767 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
768 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
769 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
770 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
771 | "organizations_url": "https://api.github.com/users/helpers/orgs",
772 | "repos_url": "https://api.github.com/users/helpers/repos",
773 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
774 | "received_events_url": "https://api.github.com/users/helpers/received_events",
775 | "type": "Organization",
776 | "site_admin": false
777 | },
778 | "private": false,
779 | "html_url": "https://github.com/helpers/handlebars-helper-condense",
780 | "description": "Remove extra newlines from HTML content.",
781 | "fork": false,
782 | "url": "https://github.com/helpers/handlebars-helper-condense",
783 | "forks_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/forks",
784 | "keys_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/keys{/key_id}",
785 | "collaborators_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/collaborators{/collaborator}",
786 | "teams_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/teams",
787 | "hooks_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/hooks",
788 | "issue_events_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/issues/events{/number}",
789 | "events_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/events",
790 | "assignees_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/assignees{/user}",
791 | "branches_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/branches{/branch}",
792 | "tags_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/tags",
793 | "blobs_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/git/blobs{/sha}",
794 | "git_tags_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/git/tags{/sha}",
795 | "git_refs_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/git/refs{/sha}",
796 | "trees_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/git/trees{/sha}",
797 | "statuses_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/statuses/{sha}",
798 | "languages_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/languages",
799 | "stargazers_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/stargazers",
800 | "contributors_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/contributors",
801 | "subscribers_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/subscribers",
802 | "subscription_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/subscription",
803 | "commits_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/commits{/sha}",
804 | "git_commits_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/git/commits{/sha}",
805 | "comments_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/comments{/number}",
806 | "issue_comment_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/issues/comments/{number}",
807 | "contents_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/contents/{+path}",
808 | "compare_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/compare/{base}...{head}",
809 | "merges_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/merges",
810 | "archive_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/{archive_format}{/ref}",
811 | "downloads_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/downloads",
812 | "issues_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/issues{/number}",
813 | "pulls_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/pulls{/number}",
814 | "milestones_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/milestones{/number}",
815 | "notifications_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/notifications{?since,all,participating}",
816 | "labels_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/labels{/name}",
817 | "releases_url": "https://api.github.com/repos/helpers/handlebars-helper-condense/releases{/id}",
818 | "created_at": "2013-10-21T22:16:16Z",
819 | "updated_at": "2013-10-21T22:17:18Z",
820 | "pushed_at": "2013-10-21T22:17:00Z",
821 | "git_url": "git://github.com/helpers/handlebars-helper-condense.git",
822 | "ssh_url": "git@github.com:helpers/handlebars-helper-condense.git",
823 | "clone_url": "https://github.com/helpers/handlebars-helper-condense.git",
824 | "svn_url": "https://github.com/helpers/handlebars-helper-condense",
825 | "homepage": null,
826 | "size": 76,
827 | "stargazers_count": 1,
828 | "watchers_count": 1,
829 | "language": "JavaScript",
830 | "has_issues": true,
831 | "has_downloads": true,
832 | "has_wiki": true,
833 | "forks_count": 0,
834 | "mirror_url": null,
835 | "open_issues_count": 0,
836 | "forks": 0,
837 | "open_issues": 0,
838 | "watchers": 1,
839 | "default_branch": "master",
840 | "master_branch": "master",
841 | "permissions": {
842 | "admin": false,
843 | "push": false,
844 | "pull": true
845 | },
846 | "fullname": "helpers/handlebars-helper-condense",
847 | "download": "https://github.com/helpers/handlebars-helper-condense/archive/master.zip"
848 | },
849 | {
850 | "id": 13983132,
851 | "name": "handlebars-helper-eachitems",
852 | "full_name": "helpers/handlebars-helper-eachitems",
853 | "owner": {
854 | "login": "helpers",
855 | "id": 4811808,
856 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
857 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
858 | "url": "https://api.github.com/users/helpers",
859 | "html_url": "https://github.com/helpers",
860 | "followers_url": "https://api.github.com/users/helpers/followers",
861 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
862 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
863 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
864 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
865 | "organizations_url": "https://api.github.com/users/helpers/orgs",
866 | "repos_url": "https://api.github.com/users/helpers/repos",
867 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
868 | "received_events_url": "https://api.github.com/users/helpers/received_events",
869 | "type": "Organization",
870 | "site_admin": false
871 | },
872 | "private": false,
873 | "html_url": "https://github.com/helpers/handlebars-helper-eachitems",
874 | "description": "{{eachItems}} handlebars helper.",
875 | "fork": false,
876 | "url": "https://github.com/helpers/handlebars-helper-eachitems",
877 | "forks_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/forks",
878 | "keys_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/keys{/key_id}",
879 | "collaborators_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/collaborators{/collaborator}",
880 | "teams_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/teams",
881 | "hooks_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/hooks",
882 | "issue_events_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/issues/events{/number}",
883 | "events_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/events",
884 | "assignees_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/assignees{/user}",
885 | "branches_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/branches{/branch}",
886 | "tags_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/tags",
887 | "blobs_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/git/blobs{/sha}",
888 | "git_tags_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/git/tags{/sha}",
889 | "git_refs_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/git/refs{/sha}",
890 | "trees_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/git/trees{/sha}",
891 | "statuses_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/statuses/{sha}",
892 | "languages_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/languages",
893 | "stargazers_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/stargazers",
894 | "contributors_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/contributors",
895 | "subscribers_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/subscribers",
896 | "subscription_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/subscription",
897 | "commits_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/commits{/sha}",
898 | "git_commits_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/git/commits{/sha}",
899 | "comments_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/comments{/number}",
900 | "issue_comment_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/issues/comments/{number}",
901 | "contents_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/contents/{+path}",
902 | "compare_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/compare/{base}...{head}",
903 | "merges_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/merges",
904 | "archive_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/{archive_format}{/ref}",
905 | "downloads_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/downloads",
906 | "issues_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/issues{/number}",
907 | "pulls_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/pulls{/number}",
908 | "milestones_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/milestones{/number}",
909 | "notifications_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/notifications{?since,all,participating}",
910 | "labels_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/labels{/name}",
911 | "releases_url": "https://api.github.com/repos/helpers/handlebars-helper-eachitems/releases{/id}",
912 | "created_at": "2013-10-30T10:12:14Z",
913 | "updated_at": "2013-10-30T12:28:48Z",
914 | "pushed_at": "2013-10-30T12:28:44Z",
915 | "git_url": "git://github.com/helpers/handlebars-helper-eachitems.git",
916 | "ssh_url": "git@github.com:helpers/handlebars-helper-eachitems.git",
917 | "clone_url": "https://github.com/helpers/handlebars-helper-eachitems.git",
918 | "svn_url": "https://github.com/helpers/handlebars-helper-eachitems",
919 | "homepage": null,
920 | "size": 100,
921 | "stargazers_count": 1,
922 | "watchers_count": 1,
923 | "language": "JavaScript",
924 | "has_issues": true,
925 | "has_downloads": true,
926 | "has_wiki": true,
927 | "forks_count": 0,
928 | "mirror_url": null,
929 | "open_issues_count": 0,
930 | "forks": 0,
931 | "open_issues": 0,
932 | "watchers": 1,
933 | "default_branch": "master",
934 | "master_branch": "master",
935 | "permissions": {
936 | "admin": false,
937 | "push": false,
938 | "pull": true
939 | },
940 | "fullname": "helpers/handlebars-helper-eachitems",
941 | "download": "https://github.com/helpers/handlebars-helper-eachitems/archive/master.zip"
942 | },
943 | {
944 | "id": 12873119,
945 | "name": "handlebars-helper-jade",
946 | "full_name": "helpers/handlebars-helper-jade",
947 | "owner": {
948 | "login": "helpers",
949 | "id": 4811808,
950 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
951 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
952 | "url": "https://api.github.com/users/helpers",
953 | "html_url": "https://github.com/helpers",
954 | "followers_url": "https://api.github.com/users/helpers/followers",
955 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
956 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
957 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
958 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
959 | "organizations_url": "https://api.github.com/users/helpers/orgs",
960 | "repos_url": "https://api.github.com/users/helpers/repos",
961 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
962 | "received_events_url": "https://api.github.com/users/helpers/received_events",
963 | "type": "Organization",
964 | "site_admin": false
965 | },
966 | "private": false,
967 | "html_url": "https://github.com/helpers/handlebars-helper-jade",
968 | "description": "{{jade}} handlebars helper, for converting basic Jade templates to HTML. ",
969 | "fork": false,
970 | "url": "https://github.com/helpers/handlebars-helper-jade",
971 | "forks_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/forks",
972 | "keys_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/keys{/key_id}",
973 | "collaborators_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/collaborators{/collaborator}",
974 | "teams_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/teams",
975 | "hooks_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/hooks",
976 | "issue_events_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/issues/events{/number}",
977 | "events_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/events",
978 | "assignees_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/assignees{/user}",
979 | "branches_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/branches{/branch}",
980 | "tags_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/tags",
981 | "blobs_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/git/blobs{/sha}",
982 | "git_tags_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/git/tags{/sha}",
983 | "git_refs_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/git/refs{/sha}",
984 | "trees_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/git/trees{/sha}",
985 | "statuses_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/statuses/{sha}",
986 | "languages_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/languages",
987 | "stargazers_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/stargazers",
988 | "contributors_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/contributors",
989 | "subscribers_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/subscribers",
990 | "subscription_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/subscription",
991 | "commits_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/commits{/sha}",
992 | "git_commits_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/git/commits{/sha}",
993 | "comments_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/comments{/number}",
994 | "issue_comment_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/issues/comments/{number}",
995 | "contents_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/contents/{+path}",
996 | "compare_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/compare/{base}...{head}",
997 | "merges_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/merges",
998 | "archive_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/{archive_format}{/ref}",
999 | "downloads_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/downloads",
1000 | "issues_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/issues{/number}",
1001 | "pulls_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/pulls{/number}",
1002 | "milestones_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/milestones{/number}",
1003 | "notifications_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/notifications{?since,all,participating}",
1004 | "labels_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/labels{/name}",
1005 | "releases_url": "https://api.github.com/repos/helpers/handlebars-helper-jade/releases{/id}",
1006 | "created_at": "2013-09-16T17:06:28Z",
1007 | "updated_at": "2013-10-22T01:00:28Z",
1008 | "pushed_at": "2013-10-21T22:11:53Z",
1009 | "git_url": "git://github.com/helpers/handlebars-helper-jade.git",
1010 | "ssh_url": "git@github.com:helpers/handlebars-helper-jade.git",
1011 | "clone_url": "https://github.com/helpers/handlebars-helper-jade.git",
1012 | "svn_url": "https://github.com/helpers/handlebars-helper-jade",
1013 | "homepage": "",
1014 | "size": 96,
1015 | "stargazers_count": 1,
1016 | "watchers_count": 1,
1017 | "language": "JavaScript",
1018 | "has_issues": true,
1019 | "has_downloads": true,
1020 | "has_wiki": true,
1021 | "forks_count": 0,
1022 | "mirror_url": null,
1023 | "open_issues_count": 1,
1024 | "forks": 0,
1025 | "open_issues": 1,
1026 | "watchers": 1,
1027 | "default_branch": "master",
1028 | "master_branch": "master",
1029 | "permissions": {
1030 | "admin": false,
1031 | "push": false,
1032 | "pull": true
1033 | },
1034 | "fullname": "helpers/handlebars-helper-jade",
1035 | "download": "https://github.com/helpers/handlebars-helper-jade/archive/master.zip"
1036 | },
1037 | {
1038 | "id": 14416372,
1039 | "name": "handlebars-helper-less",
1040 | "full_name": "helpers/handlebars-helper-less",
1041 | "owner": {
1042 | "login": "helpers",
1043 | "id": 4811808,
1044 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
1045 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
1046 | "url": "https://api.github.com/users/helpers",
1047 | "html_url": "https://github.com/helpers",
1048 | "followers_url": "https://api.github.com/users/helpers/followers",
1049 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
1050 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
1051 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
1052 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
1053 | "organizations_url": "https://api.github.com/users/helpers/orgs",
1054 | "repos_url": "https://api.github.com/users/helpers/repos",
1055 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
1056 | "received_events_url": "https://api.github.com/users/helpers/received_events",
1057 | "type": "Organization",
1058 | "site_admin": false
1059 | },
1060 | "private": false,
1061 | "html_url": "https://github.com/helpers/handlebars-helper-less",
1062 | "description": "{{less}} handlebars helper. This helper allows you to use LESS inside style tags in your HTML. By default, the resulting CSS will be rendered inside the `` tags of the rendered HTML, but you may alternatively define a destination path using the `dest` hash option of the helper.",
1063 | "fork": false,
1064 | "url": "https://github.com/helpers/handlebars-helper-less",
1065 | "forks_url": "https://api.github.com/repos/helpers/handlebars-helper-less/forks",
1066 | "keys_url": "https://api.github.com/repos/helpers/handlebars-helper-less/keys{/key_id}",
1067 | "collaborators_url": "https://api.github.com/repos/helpers/handlebars-helper-less/collaborators{/collaborator}",
1068 | "teams_url": "https://api.github.com/repos/helpers/handlebars-helper-less/teams",
1069 | "hooks_url": "https://api.github.com/repos/helpers/handlebars-helper-less/hooks",
1070 | "issue_events_url": "https://api.github.com/repos/helpers/handlebars-helper-less/issues/events{/number}",
1071 | "events_url": "https://api.github.com/repos/helpers/handlebars-helper-less/events",
1072 | "assignees_url": "https://api.github.com/repos/helpers/handlebars-helper-less/assignees{/user}",
1073 | "branches_url": "https://api.github.com/repos/helpers/handlebars-helper-less/branches{/branch}",
1074 | "tags_url": "https://api.github.com/repos/helpers/handlebars-helper-less/tags",
1075 | "blobs_url": "https://api.github.com/repos/helpers/handlebars-helper-less/git/blobs{/sha}",
1076 | "git_tags_url": "https://api.github.com/repos/helpers/handlebars-helper-less/git/tags{/sha}",
1077 | "git_refs_url": "https://api.github.com/repos/helpers/handlebars-helper-less/git/refs{/sha}",
1078 | "trees_url": "https://api.github.com/repos/helpers/handlebars-helper-less/git/trees{/sha}",
1079 | "statuses_url": "https://api.github.com/repos/helpers/handlebars-helper-less/statuses/{sha}",
1080 | "languages_url": "https://api.github.com/repos/helpers/handlebars-helper-less/languages",
1081 | "stargazers_url": "https://api.github.com/repos/helpers/handlebars-helper-less/stargazers",
1082 | "contributors_url": "https://api.github.com/repos/helpers/handlebars-helper-less/contributors",
1083 | "subscribers_url": "https://api.github.com/repos/helpers/handlebars-helper-less/subscribers",
1084 | "subscription_url": "https://api.github.com/repos/helpers/handlebars-helper-less/subscription",
1085 | "commits_url": "https://api.github.com/repos/helpers/handlebars-helper-less/commits{/sha}",
1086 | "git_commits_url": "https://api.github.com/repos/helpers/handlebars-helper-less/git/commits{/sha}",
1087 | "comments_url": "https://api.github.com/repos/helpers/handlebars-helper-less/comments{/number}",
1088 | "issue_comment_url": "https://api.github.com/repos/helpers/handlebars-helper-less/issues/comments/{number}",
1089 | "contents_url": "https://api.github.com/repos/helpers/handlebars-helper-less/contents/{+path}",
1090 | "compare_url": "https://api.github.com/repos/helpers/handlebars-helper-less/compare/{base}...{head}",
1091 | "merges_url": "https://api.github.com/repos/helpers/handlebars-helper-less/merges",
1092 | "archive_url": "https://api.github.com/repos/helpers/handlebars-helper-less/{archive_format}{/ref}",
1093 | "downloads_url": "https://api.github.com/repos/helpers/handlebars-helper-less/downloads",
1094 | "issues_url": "https://api.github.com/repos/helpers/handlebars-helper-less/issues{/number}",
1095 | "pulls_url": "https://api.github.com/repos/helpers/handlebars-helper-less/pulls{/number}",
1096 | "milestones_url": "https://api.github.com/repos/helpers/handlebars-helper-less/milestones{/number}",
1097 | "notifications_url": "https://api.github.com/repos/helpers/handlebars-helper-less/notifications{?since,all,participating}",
1098 | "labels_url": "https://api.github.com/repos/helpers/handlebars-helper-less/labels{/name}",
1099 | "releases_url": "https://api.github.com/repos/helpers/handlebars-helper-less/releases{/id}",
1100 | "created_at": "2013-11-15T05:58:17Z",
1101 | "updated_at": "2013-11-15T11:45:28Z",
1102 | "pushed_at": "2013-11-15T06:10:16Z",
1103 | "git_url": "git://github.com/helpers/handlebars-helper-less.git",
1104 | "ssh_url": "git@github.com:helpers/handlebars-helper-less.git",
1105 | "clone_url": "https://github.com/helpers/handlebars-helper-less.git",
1106 | "svn_url": "https://github.com/helpers/handlebars-helper-less",
1107 | "homepage": null,
1108 | "size": 84,
1109 | "stargazers_count": 2,
1110 | "watchers_count": 2,
1111 | "language": "JavaScript",
1112 | "has_issues": true,
1113 | "has_downloads": true,
1114 | "has_wiki": true,
1115 | "forks_count": 0,
1116 | "mirror_url": null,
1117 | "open_issues_count": 0,
1118 | "forks": 0,
1119 | "open_issues": 0,
1120 | "watchers": 2,
1121 | "default_branch": "master",
1122 | "master_branch": "master",
1123 | "permissions": {
1124 | "admin": false,
1125 | "push": false,
1126 | "pull": true
1127 | },
1128 | "fullname": "helpers/handlebars-helper-less",
1129 | "download": "https://github.com/helpers/handlebars-helper-less/archive/master.zip"
1130 | },
1131 | {
1132 | "id": 13768407,
1133 | "name": "handlebars-helper-lorem",
1134 | "full_name": "helpers/handlebars-helper-lorem",
1135 | "owner": {
1136 | "login": "helpers",
1137 | "id": 4811808,
1138 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
1139 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
1140 | "url": "https://api.github.com/users/helpers",
1141 | "html_url": "https://github.com/helpers",
1142 | "followers_url": "https://api.github.com/users/helpers/followers",
1143 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
1144 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
1145 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
1146 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
1147 | "organizations_url": "https://api.github.com/users/helpers/orgs",
1148 | "repos_url": "https://api.github.com/users/helpers/repos",
1149 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
1150 | "received_events_url": "https://api.github.com/users/helpers/received_events",
1151 | "type": "Organization",
1152 | "site_admin": false
1153 | },
1154 | "private": false,
1155 | "html_url": "https://github.com/helpers/handlebars-helper-lorem",
1156 | "description": "{{lorem}} handlebars helper, for generating lorem lorem placeholder text.",
1157 | "fork": false,
1158 | "url": "https://github.com/helpers/handlebars-helper-lorem",
1159 | "forks_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/forks",
1160 | "keys_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/keys{/key_id}",
1161 | "collaborators_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/collaborators{/collaborator}",
1162 | "teams_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/teams",
1163 | "hooks_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/hooks",
1164 | "issue_events_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/issues/events{/number}",
1165 | "events_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/events",
1166 | "assignees_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/assignees{/user}",
1167 | "branches_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/branches{/branch}",
1168 | "tags_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/tags",
1169 | "blobs_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/git/blobs{/sha}",
1170 | "git_tags_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/git/tags{/sha}",
1171 | "git_refs_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/git/refs{/sha}",
1172 | "trees_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/git/trees{/sha}",
1173 | "statuses_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/statuses/{sha}",
1174 | "languages_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/languages",
1175 | "stargazers_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/stargazers",
1176 | "contributors_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/contributors",
1177 | "subscribers_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/subscribers",
1178 | "subscription_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/subscription",
1179 | "commits_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/commits{/sha}",
1180 | "git_commits_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/git/commits{/sha}",
1181 | "comments_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/comments{/number}",
1182 | "issue_comment_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/issues/comments/{number}",
1183 | "contents_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/contents/{+path}",
1184 | "compare_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/compare/{base}...{head}",
1185 | "merges_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/merges",
1186 | "archive_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/{archive_format}{/ref}",
1187 | "downloads_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/downloads",
1188 | "issues_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/issues{/number}",
1189 | "pulls_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/pulls{/number}",
1190 | "milestones_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/milestones{/number}",
1191 | "notifications_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/notifications{?since,all,participating}",
1192 | "labels_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/labels{/name}",
1193 | "releases_url": "https://api.github.com/repos/helpers/handlebars-helper-lorem/releases{/id}",
1194 | "created_at": "2013-10-22T09:22:42Z",
1195 | "updated_at": "2013-10-27T23:07:52Z",
1196 | "pushed_at": "2013-10-22T09:24:17Z",
1197 | "git_url": "git://github.com/helpers/handlebars-helper-lorem.git",
1198 | "ssh_url": "git@github.com:helpers/handlebars-helper-lorem.git",
1199 | "clone_url": "https://github.com/helpers/handlebars-helper-lorem.git",
1200 | "svn_url": "https://github.com/helpers/handlebars-helper-lorem",
1201 | "homepage": "http://assemble.io/helpers/",
1202 | "size": 76,
1203 | "stargazers_count": 1,
1204 | "watchers_count": 1,
1205 | "language": "JavaScript",
1206 | "has_issues": true,
1207 | "has_downloads": true,
1208 | "has_wiki": true,
1209 | "forks_count": 0,
1210 | "mirror_url": null,
1211 | "open_issues_count": 0,
1212 | "forks": 0,
1213 | "open_issues": 0,
1214 | "watchers": 1,
1215 | "default_branch": "master",
1216 | "master_branch": "master",
1217 | "permissions": {
1218 | "admin": false,
1219 | "push": false,
1220 | "pull": true
1221 | },
1222 | "fullname": "helpers/handlebars-helper-lorem",
1223 | "download": "https://github.com/helpers/handlebars-helper-lorem/archive/master.zip"
1224 | },
1225 | {
1226 | "id": 14389639,
1227 | "name": "handlebars-helper-minify",
1228 | "full_name": "helpers/handlebars-helper-minify",
1229 | "owner": {
1230 | "login": "helpers",
1231 | "id": 4811808,
1232 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
1233 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
1234 | "url": "https://api.github.com/users/helpers",
1235 | "html_url": "https://github.com/helpers",
1236 | "followers_url": "https://api.github.com/users/helpers/followers",
1237 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
1238 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
1239 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
1240 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
1241 | "organizations_url": "https://api.github.com/users/helpers/orgs",
1242 | "repos_url": "https://api.github.com/users/helpers/repos",
1243 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
1244 | "received_events_url": "https://api.github.com/users/helpers/received_events",
1245 | "type": "Organization",
1246 | "site_admin": false
1247 | },
1248 | "private": false,
1249 | "html_url": "https://github.com/helpers/handlebars-helper-minify",
1250 | "description": "{{minify}} handlebars helper, for minification of HTML with html-minifier.",
1251 | "fork": false,
1252 | "url": "https://github.com/helpers/handlebars-helper-minify",
1253 | "forks_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/forks",
1254 | "keys_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/keys{/key_id}",
1255 | "collaborators_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/collaborators{/collaborator}",
1256 | "teams_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/teams",
1257 | "hooks_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/hooks",
1258 | "issue_events_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/issues/events{/number}",
1259 | "events_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/events",
1260 | "assignees_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/assignees{/user}",
1261 | "branches_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/branches{/branch}",
1262 | "tags_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/tags",
1263 | "blobs_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/git/blobs{/sha}",
1264 | "git_tags_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/git/tags{/sha}",
1265 | "git_refs_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/git/refs{/sha}",
1266 | "trees_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/git/trees{/sha}",
1267 | "statuses_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/statuses/{sha}",
1268 | "languages_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/languages",
1269 | "stargazers_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/stargazers",
1270 | "contributors_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/contributors",
1271 | "subscribers_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/subscribers",
1272 | "subscription_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/subscription",
1273 | "commits_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/commits{/sha}",
1274 | "git_commits_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/git/commits{/sha}",
1275 | "comments_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/comments{/number}",
1276 | "issue_comment_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/issues/comments/{number}",
1277 | "contents_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/contents/{+path}",
1278 | "compare_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/compare/{base}...{head}",
1279 | "merges_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/merges",
1280 | "archive_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/{archive_format}{/ref}",
1281 | "downloads_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/downloads",
1282 | "issues_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/issues{/number}",
1283 | "pulls_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/pulls{/number}",
1284 | "milestones_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/milestones{/number}",
1285 | "notifications_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/notifications{?since,all,participating}",
1286 | "labels_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/labels{/name}",
1287 | "releases_url": "https://api.github.com/repos/helpers/handlebars-helper-minify/releases{/id}",
1288 | "created_at": "2013-11-14T08:49:59Z",
1289 | "updated_at": "2013-11-15T11:45:22Z",
1290 | "pushed_at": "2013-11-14T08:50:37Z",
1291 | "git_url": "git://github.com/helpers/handlebars-helper-minify.git",
1292 | "ssh_url": "git@github.com:helpers/handlebars-helper-minify.git",
1293 | "clone_url": "https://github.com/helpers/handlebars-helper-minify.git",
1294 | "svn_url": "https://github.com/helpers/handlebars-helper-minify",
1295 | "homepage": null,
1296 | "size": 80,
1297 | "stargazers_count": 2,
1298 | "watchers_count": 2,
1299 | "language": "JavaScript",
1300 | "has_issues": true,
1301 | "has_downloads": true,
1302 | "has_wiki": true,
1303 | "forks_count": 0,
1304 | "mirror_url": null,
1305 | "open_issues_count": 0,
1306 | "forks": 0,
1307 | "open_issues": 0,
1308 | "watchers": 2,
1309 | "default_branch": "master",
1310 | "master_branch": "master",
1311 | "permissions": {
1312 | "admin": false,
1313 | "push": false,
1314 | "pull": true
1315 | },
1316 | "fullname": "helpers/handlebars-helper-minify",
1317 | "download": "https://github.com/helpers/handlebars-helper-minify/archive/master.zip"
1318 | },
1319 | {
1320 | "id": 11070783,
1321 | "name": "handlebars-helper-moment",
1322 | "full_name": "helpers/handlebars-helper-moment",
1323 | "owner": {
1324 | "login": "helpers",
1325 | "id": 4811808,
1326 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
1327 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
1328 | "url": "https://api.github.com/users/helpers",
1329 | "html_url": "https://github.com/helpers",
1330 | "followers_url": "https://api.github.com/users/helpers/followers",
1331 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
1332 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
1333 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
1334 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
1335 | "organizations_url": "https://api.github.com/users/helpers/orgs",
1336 | "repos_url": "https://api.github.com/users/helpers/repos",
1337 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
1338 | "received_events_url": "https://api.github.com/users/helpers/received_events",
1339 | "type": "Organization",
1340 | "site_admin": false
1341 | },
1342 | "private": false,
1343 | "html_url": "https://github.com/helpers/handlebars-helper-moment",
1344 | "description": "{{moment}} handlebars helper. Combines the powers of Assemble, Handlebars.js and Moment.js into a great helper to master time.",
1345 | "fork": false,
1346 | "url": "https://github.com/helpers/handlebars-helper-moment",
1347 | "forks_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/forks",
1348 | "keys_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/keys{/key_id}",
1349 | "collaborators_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/collaborators{/collaborator}",
1350 | "teams_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/teams",
1351 | "hooks_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/hooks",
1352 | "issue_events_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/issues/events{/number}",
1353 | "events_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/events",
1354 | "assignees_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/assignees{/user}",
1355 | "branches_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/branches{/branch}",
1356 | "tags_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/tags",
1357 | "blobs_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/git/blobs{/sha}",
1358 | "git_tags_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/git/tags{/sha}",
1359 | "git_refs_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/git/refs{/sha}",
1360 | "trees_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/git/trees{/sha}",
1361 | "statuses_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/statuses/{sha}",
1362 | "languages_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/languages",
1363 | "stargazers_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/stargazers",
1364 | "contributors_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/contributors",
1365 | "subscribers_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/subscribers",
1366 | "subscription_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/subscription",
1367 | "commits_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/commits{/sha}",
1368 | "git_commits_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/git/commits{/sha}",
1369 | "comments_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/comments{/number}",
1370 | "issue_comment_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/issues/comments/{number}",
1371 | "contents_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/contents/{+path}",
1372 | "compare_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/compare/{base}...{head}",
1373 | "merges_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/merges",
1374 | "archive_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/{archive_format}{/ref}",
1375 | "downloads_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/downloads",
1376 | "issues_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/issues{/number}",
1377 | "pulls_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/pulls{/number}",
1378 | "milestones_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/milestones{/number}",
1379 | "notifications_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/notifications{?since,all,participating}",
1380 | "labels_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/labels{/name}",
1381 | "releases_url": "https://api.github.com/repos/helpers/handlebars-helper-moment/releases{/id}",
1382 | "created_at": "2013-06-30T13:37:37Z",
1383 | "updated_at": "2013-10-29T08:44:20Z",
1384 | "pushed_at": "2013-10-21T21:44:22Z",
1385 | "git_url": "git://github.com/helpers/handlebars-helper-moment.git",
1386 | "ssh_url": "git@github.com:helpers/handlebars-helper-moment.git",
1387 | "clone_url": "https://github.com/helpers/handlebars-helper-moment.git",
1388 | "svn_url": "https://github.com/helpers/handlebars-helper-moment",
1389 | "homepage": "http://assemble.io/helpers/",
1390 | "size": 140,
1391 | "stargazers_count": 4,
1392 | "watchers_count": 4,
1393 | "language": "JavaScript",
1394 | "has_issues": true,
1395 | "has_downloads": true,
1396 | "has_wiki": true,
1397 | "forks_count": 2,
1398 | "mirror_url": null,
1399 | "open_issues_count": 1,
1400 | "forks": 2,
1401 | "open_issues": 1,
1402 | "watchers": 4,
1403 | "default_branch": "master",
1404 | "master_branch": "master",
1405 | "permissions": {
1406 | "admin": false,
1407 | "push": false,
1408 | "pull": true
1409 | },
1410 | "fullname": "helpers/handlebars-helper-moment",
1411 | "download": "https://github.com/helpers/handlebars-helper-moment/archive/master.zip"
1412 | },
1413 | {
1414 | "id": 14628717,
1415 | "name": "handlebars-helper-not",
1416 | "full_name": "helpers/handlebars-helper-not",
1417 | "owner": {
1418 | "login": "helpers",
1419 | "id": 4811808,
1420 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
1421 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
1422 | "url": "https://api.github.com/users/helpers",
1423 | "html_url": "https://github.com/helpers",
1424 | "followers_url": "https://api.github.com/users/helpers/followers",
1425 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
1426 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
1427 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
1428 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
1429 | "organizations_url": "https://api.github.com/users/helpers/orgs",
1430 | "repos_url": "https://api.github.com/users/helpers/repos",
1431 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
1432 | "received_events_url": "https://api.github.com/users/helpers/received_events",
1433 | "type": "Organization",
1434 | "site_admin": false
1435 | },
1436 | "private": false,
1437 | "html_url": "https://github.com/helpers/handlebars-helper-not",
1438 | "description": "{{not}} handlebars helper. Conditionally render a block if the condition is false. This block helper is really just a semantic alternative to {{isnt}}",
1439 | "fork": false,
1440 | "url": "https://github.com/helpers/handlebars-helper-not",
1441 | "forks_url": "https://api.github.com/repos/helpers/handlebars-helper-not/forks",
1442 | "keys_url": "https://api.github.com/repos/helpers/handlebars-helper-not/keys{/key_id}",
1443 | "collaborators_url": "https://api.github.com/repos/helpers/handlebars-helper-not/collaborators{/collaborator}",
1444 | "teams_url": "https://api.github.com/repos/helpers/handlebars-helper-not/teams",
1445 | "hooks_url": "https://api.github.com/repos/helpers/handlebars-helper-not/hooks",
1446 | "issue_events_url": "https://api.github.com/repos/helpers/handlebars-helper-not/issues/events{/number}",
1447 | "events_url": "https://api.github.com/repos/helpers/handlebars-helper-not/events",
1448 | "assignees_url": "https://api.github.com/repos/helpers/handlebars-helper-not/assignees{/user}",
1449 | "branches_url": "https://api.github.com/repos/helpers/handlebars-helper-not/branches{/branch}",
1450 | "tags_url": "https://api.github.com/repos/helpers/handlebars-helper-not/tags",
1451 | "blobs_url": "https://api.github.com/repos/helpers/handlebars-helper-not/git/blobs{/sha}",
1452 | "git_tags_url": "https://api.github.com/repos/helpers/handlebars-helper-not/git/tags{/sha}",
1453 | "git_refs_url": "https://api.github.com/repos/helpers/handlebars-helper-not/git/refs{/sha}",
1454 | "trees_url": "https://api.github.com/repos/helpers/handlebars-helper-not/git/trees{/sha}",
1455 | "statuses_url": "https://api.github.com/repos/helpers/handlebars-helper-not/statuses/{sha}",
1456 | "languages_url": "https://api.github.com/repos/helpers/handlebars-helper-not/languages",
1457 | "stargazers_url": "https://api.github.com/repos/helpers/handlebars-helper-not/stargazers",
1458 | "contributors_url": "https://api.github.com/repos/helpers/handlebars-helper-not/contributors",
1459 | "subscribers_url": "https://api.github.com/repos/helpers/handlebars-helper-not/subscribers",
1460 | "subscription_url": "https://api.github.com/repos/helpers/handlebars-helper-not/subscription",
1461 | "commits_url": "https://api.github.com/repos/helpers/handlebars-helper-not/commits{/sha}",
1462 | "git_commits_url": "https://api.github.com/repos/helpers/handlebars-helper-not/git/commits{/sha}",
1463 | "comments_url": "https://api.github.com/repos/helpers/handlebars-helper-not/comments{/number}",
1464 | "issue_comment_url": "https://api.github.com/repos/helpers/handlebars-helper-not/issues/comments/{number}",
1465 | "contents_url": "https://api.github.com/repos/helpers/handlebars-helper-not/contents/{+path}",
1466 | "compare_url": "https://api.github.com/repos/helpers/handlebars-helper-not/compare/{base}...{head}",
1467 | "merges_url": "https://api.github.com/repos/helpers/handlebars-helper-not/merges",
1468 | "archive_url": "https://api.github.com/repos/helpers/handlebars-helper-not/{archive_format}{/ref}",
1469 | "downloads_url": "https://api.github.com/repos/helpers/handlebars-helper-not/downloads",
1470 | "issues_url": "https://api.github.com/repos/helpers/handlebars-helper-not/issues{/number}",
1471 | "pulls_url": "https://api.github.com/repos/helpers/handlebars-helper-not/pulls{/number}",
1472 | "milestones_url": "https://api.github.com/repos/helpers/handlebars-helper-not/milestones{/number}",
1473 | "notifications_url": "https://api.github.com/repos/helpers/handlebars-helper-not/notifications{?since,all,participating}",
1474 | "labels_url": "https://api.github.com/repos/helpers/handlebars-helper-not/labels{/name}",
1475 | "releases_url": "https://api.github.com/repos/helpers/handlebars-helper-not/releases{/id}",
1476 | "created_at": "2013-11-22T20:28:30Z",
1477 | "updated_at": "2013-11-23T04:05:20Z",
1478 | "pushed_at": "2013-11-22T20:29:13Z",
1479 | "git_url": "git://github.com/helpers/handlebars-helper-not.git",
1480 | "ssh_url": "git@github.com:helpers/handlebars-helper-not.git",
1481 | "clone_url": "https://github.com/helpers/handlebars-helper-not.git",
1482 | "svn_url": "https://github.com/helpers/handlebars-helper-not",
1483 | "homepage": null,
1484 | "size": 80,
1485 | "stargazers_count": 2,
1486 | "watchers_count": 2,
1487 | "language": "JavaScript",
1488 | "has_issues": true,
1489 | "has_downloads": true,
1490 | "has_wiki": true,
1491 | "forks_count": 0,
1492 | "mirror_url": null,
1493 | "open_issues_count": 0,
1494 | "forks": 0,
1495 | "open_issues": 0,
1496 | "watchers": 2,
1497 | "default_branch": "master",
1498 | "master_branch": "master",
1499 | "permissions": {
1500 | "admin": false,
1501 | "push": false,
1502 | "pull": true
1503 | },
1504 | "fullname": "helpers/handlebars-helper-not",
1505 | "download": "https://github.com/helpers/handlebars-helper-not/archive/master.zip"
1506 | },
1507 | {
1508 | "id": 13983299,
1509 | "name": "handlebars-helper-paginate",
1510 | "full_name": "helpers/handlebars-helper-paginate",
1511 | "owner": {
1512 | "login": "helpers",
1513 | "id": 4811808,
1514 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
1515 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
1516 | "url": "https://api.github.com/users/helpers",
1517 | "html_url": "https://github.com/helpers",
1518 | "followers_url": "https://api.github.com/users/helpers/followers",
1519 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
1520 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
1521 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
1522 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
1523 | "organizations_url": "https://api.github.com/users/helpers/orgs",
1524 | "repos_url": "https://api.github.com/users/helpers/repos",
1525 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
1526 | "received_events_url": "https://api.github.com/users/helpers/received_events",
1527 | "type": "Organization",
1528 | "site_admin": false
1529 | },
1530 | "private": false,
1531 | "html_url": "https://github.com/helpers/handlebars-helper-paginate",
1532 | "description": "{{paginate}} handlebars helper. Made for Assemble, the static site generator for Node.js, Grunt.js and Yeoman.",
1533 | "fork": false,
1534 | "url": "https://github.com/helpers/handlebars-helper-paginate",
1535 | "forks_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/forks",
1536 | "keys_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/keys{/key_id}",
1537 | "collaborators_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/collaborators{/collaborator}",
1538 | "teams_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/teams",
1539 | "hooks_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/hooks",
1540 | "issue_events_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/issues/events{/number}",
1541 | "events_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/events",
1542 | "assignees_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/assignees{/user}",
1543 | "branches_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/branches{/branch}",
1544 | "tags_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/tags",
1545 | "blobs_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/git/blobs{/sha}",
1546 | "git_tags_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/git/tags{/sha}",
1547 | "git_refs_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/git/refs{/sha}",
1548 | "trees_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/git/trees{/sha}",
1549 | "statuses_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/statuses/{sha}",
1550 | "languages_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/languages",
1551 | "stargazers_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/stargazers",
1552 | "contributors_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/contributors",
1553 | "subscribers_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/subscribers",
1554 | "subscription_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/subscription",
1555 | "commits_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/commits{/sha}",
1556 | "git_commits_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/git/commits{/sha}",
1557 | "comments_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/comments{/number}",
1558 | "issue_comment_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/issues/comments/{number}",
1559 | "contents_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/contents/{+path}",
1560 | "compare_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/compare/{base}...{head}",
1561 | "merges_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/merges",
1562 | "archive_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/{archive_format}{/ref}",
1563 | "downloads_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/downloads",
1564 | "issues_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/issues{/number}",
1565 | "pulls_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/pulls{/number}",
1566 | "milestones_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/milestones{/number}",
1567 | "notifications_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/notifications{?since,all,participating}",
1568 | "labels_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/labels{/name}",
1569 | "releases_url": "https://api.github.com/repos/helpers/handlebars-helper-paginate/releases{/id}",
1570 | "created_at": "2013-10-30T10:20:08Z",
1571 | "updated_at": "2013-11-04T07:09:41Z",
1572 | "pushed_at": "2013-11-04T07:09:37Z",
1573 | "git_url": "git://github.com/helpers/handlebars-helper-paginate.git",
1574 | "ssh_url": "git@github.com:helpers/handlebars-helper-paginate.git",
1575 | "clone_url": "https://github.com/helpers/handlebars-helper-paginate.git",
1576 | "svn_url": "https://github.com/helpers/handlebars-helper-paginate",
1577 | "homepage": null,
1578 | "size": 128,
1579 | "stargazers_count": 1,
1580 | "watchers_count": 1,
1581 | "language": "JavaScript",
1582 | "has_issues": true,
1583 | "has_downloads": true,
1584 | "has_wiki": true,
1585 | "forks_count": 0,
1586 | "mirror_url": null,
1587 | "open_issues_count": 0,
1588 | "forks": 0,
1589 | "open_issues": 0,
1590 | "watchers": 1,
1591 | "default_branch": "master",
1592 | "master_branch": "master",
1593 | "permissions": {
1594 | "admin": false,
1595 | "push": false,
1596 | "pull": true
1597 | },
1598 | "fullname": "helpers/handlebars-helper-paginate",
1599 | "download": "https://github.com/helpers/handlebars-helper-paginate/archive/master.zip"
1600 | },
1601 | {
1602 | "id": 13912116,
1603 | "name": "handlebars-helper-post",
1604 | "full_name": "helpers/handlebars-helper-post",
1605 | "owner": {
1606 | "login": "helpers",
1607 | "id": 4811808,
1608 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
1609 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
1610 | "url": "https://api.github.com/users/helpers",
1611 | "html_url": "https://github.com/helpers",
1612 | "followers_url": "https://api.github.com/users/helpers/followers",
1613 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
1614 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
1615 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
1616 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
1617 | "organizations_url": "https://api.github.com/users/helpers/orgs",
1618 | "repos_url": "https://api.github.com/users/helpers/repos",
1619 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
1620 | "received_events_url": "https://api.github.com/users/helpers/received_events",
1621 | "type": "Organization",
1622 | "site_admin": false
1623 | },
1624 | "private": false,
1625 | "html_url": "https://github.com/helpers/handlebars-helper-post",
1626 | "description": "{{post}} handlebars helper, for including a post, or a list of posts.",
1627 | "fork": false,
1628 | "url": "https://github.com/helpers/handlebars-helper-post",
1629 | "forks_url": "https://api.github.com/repos/helpers/handlebars-helper-post/forks",
1630 | "keys_url": "https://api.github.com/repos/helpers/handlebars-helper-post/keys{/key_id}",
1631 | "collaborators_url": "https://api.github.com/repos/helpers/handlebars-helper-post/collaborators{/collaborator}",
1632 | "teams_url": "https://api.github.com/repos/helpers/handlebars-helper-post/teams",
1633 | "hooks_url": "https://api.github.com/repos/helpers/handlebars-helper-post/hooks",
1634 | "issue_events_url": "https://api.github.com/repos/helpers/handlebars-helper-post/issues/events{/number}",
1635 | "events_url": "https://api.github.com/repos/helpers/handlebars-helper-post/events",
1636 | "assignees_url": "https://api.github.com/repos/helpers/handlebars-helper-post/assignees{/user}",
1637 | "branches_url": "https://api.github.com/repos/helpers/handlebars-helper-post/branches{/branch}",
1638 | "tags_url": "https://api.github.com/repos/helpers/handlebars-helper-post/tags",
1639 | "blobs_url": "https://api.github.com/repos/helpers/handlebars-helper-post/git/blobs{/sha}",
1640 | "git_tags_url": "https://api.github.com/repos/helpers/handlebars-helper-post/git/tags{/sha}",
1641 | "git_refs_url": "https://api.github.com/repos/helpers/handlebars-helper-post/git/refs{/sha}",
1642 | "trees_url": "https://api.github.com/repos/helpers/handlebars-helper-post/git/trees{/sha}",
1643 | "statuses_url": "https://api.github.com/repos/helpers/handlebars-helper-post/statuses/{sha}",
1644 | "languages_url": "https://api.github.com/repos/helpers/handlebars-helper-post/languages",
1645 | "stargazers_url": "https://api.github.com/repos/helpers/handlebars-helper-post/stargazers",
1646 | "contributors_url": "https://api.github.com/repos/helpers/handlebars-helper-post/contributors",
1647 | "subscribers_url": "https://api.github.com/repos/helpers/handlebars-helper-post/subscribers",
1648 | "subscription_url": "https://api.github.com/repos/helpers/handlebars-helper-post/subscription",
1649 | "commits_url": "https://api.github.com/repos/helpers/handlebars-helper-post/commits{/sha}",
1650 | "git_commits_url": "https://api.github.com/repos/helpers/handlebars-helper-post/git/commits{/sha}",
1651 | "comments_url": "https://api.github.com/repos/helpers/handlebars-helper-post/comments{/number}",
1652 | "issue_comment_url": "https://api.github.com/repos/helpers/handlebars-helper-post/issues/comments/{number}",
1653 | "contents_url": "https://api.github.com/repos/helpers/handlebars-helper-post/contents/{+path}",
1654 | "compare_url": "https://api.github.com/repos/helpers/handlebars-helper-post/compare/{base}...{head}",
1655 | "merges_url": "https://api.github.com/repos/helpers/handlebars-helper-post/merges",
1656 | "archive_url": "https://api.github.com/repos/helpers/handlebars-helper-post/{archive_format}{/ref}",
1657 | "downloads_url": "https://api.github.com/repos/helpers/handlebars-helper-post/downloads",
1658 | "issues_url": "https://api.github.com/repos/helpers/handlebars-helper-post/issues{/number}",
1659 | "pulls_url": "https://api.github.com/repos/helpers/handlebars-helper-post/pulls{/number}",
1660 | "milestones_url": "https://api.github.com/repos/helpers/handlebars-helper-post/milestones{/number}",
1661 | "notifications_url": "https://api.github.com/repos/helpers/handlebars-helper-post/notifications{?since,all,participating}",
1662 | "labels_url": "https://api.github.com/repos/helpers/handlebars-helper-post/labels{/name}",
1663 | "releases_url": "https://api.github.com/repos/helpers/handlebars-helper-post/releases{/id}",
1664 | "created_at": "2013-10-27T23:06:37Z",
1665 | "updated_at": "2013-11-06T19:56:38Z",
1666 | "pushed_at": "2013-11-06T19:56:28Z",
1667 | "git_url": "git://github.com/helpers/handlebars-helper-post.git",
1668 | "ssh_url": "git@github.com:helpers/handlebars-helper-post.git",
1669 | "clone_url": "https://github.com/helpers/handlebars-helper-post.git",
1670 | "svn_url": "https://github.com/helpers/handlebars-helper-post",
1671 | "homepage": null,
1672 | "size": 220,
1673 | "stargazers_count": 2,
1674 | "watchers_count": 2,
1675 | "language": "JavaScript",
1676 | "has_issues": true,
1677 | "has_downloads": true,
1678 | "has_wiki": true,
1679 | "forks_count": 0,
1680 | "mirror_url": null,
1681 | "open_issues_count": 0,
1682 | "forks": 0,
1683 | "open_issues": 0,
1684 | "watchers": 2,
1685 | "default_branch": "master",
1686 | "master_branch": "master",
1687 | "permissions": {
1688 | "admin": false,
1689 | "push": false,
1690 | "pull": true
1691 | },
1692 | "fullname": "helpers/handlebars-helper-post",
1693 | "download": "https://github.com/helpers/handlebars-helper-post/archive/master.zip"
1694 | },
1695 | {
1696 | "id": 12114279,
1697 | "name": "handlebars-helper-prettify",
1698 | "full_name": "helpers/handlebars-helper-prettify",
1699 | "owner": {
1700 | "login": "helpers",
1701 | "id": 4811808,
1702 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
1703 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
1704 | "url": "https://api.github.com/users/helpers",
1705 | "html_url": "https://github.com/helpers",
1706 | "followers_url": "https://api.github.com/users/helpers/followers",
1707 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
1708 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
1709 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
1710 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
1711 | "organizations_url": "https://api.github.com/users/helpers/orgs",
1712 | "repos_url": "https://api.github.com/users/helpers/repos",
1713 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
1714 | "received_events_url": "https://api.github.com/users/helpers/received_events",
1715 | "type": "Organization",
1716 | "site_admin": false
1717 | },
1718 | "private": false,
1719 | "html_url": "https://github.com/helpers/handlebars-helper-prettify",
1720 | "description": "{{prettify}} handlebars helper, for formatting (\"beautifying\") HTML, CSS and JavaScript. ",
1721 | "fork": false,
1722 | "url": "https://github.com/helpers/handlebars-helper-prettify",
1723 | "forks_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/forks",
1724 | "keys_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/keys{/key_id}",
1725 | "collaborators_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/collaborators{/collaborator}",
1726 | "teams_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/teams",
1727 | "hooks_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/hooks",
1728 | "issue_events_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/issues/events{/number}",
1729 | "events_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/events",
1730 | "assignees_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/assignees{/user}",
1731 | "branches_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/branches{/branch}",
1732 | "tags_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/tags",
1733 | "blobs_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/git/blobs{/sha}",
1734 | "git_tags_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/git/tags{/sha}",
1735 | "git_refs_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/git/refs{/sha}",
1736 | "trees_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/git/trees{/sha}",
1737 | "statuses_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/statuses/{sha}",
1738 | "languages_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/languages",
1739 | "stargazers_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/stargazers",
1740 | "contributors_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/contributors",
1741 | "subscribers_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/subscribers",
1742 | "subscription_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/subscription",
1743 | "commits_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/commits{/sha}",
1744 | "git_commits_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/git/commits{/sha}",
1745 | "comments_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/comments{/number}",
1746 | "issue_comment_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/issues/comments/{number}",
1747 | "contents_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/contents/{+path}",
1748 | "compare_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/compare/{base}...{head}",
1749 | "merges_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/merges",
1750 | "archive_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/{archive_format}{/ref}",
1751 | "downloads_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/downloads",
1752 | "issues_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/issues{/number}",
1753 | "pulls_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/pulls{/number}",
1754 | "milestones_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/milestones{/number}",
1755 | "notifications_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/notifications{?since,all,participating}",
1756 | "labels_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/labels{/name}",
1757 | "releases_url": "https://api.github.com/repos/helpers/handlebars-helper-prettify/releases{/id}",
1758 | "created_at": "2013-08-14T16:54:59Z",
1759 | "updated_at": "2013-11-16T19:19:15Z",
1760 | "pushed_at": "2013-11-16T19:19:12Z",
1761 | "git_url": "git://github.com/helpers/handlebars-helper-prettify.git",
1762 | "ssh_url": "git@github.com:helpers/handlebars-helper-prettify.git",
1763 | "clone_url": "https://github.com/helpers/handlebars-helper-prettify.git",
1764 | "svn_url": "https://github.com/helpers/handlebars-helper-prettify",
1765 | "homepage": "http://assemble.io/helpers/",
1766 | "size": 173,
1767 | "stargazers_count": 3,
1768 | "watchers_count": 3,
1769 | "language": "JavaScript",
1770 | "has_issues": true,
1771 | "has_downloads": true,
1772 | "has_wiki": true,
1773 | "forks_count": 2,
1774 | "mirror_url": null,
1775 | "open_issues_count": 0,
1776 | "forks": 2,
1777 | "open_issues": 0,
1778 | "watchers": 3,
1779 | "default_branch": "master",
1780 | "master_branch": "master",
1781 | "permissions": {
1782 | "admin": false,
1783 | "push": false,
1784 | "pull": true
1785 | },
1786 | "fullname": "helpers/handlebars-helper-prettify",
1787 | "download": "https://github.com/helpers/handlebars-helper-prettify/archive/master.zip"
1788 | },
1789 | {
1790 | "id": 14193380,
1791 | "name": "handlebars-helper-process",
1792 | "full_name": "helpers/handlebars-helper-process",
1793 | "owner": {
1794 | "login": "helpers",
1795 | "id": 4811808,
1796 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
1797 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
1798 | "url": "https://api.github.com/users/helpers",
1799 | "html_url": "https://github.com/helpers",
1800 | "followers_url": "https://api.github.com/users/helpers/followers",
1801 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
1802 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
1803 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
1804 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
1805 | "organizations_url": "https://api.github.com/users/helpers/orgs",
1806 | "repos_url": "https://api.github.com/users/helpers/repos",
1807 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
1808 | "received_events_url": "https://api.github.com/users/helpers/received_events",
1809 | "type": "Organization",
1810 | "site_admin": false
1811 | },
1812 | "private": false,
1813 | "html_url": "https://github.com/helpers/handlebars-helper-process",
1814 | "description": "{{process}} handlebars helper, for processing raw templates in included content, with the correct context",
1815 | "fork": false,
1816 | "url": "https://github.com/helpers/handlebars-helper-process",
1817 | "forks_url": "https://api.github.com/repos/helpers/handlebars-helper-process/forks",
1818 | "keys_url": "https://api.github.com/repos/helpers/handlebars-helper-process/keys{/key_id}",
1819 | "collaborators_url": "https://api.github.com/repos/helpers/handlebars-helper-process/collaborators{/collaborator}",
1820 | "teams_url": "https://api.github.com/repos/helpers/handlebars-helper-process/teams",
1821 | "hooks_url": "https://api.github.com/repos/helpers/handlebars-helper-process/hooks",
1822 | "issue_events_url": "https://api.github.com/repos/helpers/handlebars-helper-process/issues/events{/number}",
1823 | "events_url": "https://api.github.com/repos/helpers/handlebars-helper-process/events",
1824 | "assignees_url": "https://api.github.com/repos/helpers/handlebars-helper-process/assignees{/user}",
1825 | "branches_url": "https://api.github.com/repos/helpers/handlebars-helper-process/branches{/branch}",
1826 | "tags_url": "https://api.github.com/repos/helpers/handlebars-helper-process/tags",
1827 | "blobs_url": "https://api.github.com/repos/helpers/handlebars-helper-process/git/blobs{/sha}",
1828 | "git_tags_url": "https://api.github.com/repos/helpers/handlebars-helper-process/git/tags{/sha}",
1829 | "git_refs_url": "https://api.github.com/repos/helpers/handlebars-helper-process/git/refs{/sha}",
1830 | "trees_url": "https://api.github.com/repos/helpers/handlebars-helper-process/git/trees{/sha}",
1831 | "statuses_url": "https://api.github.com/repos/helpers/handlebars-helper-process/statuses/{sha}",
1832 | "languages_url": "https://api.github.com/repos/helpers/handlebars-helper-process/languages",
1833 | "stargazers_url": "https://api.github.com/repos/helpers/handlebars-helper-process/stargazers",
1834 | "contributors_url": "https://api.github.com/repos/helpers/handlebars-helper-process/contributors",
1835 | "subscribers_url": "https://api.github.com/repos/helpers/handlebars-helper-process/subscribers",
1836 | "subscription_url": "https://api.github.com/repos/helpers/handlebars-helper-process/subscription",
1837 | "commits_url": "https://api.github.com/repos/helpers/handlebars-helper-process/commits{/sha}",
1838 | "git_commits_url": "https://api.github.com/repos/helpers/handlebars-helper-process/git/commits{/sha}",
1839 | "comments_url": "https://api.github.com/repos/helpers/handlebars-helper-process/comments{/number}",
1840 | "issue_comment_url": "https://api.github.com/repos/helpers/handlebars-helper-process/issues/comments/{number}",
1841 | "contents_url": "https://api.github.com/repos/helpers/handlebars-helper-process/contents/{+path}",
1842 | "compare_url": "https://api.github.com/repos/helpers/handlebars-helper-process/compare/{base}...{head}",
1843 | "merges_url": "https://api.github.com/repos/helpers/handlebars-helper-process/merges",
1844 | "archive_url": "https://api.github.com/repos/helpers/handlebars-helper-process/{archive_format}{/ref}",
1845 | "downloads_url": "https://api.github.com/repos/helpers/handlebars-helper-process/downloads",
1846 | "issues_url": "https://api.github.com/repos/helpers/handlebars-helper-process/issues{/number}",
1847 | "pulls_url": "https://api.github.com/repos/helpers/handlebars-helper-process/pulls{/number}",
1848 | "milestones_url": "https://api.github.com/repos/helpers/handlebars-helper-process/milestones{/number}",
1849 | "notifications_url": "https://api.github.com/repos/helpers/handlebars-helper-process/notifications{?since,all,participating}",
1850 | "labels_url": "https://api.github.com/repos/helpers/handlebars-helper-process/labels{/name}",
1851 | "releases_url": "https://api.github.com/repos/helpers/handlebars-helper-process/releases{/id}",
1852 | "created_at": "2013-11-07T03:39:40Z",
1853 | "updated_at": "2013-11-07T03:40:00Z",
1854 | "pushed_at": "2013-11-07T03:39:40Z",
1855 | "git_url": "git://github.com/helpers/handlebars-helper-process.git",
1856 | "ssh_url": "git@github.com:helpers/handlebars-helper-process.git",
1857 | "clone_url": "https://github.com/helpers/handlebars-helper-process.git",
1858 | "svn_url": "https://github.com/helpers/handlebars-helper-process",
1859 | "homepage": null,
1860 | "size": 0,
1861 | "stargazers_count": 0,
1862 | "watchers_count": 0,
1863 | "language": null,
1864 | "has_issues": true,
1865 | "has_downloads": true,
1866 | "has_wiki": true,
1867 | "forks_count": 0,
1868 | "mirror_url": null,
1869 | "open_issues_count": 0,
1870 | "forks": 0,
1871 | "open_issues": 0,
1872 | "watchers": 0,
1873 | "permissions": {
1874 | "admin": false,
1875 | "push": false,
1876 | "pull": true
1877 | },
1878 | "fullname": "helpers/handlebars-helper-process",
1879 | "download": "https://github.com/helpers/handlebars-helper-process/archive/master.zip"
1880 | },
1881 | {
1882 | "id": 12878009,
1883 | "name": "handlebars-helper-repeat",
1884 | "full_name": "helpers/handlebars-helper-repeat",
1885 | "owner": {
1886 | "login": "helpers",
1887 | "id": 4811808,
1888 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
1889 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
1890 | "url": "https://api.github.com/users/helpers",
1891 | "html_url": "https://github.com/helpers",
1892 | "followers_url": "https://api.github.com/users/helpers/followers",
1893 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
1894 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
1895 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
1896 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
1897 | "organizations_url": "https://api.github.com/users/helpers/orgs",
1898 | "repos_url": "https://api.github.com/users/helpers/repos",
1899 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
1900 | "received_events_url": "https://api.github.com/users/helpers/received_events",
1901 | "type": "Organization",
1902 | "site_admin": false
1903 | },
1904 | "private": false,
1905 | "html_url": "https://github.com/helpers/handlebars-helper-repeat",
1906 | "description": "{{repeat}} handlebars helper, for duplicating a block of content n times.",
1907 | "fork": false,
1908 | "url": "https://github.com/helpers/handlebars-helper-repeat",
1909 | "forks_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/forks",
1910 | "keys_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/keys{/key_id}",
1911 | "collaborators_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/collaborators{/collaborator}",
1912 | "teams_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/teams",
1913 | "hooks_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/hooks",
1914 | "issue_events_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/issues/events{/number}",
1915 | "events_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/events",
1916 | "assignees_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/assignees{/user}",
1917 | "branches_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/branches{/branch}",
1918 | "tags_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/tags",
1919 | "blobs_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/git/blobs{/sha}",
1920 | "git_tags_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/git/tags{/sha}",
1921 | "git_refs_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/git/refs{/sha}",
1922 | "trees_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/git/trees{/sha}",
1923 | "statuses_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/statuses/{sha}",
1924 | "languages_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/languages",
1925 | "stargazers_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/stargazers",
1926 | "contributors_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/contributors",
1927 | "subscribers_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/subscribers",
1928 | "subscription_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/subscription",
1929 | "commits_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/commits{/sha}",
1930 | "git_commits_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/git/commits{/sha}",
1931 | "comments_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/comments{/number}",
1932 | "issue_comment_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/issues/comments/{number}",
1933 | "contents_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/contents/{+path}",
1934 | "compare_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/compare/{base}...{head}",
1935 | "merges_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/merges",
1936 | "archive_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/{archive_format}{/ref}",
1937 | "downloads_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/downloads",
1938 | "issues_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/issues{/number}",
1939 | "pulls_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/pulls{/number}",
1940 | "milestones_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/milestones{/number}",
1941 | "notifications_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/notifications{?since,all,participating}",
1942 | "labels_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/labels{/name}",
1943 | "releases_url": "https://api.github.com/repos/helpers/handlebars-helper-repeat/releases{/id}",
1944 | "created_at": "2013-09-16T20:30:30Z",
1945 | "updated_at": "2013-11-03T02:45:21Z",
1946 | "pushed_at": "2013-11-03T02:45:17Z",
1947 | "git_url": "git://github.com/helpers/handlebars-helper-repeat.git",
1948 | "ssh_url": "git@github.com:helpers/handlebars-helper-repeat.git",
1949 | "clone_url": "https://github.com/helpers/handlebars-helper-repeat.git",
1950 | "svn_url": "https://github.com/helpers/handlebars-helper-repeat",
1951 | "homepage": null,
1952 | "size": 104,
1953 | "stargazers_count": 1,
1954 | "watchers_count": 1,
1955 | "language": "JavaScript",
1956 | "has_issues": true,
1957 | "has_downloads": true,
1958 | "has_wiki": true,
1959 | "forks_count": 0,
1960 | "mirror_url": null,
1961 | "open_issues_count": 0,
1962 | "forks": 0,
1963 | "open_issues": 0,
1964 | "watchers": 1,
1965 | "default_branch": "master",
1966 | "master_branch": "master",
1967 | "permissions": {
1968 | "admin": false,
1969 | "push": false,
1970 | "pull": true
1971 | },
1972 | "fullname": "helpers/handlebars-helper-repeat",
1973 | "download": "https://github.com/helpers/handlebars-helper-repeat/archive/master.zip"
1974 | },
1975 | {
1976 | "id": 11663670,
1977 | "name": "handlebars-helper-slugify",
1978 | "full_name": "helpers/handlebars-helper-slugify",
1979 | "owner": {
1980 | "login": "helpers",
1981 | "id": 4811808,
1982 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
1983 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
1984 | "url": "https://api.github.com/users/helpers",
1985 | "html_url": "https://github.com/helpers",
1986 | "followers_url": "https://api.github.com/users/helpers/followers",
1987 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
1988 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
1989 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
1990 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
1991 | "organizations_url": "https://api.github.com/users/helpers/orgs",
1992 | "repos_url": "https://api.github.com/users/helpers/repos",
1993 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
1994 | "received_events_url": "https://api.github.com/users/helpers/received_events",
1995 | "type": "Organization",
1996 | "site_admin": false
1997 | },
1998 | "private": false,
1999 | "html_url": "https://github.com/helpers/handlebars-helper-slugify",
2000 | "description": "Convert strings into URL slugs.",
2001 | "fork": false,
2002 | "url": "https://github.com/helpers/handlebars-helper-slugify",
2003 | "forks_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/forks",
2004 | "keys_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/keys{/key_id}",
2005 | "collaborators_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/collaborators{/collaborator}",
2006 | "teams_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/teams",
2007 | "hooks_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/hooks",
2008 | "issue_events_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/issues/events{/number}",
2009 | "events_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/events",
2010 | "assignees_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/assignees{/user}",
2011 | "branches_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/branches{/branch}",
2012 | "tags_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/tags",
2013 | "blobs_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/git/blobs{/sha}",
2014 | "git_tags_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/git/tags{/sha}",
2015 | "git_refs_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/git/refs{/sha}",
2016 | "trees_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/git/trees{/sha}",
2017 | "statuses_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/statuses/{sha}",
2018 | "languages_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/languages",
2019 | "stargazers_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/stargazers",
2020 | "contributors_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/contributors",
2021 | "subscribers_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/subscribers",
2022 | "subscription_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/subscription",
2023 | "commits_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/commits{/sha}",
2024 | "git_commits_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/git/commits{/sha}",
2025 | "comments_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/comments{/number}",
2026 | "issue_comment_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/issues/comments/{number}",
2027 | "contents_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/contents/{+path}",
2028 | "compare_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/compare/{base}...{head}",
2029 | "merges_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/merges",
2030 | "archive_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/{archive_format}{/ref}",
2031 | "downloads_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/downloads",
2032 | "issues_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/issues{/number}",
2033 | "pulls_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/pulls{/number}",
2034 | "milestones_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/milestones{/number}",
2035 | "notifications_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/notifications{?since,all,participating}",
2036 | "labels_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/labels{/name}",
2037 | "releases_url": "https://api.github.com/repos/helpers/handlebars-helper-slugify/releases{/id}",
2038 | "created_at": "2013-07-25T15:15:11Z",
2039 | "updated_at": "2013-10-21T21:46:09Z",
2040 | "pushed_at": "2013-09-29T05:15:27Z",
2041 | "git_url": "git://github.com/helpers/handlebars-helper-slugify.git",
2042 | "ssh_url": "git@github.com:helpers/handlebars-helper-slugify.git",
2043 | "clone_url": "https://github.com/helpers/handlebars-helper-slugify.git",
2044 | "svn_url": "https://github.com/helpers/handlebars-helper-slugify",
2045 | "homepage": null,
2046 | "size": 140,
2047 | "stargazers_count": 1,
2048 | "watchers_count": 1,
2049 | "language": "JavaScript",
2050 | "has_issues": true,
2051 | "has_downloads": true,
2052 | "has_wiki": true,
2053 | "forks_count": 0,
2054 | "mirror_url": null,
2055 | "open_issues_count": 1,
2056 | "forks": 0,
2057 | "open_issues": 1,
2058 | "watchers": 1,
2059 | "default_branch": "master",
2060 | "master_branch": "master",
2061 | "permissions": {
2062 | "admin": false,
2063 | "push": false,
2064 | "pull": true
2065 | },
2066 | "fullname": "helpers/handlebars-helper-slugify",
2067 | "download": "https://github.com/helpers/handlebars-helper-slugify/archive/master.zip"
2068 | },
2069 | {
2070 | "id": 13985119,
2071 | "name": "handlebars-helpers-pkg",
2072 | "full_name": "helpers/handlebars-helpers-pkg",
2073 | "owner": {
2074 | "login": "helpers",
2075 | "id": 4811808,
2076 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
2077 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
2078 | "url": "https://api.github.com/users/helpers",
2079 | "html_url": "https://github.com/helpers",
2080 | "followers_url": "https://api.github.com/users/helpers/followers",
2081 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
2082 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
2083 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
2084 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
2085 | "organizations_url": "https://api.github.com/users/helpers/orgs",
2086 | "repos_url": "https://api.github.com/users/helpers/repos",
2087 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
2088 | "received_events_url": "https://api.github.com/users/helpers/received_events",
2089 | "type": "Organization",
2090 | "site_admin": false
2091 | },
2092 | "private": false,
2093 | "html_url": "https://github.com/helpers/handlebars-helpers-pkg",
2094 | "description": "{{pkg}} handlebars helper, for retrieving a value from your project's package.json",
2095 | "fork": false,
2096 | "url": "https://github.com/helpers/handlebars-helpers-pkg",
2097 | "forks_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/forks",
2098 | "keys_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/keys{/key_id}",
2099 | "collaborators_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/collaborators{/collaborator}",
2100 | "teams_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/teams",
2101 | "hooks_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/hooks",
2102 | "issue_events_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/issues/events{/number}",
2103 | "events_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/events",
2104 | "assignees_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/assignees{/user}",
2105 | "branches_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/branches{/branch}",
2106 | "tags_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/tags",
2107 | "blobs_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/git/blobs{/sha}",
2108 | "git_tags_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/git/tags{/sha}",
2109 | "git_refs_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/git/refs{/sha}",
2110 | "trees_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/git/trees{/sha}",
2111 | "statuses_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/statuses/{sha}",
2112 | "languages_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/languages",
2113 | "stargazers_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/stargazers",
2114 | "contributors_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/contributors",
2115 | "subscribers_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/subscribers",
2116 | "subscription_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/subscription",
2117 | "commits_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/commits{/sha}",
2118 | "git_commits_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/git/commits{/sha}",
2119 | "comments_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/comments{/number}",
2120 | "issue_comment_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/issues/comments/{number}",
2121 | "contents_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/contents/{+path}",
2122 | "compare_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/compare/{base}...{head}",
2123 | "merges_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/merges",
2124 | "archive_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/{archive_format}{/ref}",
2125 | "downloads_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/downloads",
2126 | "issues_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/issues{/number}",
2127 | "pulls_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/pulls{/number}",
2128 | "milestones_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/milestones{/number}",
2129 | "notifications_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/notifications{?since,all,participating}",
2130 | "labels_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/labels{/name}",
2131 | "releases_url": "https://api.github.com/repos/helpers/handlebars-helpers-pkg/releases{/id}",
2132 | "created_at": "2013-10-30T11:52:40Z",
2133 | "updated_at": "2013-10-30T11:59:10Z",
2134 | "pushed_at": "2013-10-30T11:53:50Z",
2135 | "git_url": "git://github.com/helpers/handlebars-helpers-pkg.git",
2136 | "ssh_url": "git@github.com:helpers/handlebars-helpers-pkg.git",
2137 | "clone_url": "https://github.com/helpers/handlebars-helpers-pkg.git",
2138 | "svn_url": "https://github.com/helpers/handlebars-helpers-pkg",
2139 | "homepage": null,
2140 | "size": 76,
2141 | "stargazers_count": 1,
2142 | "watchers_count": 1,
2143 | "language": "JavaScript",
2144 | "has_issues": true,
2145 | "has_downloads": true,
2146 | "has_wiki": true,
2147 | "forks_count": 0,
2148 | "mirror_url": null,
2149 | "open_issues_count": 0,
2150 | "forks": 0,
2151 | "open_issues": 0,
2152 | "watchers": 1,
2153 | "default_branch": "master",
2154 | "master_branch": "master",
2155 | "permissions": {
2156 | "admin": false,
2157 | "push": false,
2158 | "pull": true
2159 | },
2160 | "fullname": "helpers/handlebars-helpers-pkg",
2161 | "download": "https://github.com/helpers/handlebars-helpers-pkg/archive/master.zip"
2162 | },
2163 | {
2164 | "id": 12174146,
2165 | "name": "logger",
2166 | "full_name": "helpers/logger",
2167 | "owner": {
2168 | "login": "helpers",
2169 | "id": 4811808,
2170 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
2171 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
2172 | "url": "https://api.github.com/users/helpers",
2173 | "html_url": "https://github.com/helpers",
2174 | "followers_url": "https://api.github.com/users/helpers/followers",
2175 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
2176 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
2177 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
2178 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
2179 | "organizations_url": "https://api.github.com/users/helpers/orgs",
2180 | "repos_url": "https://api.github.com/users/helpers/repos",
2181 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
2182 | "received_events_url": "https://api.github.com/users/helpers/received_events",
2183 | "type": "Organization",
2184 | "site_admin": false
2185 | },
2186 | "private": false,
2187 | "html_url": "https://github.com/helpers/logger",
2188 | "description": "Logging utilities for Node.js projects.",
2189 | "fork": false,
2190 | "url": "https://github.com/helpers/logger",
2191 | "forks_url": "https://api.github.com/repos/helpers/logger/forks",
2192 | "keys_url": "https://api.github.com/repos/helpers/logger/keys{/key_id}",
2193 | "collaborators_url": "https://api.github.com/repos/helpers/logger/collaborators{/collaborator}",
2194 | "teams_url": "https://api.github.com/repos/helpers/logger/teams",
2195 | "hooks_url": "https://api.github.com/repos/helpers/logger/hooks",
2196 | "issue_events_url": "https://api.github.com/repos/helpers/logger/issues/events{/number}",
2197 | "events_url": "https://api.github.com/repos/helpers/logger/events",
2198 | "assignees_url": "https://api.github.com/repos/helpers/logger/assignees{/user}",
2199 | "branches_url": "https://api.github.com/repos/helpers/logger/branches{/branch}",
2200 | "tags_url": "https://api.github.com/repos/helpers/logger/tags",
2201 | "blobs_url": "https://api.github.com/repos/helpers/logger/git/blobs{/sha}",
2202 | "git_tags_url": "https://api.github.com/repos/helpers/logger/git/tags{/sha}",
2203 | "git_refs_url": "https://api.github.com/repos/helpers/logger/git/refs{/sha}",
2204 | "trees_url": "https://api.github.com/repos/helpers/logger/git/trees{/sha}",
2205 | "statuses_url": "https://api.github.com/repos/helpers/logger/statuses/{sha}",
2206 | "languages_url": "https://api.github.com/repos/helpers/logger/languages",
2207 | "stargazers_url": "https://api.github.com/repos/helpers/logger/stargazers",
2208 | "contributors_url": "https://api.github.com/repos/helpers/logger/contributors",
2209 | "subscribers_url": "https://api.github.com/repos/helpers/logger/subscribers",
2210 | "subscription_url": "https://api.github.com/repos/helpers/logger/subscription",
2211 | "commits_url": "https://api.github.com/repos/helpers/logger/commits{/sha}",
2212 | "git_commits_url": "https://api.github.com/repos/helpers/logger/git/commits{/sha}",
2213 | "comments_url": "https://api.github.com/repos/helpers/logger/comments{/number}",
2214 | "issue_comment_url": "https://api.github.com/repos/helpers/logger/issues/comments/{number}",
2215 | "contents_url": "https://api.github.com/repos/helpers/logger/contents/{+path}",
2216 | "compare_url": "https://api.github.com/repos/helpers/logger/compare/{base}...{head}",
2217 | "merges_url": "https://api.github.com/repos/helpers/logger/merges",
2218 | "archive_url": "https://api.github.com/repos/helpers/logger/{archive_format}{/ref}",
2219 | "downloads_url": "https://api.github.com/repos/helpers/logger/downloads",
2220 | "issues_url": "https://api.github.com/repos/helpers/logger/issues{/number}",
2221 | "pulls_url": "https://api.github.com/repos/helpers/logger/pulls{/number}",
2222 | "milestones_url": "https://api.github.com/repos/helpers/logger/milestones{/number}",
2223 | "notifications_url": "https://api.github.com/repos/helpers/logger/notifications{?since,all,participating}",
2224 | "labels_url": "https://api.github.com/repos/helpers/logger/labels{/name}",
2225 | "releases_url": "https://api.github.com/repos/helpers/logger/releases{/id}",
2226 | "created_at": "2013-08-17T05:52:19Z",
2227 | "updated_at": "2013-09-11T23:24:43Z",
2228 | "pushed_at": "2013-08-17T05:52:19Z",
2229 | "git_url": "git://github.com/helpers/logger.git",
2230 | "ssh_url": "git@github.com:helpers/logger.git",
2231 | "clone_url": "https://github.com/helpers/logger.git",
2232 | "svn_url": "https://github.com/helpers/logger",
2233 | "homepage": "",
2234 | "size": 0,
2235 | "stargazers_count": 0,
2236 | "watchers_count": 0,
2237 | "language": null,
2238 | "has_issues": true,
2239 | "has_downloads": true,
2240 | "has_wiki": true,
2241 | "forks_count": 0,
2242 | "mirror_url": null,
2243 | "open_issues_count": 0,
2244 | "forks": 0,
2245 | "open_issues": 0,
2246 | "watchers": 0,
2247 | "default_branch": "master",
2248 | "master_branch": "master",
2249 | "permissions": {
2250 | "admin": false,
2251 | "push": false,
2252 | "pull": true
2253 | },
2254 | "fullname": "helpers/logger",
2255 | "download": "https://github.com/helpers/logger/archive/master.zip"
2256 | },
2257 | {
2258 | "id": 13022726,
2259 | "name": "matchkeys",
2260 | "full_name": "helpers/matchkeys",
2261 | "owner": {
2262 | "login": "helpers",
2263 | "id": 4811808,
2264 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
2265 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
2266 | "url": "https://api.github.com/users/helpers",
2267 | "html_url": "https://github.com/helpers",
2268 | "followers_url": "https://api.github.com/users/helpers/followers",
2269 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
2270 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
2271 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
2272 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
2273 | "organizations_url": "https://api.github.com/users/helpers/orgs",
2274 | "repos_url": "https://api.github.com/users/helpers/repos",
2275 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
2276 | "received_events_url": "https://api.github.com/users/helpers/received_events",
2277 | "type": "Organization",
2278 | "site_admin": false
2279 | },
2280 | "private": false,
2281 | "html_url": "https://github.com/helpers/matchkeys",
2282 | "description": "Return an array of resolved filepaths for specified npm module dependencies. Minimatch patterns can be used.",
2283 | "fork": false,
2284 | "url": "https://github.com/helpers/matchkeys",
2285 | "forks_url": "https://api.github.com/repos/helpers/matchkeys/forks",
2286 | "keys_url": "https://api.github.com/repos/helpers/matchkeys/keys{/key_id}",
2287 | "collaborators_url": "https://api.github.com/repos/helpers/matchkeys/collaborators{/collaborator}",
2288 | "teams_url": "https://api.github.com/repos/helpers/matchkeys/teams",
2289 | "hooks_url": "https://api.github.com/repos/helpers/matchkeys/hooks",
2290 | "issue_events_url": "https://api.github.com/repos/helpers/matchkeys/issues/events{/number}",
2291 | "events_url": "https://api.github.com/repos/helpers/matchkeys/events",
2292 | "assignees_url": "https://api.github.com/repos/helpers/matchkeys/assignees{/user}",
2293 | "branches_url": "https://api.github.com/repos/helpers/matchkeys/branches{/branch}",
2294 | "tags_url": "https://api.github.com/repos/helpers/matchkeys/tags",
2295 | "blobs_url": "https://api.github.com/repos/helpers/matchkeys/git/blobs{/sha}",
2296 | "git_tags_url": "https://api.github.com/repos/helpers/matchkeys/git/tags{/sha}",
2297 | "git_refs_url": "https://api.github.com/repos/helpers/matchkeys/git/refs{/sha}",
2298 | "trees_url": "https://api.github.com/repos/helpers/matchkeys/git/trees{/sha}",
2299 | "statuses_url": "https://api.github.com/repos/helpers/matchkeys/statuses/{sha}",
2300 | "languages_url": "https://api.github.com/repos/helpers/matchkeys/languages",
2301 | "stargazers_url": "https://api.github.com/repos/helpers/matchkeys/stargazers",
2302 | "contributors_url": "https://api.github.com/repos/helpers/matchkeys/contributors",
2303 | "subscribers_url": "https://api.github.com/repos/helpers/matchkeys/subscribers",
2304 | "subscription_url": "https://api.github.com/repos/helpers/matchkeys/subscription",
2305 | "commits_url": "https://api.github.com/repos/helpers/matchkeys/commits{/sha}",
2306 | "git_commits_url": "https://api.github.com/repos/helpers/matchkeys/git/commits{/sha}",
2307 | "comments_url": "https://api.github.com/repos/helpers/matchkeys/comments{/number}",
2308 | "issue_comment_url": "https://api.github.com/repos/helpers/matchkeys/issues/comments/{number}",
2309 | "contents_url": "https://api.github.com/repos/helpers/matchkeys/contents/{+path}",
2310 | "compare_url": "https://api.github.com/repos/helpers/matchkeys/compare/{base}...{head}",
2311 | "merges_url": "https://api.github.com/repos/helpers/matchkeys/merges",
2312 | "archive_url": "https://api.github.com/repos/helpers/matchkeys/{archive_format}{/ref}",
2313 | "downloads_url": "https://api.github.com/repos/helpers/matchkeys/downloads",
2314 | "issues_url": "https://api.github.com/repos/helpers/matchkeys/issues{/number}",
2315 | "pulls_url": "https://api.github.com/repos/helpers/matchkeys/pulls{/number}",
2316 | "milestones_url": "https://api.github.com/repos/helpers/matchkeys/milestones{/number}",
2317 | "notifications_url": "https://api.github.com/repos/helpers/matchkeys/notifications{?since,all,participating}",
2318 | "labels_url": "https://api.github.com/repos/helpers/matchkeys/labels{/name}",
2319 | "releases_url": "https://api.github.com/repos/helpers/matchkeys/releases{/id}",
2320 | "created_at": "2013-09-22T23:20:19Z",
2321 | "updated_at": "2013-10-07T15:45:26Z",
2322 | "pushed_at": "2013-10-07T15:45:26Z",
2323 | "git_url": "git://github.com/helpers/matchkeys.git",
2324 | "ssh_url": "git@github.com:helpers/matchkeys.git",
2325 | "clone_url": "https://github.com/helpers/matchkeys.git",
2326 | "svn_url": "https://github.com/helpers/matchkeys",
2327 | "homepage": "",
2328 | "size": 135,
2329 | "stargazers_count": 1,
2330 | "watchers_count": 1,
2331 | "language": "JavaScript",
2332 | "has_issues": true,
2333 | "has_downloads": true,
2334 | "has_wiki": true,
2335 | "forks_count": 2,
2336 | "mirror_url": null,
2337 | "open_issues_count": 0,
2338 | "forks": 2,
2339 | "open_issues": 0,
2340 | "watchers": 1,
2341 | "default_branch": "master",
2342 | "master_branch": "master",
2343 | "permissions": {
2344 | "admin": false,
2345 | "push": false,
2346 | "pull": true
2347 | },
2348 | "fullname": "helpers/matchkeys",
2349 | "download": "https://github.com/helpers/matchkeys/archive/master.zip"
2350 | },
2351 | {
2352 | "id": 12668458,
2353 | "name": "meta",
2354 | "full_name": "helpers/meta",
2355 | "owner": {
2356 | "login": "helpers",
2357 | "id": 4811808,
2358 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
2359 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
2360 | "url": "https://api.github.com/users/helpers",
2361 | "html_url": "https://github.com/helpers",
2362 | "followers_url": "https://api.github.com/users/helpers/followers",
2363 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
2364 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
2365 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
2366 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
2367 | "organizations_url": "https://api.github.com/users/helpers/orgs",
2368 | "repos_url": "https://api.github.com/users/helpers/repos",
2369 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
2370 | "received_events_url": "https://api.github.com/users/helpers/received_events",
2371 | "type": "Organization",
2372 | "site_admin": false
2373 | },
2374 | "private": false,
2375 | "html_url": "https://github.com/helpers/meta",
2376 | "description": "General planning around helpers. Also the place to make requests and suggestions.",
2377 | "fork": false,
2378 | "url": "https://github.com/helpers/meta",
2379 | "forks_url": "https://api.github.com/repos/helpers/meta/forks",
2380 | "keys_url": "https://api.github.com/repos/helpers/meta/keys{/key_id}",
2381 | "collaborators_url": "https://api.github.com/repos/helpers/meta/collaborators{/collaborator}",
2382 | "teams_url": "https://api.github.com/repos/helpers/meta/teams",
2383 | "hooks_url": "https://api.github.com/repos/helpers/meta/hooks",
2384 | "issue_events_url": "https://api.github.com/repos/helpers/meta/issues/events{/number}",
2385 | "events_url": "https://api.github.com/repos/helpers/meta/events",
2386 | "assignees_url": "https://api.github.com/repos/helpers/meta/assignees{/user}",
2387 | "branches_url": "https://api.github.com/repos/helpers/meta/branches{/branch}",
2388 | "tags_url": "https://api.github.com/repos/helpers/meta/tags",
2389 | "blobs_url": "https://api.github.com/repos/helpers/meta/git/blobs{/sha}",
2390 | "git_tags_url": "https://api.github.com/repos/helpers/meta/git/tags{/sha}",
2391 | "git_refs_url": "https://api.github.com/repos/helpers/meta/git/refs{/sha}",
2392 | "trees_url": "https://api.github.com/repos/helpers/meta/git/trees{/sha}",
2393 | "statuses_url": "https://api.github.com/repos/helpers/meta/statuses/{sha}",
2394 | "languages_url": "https://api.github.com/repos/helpers/meta/languages",
2395 | "stargazers_url": "https://api.github.com/repos/helpers/meta/stargazers",
2396 | "contributors_url": "https://api.github.com/repos/helpers/meta/contributors",
2397 | "subscribers_url": "https://api.github.com/repos/helpers/meta/subscribers",
2398 | "subscription_url": "https://api.github.com/repos/helpers/meta/subscription",
2399 | "commits_url": "https://api.github.com/repos/helpers/meta/commits{/sha}",
2400 | "git_commits_url": "https://api.github.com/repos/helpers/meta/git/commits{/sha}",
2401 | "comments_url": "https://api.github.com/repos/helpers/meta/comments{/number}",
2402 | "issue_comment_url": "https://api.github.com/repos/helpers/meta/issues/comments/{number}",
2403 | "contents_url": "https://api.github.com/repos/helpers/meta/contents/{+path}",
2404 | "compare_url": "https://api.github.com/repos/helpers/meta/compare/{base}...{head}",
2405 | "merges_url": "https://api.github.com/repos/helpers/meta/merges",
2406 | "archive_url": "https://api.github.com/repos/helpers/meta/{archive_format}{/ref}",
2407 | "downloads_url": "https://api.github.com/repos/helpers/meta/downloads",
2408 | "issues_url": "https://api.github.com/repos/helpers/meta/issues{/number}",
2409 | "pulls_url": "https://api.github.com/repos/helpers/meta/pulls{/number}",
2410 | "milestones_url": "https://api.github.com/repos/helpers/meta/milestones{/number}",
2411 | "notifications_url": "https://api.github.com/repos/helpers/meta/notifications{?since,all,participating}",
2412 | "labels_url": "https://api.github.com/repos/helpers/meta/labels{/name}",
2413 | "releases_url": "https://api.github.com/repos/helpers/meta/releases{/id}",
2414 | "created_at": "2013-09-07T17:17:19Z",
2415 | "updated_at": "2013-09-17T16:11:59Z",
2416 | "pushed_at": "2013-09-07T17:17:20Z",
2417 | "git_url": "git://github.com/helpers/meta.git",
2418 | "ssh_url": "git@github.com:helpers/meta.git",
2419 | "clone_url": "https://github.com/helpers/meta.git",
2420 | "svn_url": "https://github.com/helpers/meta",
2421 | "homepage": "",
2422 | "size": 0,
2423 | "stargazers_count": 1,
2424 | "watchers_count": 1,
2425 | "language": null,
2426 | "has_issues": true,
2427 | "has_downloads": true,
2428 | "has_wiki": true,
2429 | "forks_count": 0,
2430 | "mirror_url": null,
2431 | "open_issues_count": 3,
2432 | "forks": 0,
2433 | "open_issues": 3,
2434 | "watchers": 1,
2435 | "default_branch": "master",
2436 | "master_branch": "master",
2437 | "permissions": {
2438 | "admin": false,
2439 | "push": false,
2440 | "pull": true
2441 | },
2442 | "fullname": "helpers/meta",
2443 | "download": "https://github.com/helpers/meta/archive/master.zip"
2444 | },
2445 | {
2446 | "id": 12727552,
2447 | "name": "node-name",
2448 | "full_name": "helpers/node-name",
2449 | "owner": {
2450 | "login": "helpers",
2451 | "id": 4811808,
2452 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
2453 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
2454 | "url": "https://api.github.com/users/helpers",
2455 | "html_url": "https://github.com/helpers",
2456 | "followers_url": "https://api.github.com/users/helpers/followers",
2457 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
2458 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
2459 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
2460 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
2461 | "organizations_url": "https://api.github.com/users/helpers/orgs",
2462 | "repos_url": "https://api.github.com/users/helpers/repos",
2463 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
2464 | "received_events_url": "https://api.github.com/users/helpers/received_events",
2465 | "type": "Organization",
2466 | "site_admin": false
2467 | },
2468 | "private": false,
2469 | "html_url": "https://github.com/helpers/node-name",
2470 | "description": "Basic utility methods for transforming and handling file paths.",
2471 | "fork": false,
2472 | "url": "https://github.com/helpers/node-name",
2473 | "forks_url": "https://api.github.com/repos/helpers/node-name/forks",
2474 | "keys_url": "https://api.github.com/repos/helpers/node-name/keys{/key_id}",
2475 | "collaborators_url": "https://api.github.com/repos/helpers/node-name/collaborators{/collaborator}",
2476 | "teams_url": "https://api.github.com/repos/helpers/node-name/teams",
2477 | "hooks_url": "https://api.github.com/repos/helpers/node-name/hooks",
2478 | "issue_events_url": "https://api.github.com/repos/helpers/node-name/issues/events{/number}",
2479 | "events_url": "https://api.github.com/repos/helpers/node-name/events",
2480 | "assignees_url": "https://api.github.com/repos/helpers/node-name/assignees{/user}",
2481 | "branches_url": "https://api.github.com/repos/helpers/node-name/branches{/branch}",
2482 | "tags_url": "https://api.github.com/repos/helpers/node-name/tags",
2483 | "blobs_url": "https://api.github.com/repos/helpers/node-name/git/blobs{/sha}",
2484 | "git_tags_url": "https://api.github.com/repos/helpers/node-name/git/tags{/sha}",
2485 | "git_refs_url": "https://api.github.com/repos/helpers/node-name/git/refs{/sha}",
2486 | "trees_url": "https://api.github.com/repos/helpers/node-name/git/trees{/sha}",
2487 | "statuses_url": "https://api.github.com/repos/helpers/node-name/statuses/{sha}",
2488 | "languages_url": "https://api.github.com/repos/helpers/node-name/languages",
2489 | "stargazers_url": "https://api.github.com/repos/helpers/node-name/stargazers",
2490 | "contributors_url": "https://api.github.com/repos/helpers/node-name/contributors",
2491 | "subscribers_url": "https://api.github.com/repos/helpers/node-name/subscribers",
2492 | "subscription_url": "https://api.github.com/repos/helpers/node-name/subscription",
2493 | "commits_url": "https://api.github.com/repos/helpers/node-name/commits{/sha}",
2494 | "git_commits_url": "https://api.github.com/repos/helpers/node-name/git/commits{/sha}",
2495 | "comments_url": "https://api.github.com/repos/helpers/node-name/comments{/number}",
2496 | "issue_comment_url": "https://api.github.com/repos/helpers/node-name/issues/comments/{number}",
2497 | "contents_url": "https://api.github.com/repos/helpers/node-name/contents/{+path}",
2498 | "compare_url": "https://api.github.com/repos/helpers/node-name/compare/{base}...{head}",
2499 | "merges_url": "https://api.github.com/repos/helpers/node-name/merges",
2500 | "archive_url": "https://api.github.com/repos/helpers/node-name/{archive_format}{/ref}",
2501 | "downloads_url": "https://api.github.com/repos/helpers/node-name/downloads",
2502 | "issues_url": "https://api.github.com/repos/helpers/node-name/issues{/number}",
2503 | "pulls_url": "https://api.github.com/repos/helpers/node-name/pulls{/number}",
2504 | "milestones_url": "https://api.github.com/repos/helpers/node-name/milestones{/number}",
2505 | "notifications_url": "https://api.github.com/repos/helpers/node-name/notifications{?since,all,participating}",
2506 | "labels_url": "https://api.github.com/repos/helpers/node-name/labels{/name}",
2507 | "releases_url": "https://api.github.com/repos/helpers/node-name/releases{/id}",
2508 | "created_at": "2013-09-10T11:11:13Z",
2509 | "updated_at": "2013-11-03T05:37:24Z",
2510 | "pushed_at": "2013-11-03T05:37:24Z",
2511 | "git_url": "git://github.com/helpers/node-name.git",
2512 | "ssh_url": "git@github.com:helpers/node-name.git",
2513 | "clone_url": "https://github.com/helpers/node-name.git",
2514 | "svn_url": "https://github.com/helpers/node-name",
2515 | "homepage": null,
2516 | "size": 120,
2517 | "stargazers_count": 2,
2518 | "watchers_count": 2,
2519 | "language": "JavaScript",
2520 | "has_issues": true,
2521 | "has_downloads": true,
2522 | "has_wiki": true,
2523 | "forks_count": 0,
2524 | "mirror_url": null,
2525 | "open_issues_count": 0,
2526 | "forks": 0,
2527 | "open_issues": 0,
2528 | "watchers": 2,
2529 | "default_branch": "master",
2530 | "master_branch": "master",
2531 | "permissions": {
2532 | "admin": false,
2533 | "push": false,
2534 | "pull": true
2535 | },
2536 | "fullname": "helpers/node-name",
2537 | "download": "https://github.com/helpers/node-name/archive/master.zip"
2538 | },
2539 | {
2540 | "id": 13316381,
2541 | "name": "sort-object",
2542 | "full_name": "helpers/sort-object",
2543 | "owner": {
2544 | "login": "helpers",
2545 | "id": 4811808,
2546 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
2547 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
2548 | "url": "https://api.github.com/users/helpers",
2549 | "html_url": "https://github.com/helpers",
2550 | "followers_url": "https://api.github.com/users/helpers/followers",
2551 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
2552 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
2553 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
2554 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
2555 | "organizations_url": "https://api.github.com/users/helpers/orgs",
2556 | "repos_url": "https://api.github.com/users/helpers/repos",
2557 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
2558 | "received_events_url": "https://api.github.com/users/helpers/received_events",
2559 | "type": "Organization",
2560 | "site_admin": false
2561 | },
2562 | "private": false,
2563 | "html_url": "https://github.com/helpers/sort-object",
2564 | "description": "Sort the keys in an object.",
2565 | "fork": false,
2566 | "url": "https://github.com/helpers/sort-object",
2567 | "forks_url": "https://api.github.com/repos/helpers/sort-object/forks",
2568 | "keys_url": "https://api.github.com/repos/helpers/sort-object/keys{/key_id}",
2569 | "collaborators_url": "https://api.github.com/repos/helpers/sort-object/collaborators{/collaborator}",
2570 | "teams_url": "https://api.github.com/repos/helpers/sort-object/teams",
2571 | "hooks_url": "https://api.github.com/repos/helpers/sort-object/hooks",
2572 | "issue_events_url": "https://api.github.com/repos/helpers/sort-object/issues/events{/number}",
2573 | "events_url": "https://api.github.com/repos/helpers/sort-object/events",
2574 | "assignees_url": "https://api.github.com/repos/helpers/sort-object/assignees{/user}",
2575 | "branches_url": "https://api.github.com/repos/helpers/sort-object/branches{/branch}",
2576 | "tags_url": "https://api.github.com/repos/helpers/sort-object/tags",
2577 | "blobs_url": "https://api.github.com/repos/helpers/sort-object/git/blobs{/sha}",
2578 | "git_tags_url": "https://api.github.com/repos/helpers/sort-object/git/tags{/sha}",
2579 | "git_refs_url": "https://api.github.com/repos/helpers/sort-object/git/refs{/sha}",
2580 | "trees_url": "https://api.github.com/repos/helpers/sort-object/git/trees{/sha}",
2581 | "statuses_url": "https://api.github.com/repos/helpers/sort-object/statuses/{sha}",
2582 | "languages_url": "https://api.github.com/repos/helpers/sort-object/languages",
2583 | "stargazers_url": "https://api.github.com/repos/helpers/sort-object/stargazers",
2584 | "contributors_url": "https://api.github.com/repos/helpers/sort-object/contributors",
2585 | "subscribers_url": "https://api.github.com/repos/helpers/sort-object/subscribers",
2586 | "subscription_url": "https://api.github.com/repos/helpers/sort-object/subscription",
2587 | "commits_url": "https://api.github.com/repos/helpers/sort-object/commits{/sha}",
2588 | "git_commits_url": "https://api.github.com/repos/helpers/sort-object/git/commits{/sha}",
2589 | "comments_url": "https://api.github.com/repos/helpers/sort-object/comments{/number}",
2590 | "issue_comment_url": "https://api.github.com/repos/helpers/sort-object/issues/comments/{number}",
2591 | "contents_url": "https://api.github.com/repos/helpers/sort-object/contents/{+path}",
2592 | "compare_url": "https://api.github.com/repos/helpers/sort-object/compare/{base}...{head}",
2593 | "merges_url": "https://api.github.com/repos/helpers/sort-object/merges",
2594 | "archive_url": "https://api.github.com/repos/helpers/sort-object/{archive_format}{/ref}",
2595 | "downloads_url": "https://api.github.com/repos/helpers/sort-object/downloads",
2596 | "issues_url": "https://api.github.com/repos/helpers/sort-object/issues{/number}",
2597 | "pulls_url": "https://api.github.com/repos/helpers/sort-object/pulls{/number}",
2598 | "milestones_url": "https://api.github.com/repos/helpers/sort-object/milestones{/number}",
2599 | "notifications_url": "https://api.github.com/repos/helpers/sort-object/notifications{?since,all,participating}",
2600 | "labels_url": "https://api.github.com/repos/helpers/sort-object/labels{/name}",
2601 | "releases_url": "https://api.github.com/repos/helpers/sort-object/releases{/id}",
2602 | "created_at": "2013-10-04T04:29:21Z",
2603 | "updated_at": "2013-10-30T05:04:33Z",
2604 | "pushed_at": "2013-10-30T05:04:33Z",
2605 | "git_url": "git://github.com/helpers/sort-object.git",
2606 | "ssh_url": "git@github.com:helpers/sort-object.git",
2607 | "clone_url": "https://github.com/helpers/sort-object.git",
2608 | "svn_url": "https://github.com/helpers/sort-object",
2609 | "homepage": null,
2610 | "size": 122,
2611 | "stargazers_count": 3,
2612 | "watchers_count": 3,
2613 | "language": "JavaScript",
2614 | "has_issues": true,
2615 | "has_downloads": true,
2616 | "has_wiki": true,
2617 | "forks_count": 2,
2618 | "mirror_url": null,
2619 | "open_issues_count": 1,
2620 | "forks": 2,
2621 | "open_issues": 1,
2622 | "watchers": 3,
2623 | "default_branch": "master",
2624 | "master_branch": "master",
2625 | "permissions": {
2626 | "admin": false,
2627 | "push": false,
2628 | "pull": true
2629 | },
2630 | "fullname": "helpers/sort-object",
2631 | "download": "https://github.com/helpers/sort-object/archive/master.zip"
2632 | },
2633 | {
2634 | "id": 13489235,
2635 | "name": "strip-yfm",
2636 | "full_name": "helpers/strip-yfm",
2637 | "owner": {
2638 | "login": "helpers",
2639 | "id": 4811808,
2640 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
2641 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
2642 | "url": "https://api.github.com/users/helpers",
2643 | "html_url": "https://github.com/helpers",
2644 | "followers_url": "https://api.github.com/users/helpers/followers",
2645 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
2646 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
2647 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
2648 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
2649 | "organizations_url": "https://api.github.com/users/helpers/orgs",
2650 | "repos_url": "https://api.github.com/users/helpers/repos",
2651 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
2652 | "received_events_url": "https://api.github.com/users/helpers/received_events",
2653 | "type": "Organization",
2654 | "site_admin": false
2655 | },
2656 | "private": false,
2657 | "html_url": "https://github.com/helpers/strip-yfm",
2658 | "description": "Strip YAML front matter from files.",
2659 | "fork": false,
2660 | "url": "https://github.com/helpers/strip-yfm",
2661 | "forks_url": "https://api.github.com/repos/helpers/strip-yfm/forks",
2662 | "keys_url": "https://api.github.com/repos/helpers/strip-yfm/keys{/key_id}",
2663 | "collaborators_url": "https://api.github.com/repos/helpers/strip-yfm/collaborators{/collaborator}",
2664 | "teams_url": "https://api.github.com/repos/helpers/strip-yfm/teams",
2665 | "hooks_url": "https://api.github.com/repos/helpers/strip-yfm/hooks",
2666 | "issue_events_url": "https://api.github.com/repos/helpers/strip-yfm/issues/events{/number}",
2667 | "events_url": "https://api.github.com/repos/helpers/strip-yfm/events",
2668 | "assignees_url": "https://api.github.com/repos/helpers/strip-yfm/assignees{/user}",
2669 | "branches_url": "https://api.github.com/repos/helpers/strip-yfm/branches{/branch}",
2670 | "tags_url": "https://api.github.com/repos/helpers/strip-yfm/tags",
2671 | "blobs_url": "https://api.github.com/repos/helpers/strip-yfm/git/blobs{/sha}",
2672 | "git_tags_url": "https://api.github.com/repos/helpers/strip-yfm/git/tags{/sha}",
2673 | "git_refs_url": "https://api.github.com/repos/helpers/strip-yfm/git/refs{/sha}",
2674 | "trees_url": "https://api.github.com/repos/helpers/strip-yfm/git/trees{/sha}",
2675 | "statuses_url": "https://api.github.com/repos/helpers/strip-yfm/statuses/{sha}",
2676 | "languages_url": "https://api.github.com/repos/helpers/strip-yfm/languages",
2677 | "stargazers_url": "https://api.github.com/repos/helpers/strip-yfm/stargazers",
2678 | "contributors_url": "https://api.github.com/repos/helpers/strip-yfm/contributors",
2679 | "subscribers_url": "https://api.github.com/repos/helpers/strip-yfm/subscribers",
2680 | "subscription_url": "https://api.github.com/repos/helpers/strip-yfm/subscription",
2681 | "commits_url": "https://api.github.com/repos/helpers/strip-yfm/commits{/sha}",
2682 | "git_commits_url": "https://api.github.com/repos/helpers/strip-yfm/git/commits{/sha}",
2683 | "comments_url": "https://api.github.com/repos/helpers/strip-yfm/comments{/number}",
2684 | "issue_comment_url": "https://api.github.com/repos/helpers/strip-yfm/issues/comments/{number}",
2685 | "contents_url": "https://api.github.com/repos/helpers/strip-yfm/contents/{+path}",
2686 | "compare_url": "https://api.github.com/repos/helpers/strip-yfm/compare/{base}...{head}",
2687 | "merges_url": "https://api.github.com/repos/helpers/strip-yfm/merges",
2688 | "archive_url": "https://api.github.com/repos/helpers/strip-yfm/{archive_format}{/ref}",
2689 | "downloads_url": "https://api.github.com/repos/helpers/strip-yfm/downloads",
2690 | "issues_url": "https://api.github.com/repos/helpers/strip-yfm/issues{/number}",
2691 | "pulls_url": "https://api.github.com/repos/helpers/strip-yfm/pulls{/number}",
2692 | "milestones_url": "https://api.github.com/repos/helpers/strip-yfm/milestones{/number}",
2693 | "notifications_url": "https://api.github.com/repos/helpers/strip-yfm/notifications{?since,all,participating}",
2694 | "labels_url": "https://api.github.com/repos/helpers/strip-yfm/labels{/name}",
2695 | "releases_url": "https://api.github.com/repos/helpers/strip-yfm/releases{/id}",
2696 | "created_at": "2013-10-11T03:42:20Z",
2697 | "updated_at": "2013-10-11T10:53:27Z",
2698 | "pushed_at": "2013-10-11T10:10:32Z",
2699 | "git_url": "git://github.com/helpers/strip-yfm.git",
2700 | "ssh_url": "git@github.com:helpers/strip-yfm.git",
2701 | "clone_url": "https://github.com/helpers/strip-yfm.git",
2702 | "svn_url": "https://github.com/helpers/strip-yfm",
2703 | "homepage": null,
2704 | "size": 80,
2705 | "stargazers_count": 1,
2706 | "watchers_count": 1,
2707 | "language": "JavaScript",
2708 | "has_issues": true,
2709 | "has_downloads": true,
2710 | "has_wiki": true,
2711 | "forks_count": 0,
2712 | "mirror_url": null,
2713 | "open_issues_count": 0,
2714 | "forks": 0,
2715 | "open_issues": 0,
2716 | "watchers": 1,
2717 | "default_branch": "master",
2718 | "master_branch": "master",
2719 | "permissions": {
2720 | "admin": false,
2721 | "push": false,
2722 | "pull": true
2723 | },
2724 | "fullname": "helpers/strip-yfm",
2725 | "download": "https://github.com/helpers/strip-yfm/archive/master.zip"
2726 | },
2727 | {
2728 | "id": 11706665,
2729 | "name": "utils",
2730 | "full_name": "helpers/utils",
2731 | "owner": {
2732 | "login": "helpers",
2733 | "id": 4811808,
2734 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
2735 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
2736 | "url": "https://api.github.com/users/helpers",
2737 | "html_url": "https://github.com/helpers",
2738 | "followers_url": "https://api.github.com/users/helpers/followers",
2739 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
2740 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
2741 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
2742 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
2743 | "organizations_url": "https://api.github.com/users/helpers/orgs",
2744 | "repos_url": "https://api.github.com/users/helpers/repos",
2745 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
2746 | "received_events_url": "https://api.github.com/users/helpers/received_events",
2747 | "type": "Organization",
2748 | "site_admin": false
2749 | },
2750 | "private": false,
2751 | "html_url": "https://github.com/helpers/utils",
2752 | "description": "Library of javascript utils",
2753 | "fork": false,
2754 | "url": "https://github.com/helpers/utils",
2755 | "forks_url": "https://api.github.com/repos/helpers/utils/forks",
2756 | "keys_url": "https://api.github.com/repos/helpers/utils/keys{/key_id}",
2757 | "collaborators_url": "https://api.github.com/repos/helpers/utils/collaborators{/collaborator}",
2758 | "teams_url": "https://api.github.com/repos/helpers/utils/teams",
2759 | "hooks_url": "https://api.github.com/repos/helpers/utils/hooks",
2760 | "issue_events_url": "https://api.github.com/repos/helpers/utils/issues/events{/number}",
2761 | "events_url": "https://api.github.com/repos/helpers/utils/events",
2762 | "assignees_url": "https://api.github.com/repos/helpers/utils/assignees{/user}",
2763 | "branches_url": "https://api.github.com/repos/helpers/utils/branches{/branch}",
2764 | "tags_url": "https://api.github.com/repos/helpers/utils/tags",
2765 | "blobs_url": "https://api.github.com/repos/helpers/utils/git/blobs{/sha}",
2766 | "git_tags_url": "https://api.github.com/repos/helpers/utils/git/tags{/sha}",
2767 | "git_refs_url": "https://api.github.com/repos/helpers/utils/git/refs{/sha}",
2768 | "trees_url": "https://api.github.com/repos/helpers/utils/git/trees{/sha}",
2769 | "statuses_url": "https://api.github.com/repos/helpers/utils/statuses/{sha}",
2770 | "languages_url": "https://api.github.com/repos/helpers/utils/languages",
2771 | "stargazers_url": "https://api.github.com/repos/helpers/utils/stargazers",
2772 | "contributors_url": "https://api.github.com/repos/helpers/utils/contributors",
2773 | "subscribers_url": "https://api.github.com/repos/helpers/utils/subscribers",
2774 | "subscription_url": "https://api.github.com/repos/helpers/utils/subscription",
2775 | "commits_url": "https://api.github.com/repos/helpers/utils/commits{/sha}",
2776 | "git_commits_url": "https://api.github.com/repos/helpers/utils/git/commits{/sha}",
2777 | "comments_url": "https://api.github.com/repos/helpers/utils/comments{/number}",
2778 | "issue_comment_url": "https://api.github.com/repos/helpers/utils/issues/comments/{number}",
2779 | "contents_url": "https://api.github.com/repos/helpers/utils/contents/{+path}",
2780 | "compare_url": "https://api.github.com/repos/helpers/utils/compare/{base}...{head}",
2781 | "merges_url": "https://api.github.com/repos/helpers/utils/merges",
2782 | "archive_url": "https://api.github.com/repos/helpers/utils/{archive_format}{/ref}",
2783 | "downloads_url": "https://api.github.com/repos/helpers/utils/downloads",
2784 | "issues_url": "https://api.github.com/repos/helpers/utils/issues{/number}",
2785 | "pulls_url": "https://api.github.com/repos/helpers/utils/pulls{/number}",
2786 | "milestones_url": "https://api.github.com/repos/helpers/utils/milestones{/number}",
2787 | "notifications_url": "https://api.github.com/repos/helpers/utils/notifications{?since,all,participating}",
2788 | "labels_url": "https://api.github.com/repos/helpers/utils/labels{/name}",
2789 | "releases_url": "https://api.github.com/repos/helpers/utils/releases{/id}",
2790 | "created_at": "2013-07-27T15:17:22Z",
2791 | "updated_at": "2013-07-27T15:56:14Z",
2792 | "pushed_at": "2013-07-27T15:32:31Z",
2793 | "git_url": "git://github.com/helpers/utils.git",
2794 | "ssh_url": "git@github.com:helpers/utils.git",
2795 | "clone_url": "https://github.com/helpers/utils.git",
2796 | "svn_url": "https://github.com/helpers/utils",
2797 | "homepage": null,
2798 | "size": 66,
2799 | "stargazers_count": 2,
2800 | "watchers_count": 2,
2801 | "language": "CoffeeScript",
2802 | "has_issues": true,
2803 | "has_downloads": true,
2804 | "has_wiki": true,
2805 | "forks_count": 0,
2806 | "mirror_url": null,
2807 | "open_issues_count": 0,
2808 | "forks": 0,
2809 | "open_issues": 0,
2810 | "watchers": 2,
2811 | "default_branch": "master",
2812 | "master_branch": "master",
2813 | "permissions": {
2814 | "admin": false,
2815 | "push": false,
2816 | "pull": true
2817 | },
2818 | "fullname": "helpers/utils",
2819 | "download": "https://github.com/helpers/utils/archive/master.zip"
2820 | },
2821 | {
2822 | "id": 12884443,
2823 | "name": "utils-compare",
2824 | "full_name": "helpers/utils-compare",
2825 | "owner": {
2826 | "login": "helpers",
2827 | "id": 4811808,
2828 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
2829 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
2830 | "url": "https://api.github.com/users/helpers",
2831 | "html_url": "https://github.com/helpers",
2832 | "followers_url": "https://api.github.com/users/helpers/followers",
2833 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
2834 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
2835 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
2836 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
2837 | "organizations_url": "https://api.github.com/users/helpers/orgs",
2838 | "repos_url": "https://api.github.com/users/helpers/repos",
2839 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
2840 | "received_events_url": "https://api.github.com/users/helpers/received_events",
2841 | "type": "Organization",
2842 | "site_admin": false
2843 | },
2844 | "private": false,
2845 | "html_url": "https://github.com/helpers/utils-compare",
2846 | "description": "Utility compare function, accepts two objects (a,b) and returns 1 if a >= b otherwise -1.",
2847 | "fork": false,
2848 | "url": "https://github.com/helpers/utils-compare",
2849 | "forks_url": "https://api.github.com/repos/helpers/utils-compare/forks",
2850 | "keys_url": "https://api.github.com/repos/helpers/utils-compare/keys{/key_id}",
2851 | "collaborators_url": "https://api.github.com/repos/helpers/utils-compare/collaborators{/collaborator}",
2852 | "teams_url": "https://api.github.com/repos/helpers/utils-compare/teams",
2853 | "hooks_url": "https://api.github.com/repos/helpers/utils-compare/hooks",
2854 | "issue_events_url": "https://api.github.com/repos/helpers/utils-compare/issues/events{/number}",
2855 | "events_url": "https://api.github.com/repos/helpers/utils-compare/events",
2856 | "assignees_url": "https://api.github.com/repos/helpers/utils-compare/assignees{/user}",
2857 | "branches_url": "https://api.github.com/repos/helpers/utils-compare/branches{/branch}",
2858 | "tags_url": "https://api.github.com/repos/helpers/utils-compare/tags",
2859 | "blobs_url": "https://api.github.com/repos/helpers/utils-compare/git/blobs{/sha}",
2860 | "git_tags_url": "https://api.github.com/repos/helpers/utils-compare/git/tags{/sha}",
2861 | "git_refs_url": "https://api.github.com/repos/helpers/utils-compare/git/refs{/sha}",
2862 | "trees_url": "https://api.github.com/repos/helpers/utils-compare/git/trees{/sha}",
2863 | "statuses_url": "https://api.github.com/repos/helpers/utils-compare/statuses/{sha}",
2864 | "languages_url": "https://api.github.com/repos/helpers/utils-compare/languages",
2865 | "stargazers_url": "https://api.github.com/repos/helpers/utils-compare/stargazers",
2866 | "contributors_url": "https://api.github.com/repos/helpers/utils-compare/contributors",
2867 | "subscribers_url": "https://api.github.com/repos/helpers/utils-compare/subscribers",
2868 | "subscription_url": "https://api.github.com/repos/helpers/utils-compare/subscription",
2869 | "commits_url": "https://api.github.com/repos/helpers/utils-compare/commits{/sha}",
2870 | "git_commits_url": "https://api.github.com/repos/helpers/utils-compare/git/commits{/sha}",
2871 | "comments_url": "https://api.github.com/repos/helpers/utils-compare/comments{/number}",
2872 | "issue_comment_url": "https://api.github.com/repos/helpers/utils-compare/issues/comments/{number}",
2873 | "contents_url": "https://api.github.com/repos/helpers/utils-compare/contents/{+path}",
2874 | "compare_url": "https://api.github.com/repos/helpers/utils-compare/compare/{base}...{head}",
2875 | "merges_url": "https://api.github.com/repos/helpers/utils-compare/merges",
2876 | "archive_url": "https://api.github.com/repos/helpers/utils-compare/{archive_format}{/ref}",
2877 | "downloads_url": "https://api.github.com/repos/helpers/utils-compare/downloads",
2878 | "issues_url": "https://api.github.com/repos/helpers/utils-compare/issues{/number}",
2879 | "pulls_url": "https://api.github.com/repos/helpers/utils-compare/pulls{/number}",
2880 | "milestones_url": "https://api.github.com/repos/helpers/utils-compare/milestones{/number}",
2881 | "notifications_url": "https://api.github.com/repos/helpers/utils-compare/notifications{?since,all,participating}",
2882 | "labels_url": "https://api.github.com/repos/helpers/utils-compare/labels{/name}",
2883 | "releases_url": "https://api.github.com/repos/helpers/utils-compare/releases{/id}",
2884 | "created_at": "2013-09-17T02:30:57Z",
2885 | "updated_at": "2013-09-17T02:41:31Z",
2886 | "pushed_at": "2013-09-17T02:40:08Z",
2887 | "git_url": "git://github.com/helpers/utils-compare.git",
2888 | "ssh_url": "git@github.com:helpers/utils-compare.git",
2889 | "clone_url": "https://github.com/helpers/utils-compare.git",
2890 | "svn_url": "https://github.com/helpers/utils-compare",
2891 | "homepage": null,
2892 | "size": 76,
2893 | "stargazers_count": 1,
2894 | "watchers_count": 1,
2895 | "language": "JavaScript",
2896 | "has_issues": true,
2897 | "has_downloads": true,
2898 | "has_wiki": true,
2899 | "forks_count": 0,
2900 | "mirror_url": null,
2901 | "open_issues_count": 0,
2902 | "forks": 0,
2903 | "open_issues": 0,
2904 | "watchers": 1,
2905 | "default_branch": "master",
2906 | "master_branch": "master",
2907 | "permissions": {
2908 | "admin": false,
2909 | "push": false,
2910 | "pull": true
2911 | },
2912 | "fullname": "helpers/utils-compare",
2913 | "download": "https://github.com/helpers/utils-compare/archive/master.zip"
2914 | },
2915 | {
2916 | "id": 12726972,
2917 | "name": "utils-concat-array",
2918 | "full_name": "helpers/utils-concat-array",
2919 | "owner": {
2920 | "login": "helpers",
2921 | "id": 4811808,
2922 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
2923 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
2924 | "url": "https://api.github.com/users/helpers",
2925 | "html_url": "https://github.com/helpers",
2926 | "followers_url": "https://api.github.com/users/helpers/followers",
2927 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
2928 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
2929 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
2930 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
2931 | "organizations_url": "https://api.github.com/users/helpers/orgs",
2932 | "repos_url": "https://api.github.com/users/helpers/repos",
2933 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
2934 | "received_events_url": "https://api.github.com/users/helpers/received_events",
2935 | "type": "Organization",
2936 | "site_admin": false
2937 | },
2938 | "private": false,
2939 | "html_url": "https://github.com/helpers/utils-concat-array",
2940 | "description": "Takes a string and an array of strings and concatenates the first string to each string in the array.",
2941 | "fork": false,
2942 | "url": "https://github.com/helpers/utils-concat-array",
2943 | "forks_url": "https://api.github.com/repos/helpers/utils-concat-array/forks",
2944 | "keys_url": "https://api.github.com/repos/helpers/utils-concat-array/keys{/key_id}",
2945 | "collaborators_url": "https://api.github.com/repos/helpers/utils-concat-array/collaborators{/collaborator}",
2946 | "teams_url": "https://api.github.com/repos/helpers/utils-concat-array/teams",
2947 | "hooks_url": "https://api.github.com/repos/helpers/utils-concat-array/hooks",
2948 | "issue_events_url": "https://api.github.com/repos/helpers/utils-concat-array/issues/events{/number}",
2949 | "events_url": "https://api.github.com/repos/helpers/utils-concat-array/events",
2950 | "assignees_url": "https://api.github.com/repos/helpers/utils-concat-array/assignees{/user}",
2951 | "branches_url": "https://api.github.com/repos/helpers/utils-concat-array/branches{/branch}",
2952 | "tags_url": "https://api.github.com/repos/helpers/utils-concat-array/tags",
2953 | "blobs_url": "https://api.github.com/repos/helpers/utils-concat-array/git/blobs{/sha}",
2954 | "git_tags_url": "https://api.github.com/repos/helpers/utils-concat-array/git/tags{/sha}",
2955 | "git_refs_url": "https://api.github.com/repos/helpers/utils-concat-array/git/refs{/sha}",
2956 | "trees_url": "https://api.github.com/repos/helpers/utils-concat-array/git/trees{/sha}",
2957 | "statuses_url": "https://api.github.com/repos/helpers/utils-concat-array/statuses/{sha}",
2958 | "languages_url": "https://api.github.com/repos/helpers/utils-concat-array/languages",
2959 | "stargazers_url": "https://api.github.com/repos/helpers/utils-concat-array/stargazers",
2960 | "contributors_url": "https://api.github.com/repos/helpers/utils-concat-array/contributors",
2961 | "subscribers_url": "https://api.github.com/repos/helpers/utils-concat-array/subscribers",
2962 | "subscription_url": "https://api.github.com/repos/helpers/utils-concat-array/subscription",
2963 | "commits_url": "https://api.github.com/repos/helpers/utils-concat-array/commits{/sha}",
2964 | "git_commits_url": "https://api.github.com/repos/helpers/utils-concat-array/git/commits{/sha}",
2965 | "comments_url": "https://api.github.com/repos/helpers/utils-concat-array/comments{/number}",
2966 | "issue_comment_url": "https://api.github.com/repos/helpers/utils-concat-array/issues/comments/{number}",
2967 | "contents_url": "https://api.github.com/repos/helpers/utils-concat-array/contents/{+path}",
2968 | "compare_url": "https://api.github.com/repos/helpers/utils-concat-array/compare/{base}...{head}",
2969 | "merges_url": "https://api.github.com/repos/helpers/utils-concat-array/merges",
2970 | "archive_url": "https://api.github.com/repos/helpers/utils-concat-array/{archive_format}{/ref}",
2971 | "downloads_url": "https://api.github.com/repos/helpers/utils-concat-array/downloads",
2972 | "issues_url": "https://api.github.com/repos/helpers/utils-concat-array/issues{/number}",
2973 | "pulls_url": "https://api.github.com/repos/helpers/utils-concat-array/pulls{/number}",
2974 | "milestones_url": "https://api.github.com/repos/helpers/utils-concat-array/milestones{/number}",
2975 | "notifications_url": "https://api.github.com/repos/helpers/utils-concat-array/notifications{?since,all,participating}",
2976 | "labels_url": "https://api.github.com/repos/helpers/utils-concat-array/labels{/name}",
2977 | "releases_url": "https://api.github.com/repos/helpers/utils-concat-array/releases{/id}",
2978 | "created_at": "2013-09-10T10:38:54Z",
2979 | "updated_at": "2013-10-21T21:48:41Z",
2980 | "pushed_at": "2013-09-10T10:54:12Z",
2981 | "git_url": "git://github.com/helpers/utils-concat-array.git",
2982 | "ssh_url": "git@github.com:helpers/utils-concat-array.git",
2983 | "clone_url": "https://github.com/helpers/utils-concat-array.git",
2984 | "svn_url": "https://github.com/helpers/utils-concat-array",
2985 | "homepage": null,
2986 | "size": 76,
2987 | "stargazers_count": 1,
2988 | "watchers_count": 1,
2989 | "language": "JavaScript",
2990 | "has_issues": true,
2991 | "has_downloads": true,
2992 | "has_wiki": true,
2993 | "forks_count": 0,
2994 | "mirror_url": null,
2995 | "open_issues_count": 0,
2996 | "forks": 0,
2997 | "open_issues": 0,
2998 | "watchers": 1,
2999 | "default_branch": "master",
3000 | "master_branch": "master",
3001 | "permissions": {
3002 | "admin": false,
3003 | "push": false,
3004 | "pull": true
3005 | },
3006 | "fullname": "helpers/utils-concat-array",
3007 | "download": "https://github.com/helpers/utils-concat-array/archive/master.zip"
3008 | },
3009 | {
3010 | "id": 13757460,
3011 | "name": "utils-update",
3012 | "full_name": "helpers/utils-update",
3013 | "owner": {
3014 | "login": "helpers",
3015 | "id": 4811808,
3016 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
3017 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
3018 | "url": "https://api.github.com/users/helpers",
3019 | "html_url": "https://github.com/helpers",
3020 | "followers_url": "https://api.github.com/users/helpers/followers",
3021 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
3022 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
3023 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
3024 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
3025 | "organizations_url": "https://api.github.com/users/helpers/orgs",
3026 | "repos_url": "https://api.github.com/users/helpers/repos",
3027 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
3028 | "received_events_url": "https://api.github.com/users/helpers/received_events",
3029 | "type": "Organization",
3030 | "site_admin": false
3031 | },
3032 | "private": false,
3033 | "html_url": "https://github.com/helpers/utils-update",
3034 | "description": "Update the properties on an object with the properties from another object.",
3035 | "fork": false,
3036 | "url": "https://github.com/helpers/utils-update",
3037 | "forks_url": "https://api.github.com/repos/helpers/utils-update/forks",
3038 | "keys_url": "https://api.github.com/repos/helpers/utils-update/keys{/key_id}",
3039 | "collaborators_url": "https://api.github.com/repos/helpers/utils-update/collaborators{/collaborator}",
3040 | "teams_url": "https://api.github.com/repos/helpers/utils-update/teams",
3041 | "hooks_url": "https://api.github.com/repos/helpers/utils-update/hooks",
3042 | "issue_events_url": "https://api.github.com/repos/helpers/utils-update/issues/events{/number}",
3043 | "events_url": "https://api.github.com/repos/helpers/utils-update/events",
3044 | "assignees_url": "https://api.github.com/repos/helpers/utils-update/assignees{/user}",
3045 | "branches_url": "https://api.github.com/repos/helpers/utils-update/branches{/branch}",
3046 | "tags_url": "https://api.github.com/repos/helpers/utils-update/tags",
3047 | "blobs_url": "https://api.github.com/repos/helpers/utils-update/git/blobs{/sha}",
3048 | "git_tags_url": "https://api.github.com/repos/helpers/utils-update/git/tags{/sha}",
3049 | "git_refs_url": "https://api.github.com/repos/helpers/utils-update/git/refs{/sha}",
3050 | "trees_url": "https://api.github.com/repos/helpers/utils-update/git/trees{/sha}",
3051 | "statuses_url": "https://api.github.com/repos/helpers/utils-update/statuses/{sha}",
3052 | "languages_url": "https://api.github.com/repos/helpers/utils-update/languages",
3053 | "stargazers_url": "https://api.github.com/repos/helpers/utils-update/stargazers",
3054 | "contributors_url": "https://api.github.com/repos/helpers/utils-update/contributors",
3055 | "subscribers_url": "https://api.github.com/repos/helpers/utils-update/subscribers",
3056 | "subscription_url": "https://api.github.com/repos/helpers/utils-update/subscription",
3057 | "commits_url": "https://api.github.com/repos/helpers/utils-update/commits{/sha}",
3058 | "git_commits_url": "https://api.github.com/repos/helpers/utils-update/git/commits{/sha}",
3059 | "comments_url": "https://api.github.com/repos/helpers/utils-update/comments{/number}",
3060 | "issue_comment_url": "https://api.github.com/repos/helpers/utils-update/issues/comments/{number}",
3061 | "contents_url": "https://api.github.com/repos/helpers/utils-update/contents/{+path}",
3062 | "compare_url": "https://api.github.com/repos/helpers/utils-update/compare/{base}...{head}",
3063 | "merges_url": "https://api.github.com/repos/helpers/utils-update/merges",
3064 | "archive_url": "https://api.github.com/repos/helpers/utils-update/{archive_format}{/ref}",
3065 | "downloads_url": "https://api.github.com/repos/helpers/utils-update/downloads",
3066 | "issues_url": "https://api.github.com/repos/helpers/utils-update/issues{/number}",
3067 | "pulls_url": "https://api.github.com/repos/helpers/utils-update/pulls{/number}",
3068 | "milestones_url": "https://api.github.com/repos/helpers/utils-update/milestones{/number}",
3069 | "notifications_url": "https://api.github.com/repos/helpers/utils-update/notifications{?since,all,participating}",
3070 | "labels_url": "https://api.github.com/repos/helpers/utils-update/labels{/name}",
3071 | "releases_url": "https://api.github.com/repos/helpers/utils-update/releases{/id}",
3072 | "created_at": "2013-10-21T22:55:47Z",
3073 | "updated_at": "2013-10-21T22:59:33Z",
3074 | "pushed_at": "2013-10-21T22:59:32Z",
3075 | "git_url": "git://github.com/helpers/utils-update.git",
3076 | "ssh_url": "git@github.com:helpers/utils-update.git",
3077 | "clone_url": "https://github.com/helpers/utils-update.git",
3078 | "svn_url": "https://github.com/helpers/utils-update",
3079 | "homepage": null,
3080 | "size": 76,
3081 | "stargazers_count": 0,
3082 | "watchers_count": 0,
3083 | "language": "JavaScript",
3084 | "has_issues": true,
3085 | "has_downloads": true,
3086 | "has_wiki": true,
3087 | "forks_count": 0,
3088 | "mirror_url": null,
3089 | "open_issues_count": 0,
3090 | "forks": 0,
3091 | "open_issues": 0,
3092 | "watchers": 0,
3093 | "default_branch": "master",
3094 | "master_branch": "master",
3095 | "permissions": {
3096 | "admin": false,
3097 | "push": false,
3098 | "pull": true
3099 | },
3100 | "fullname": "helpers/utils-update",
3101 | "download": "https://github.com/helpers/utils-update/archive/master.zip"
3102 | },
3103 | {
3104 | "id": 12393755,
3105 | "name": "yfm",
3106 | "full_name": "helpers/yfm",
3107 | "owner": {
3108 | "login": "helpers",
3109 | "id": 4811808,
3110 | "avatar_url": "https://2.gravatar.com/avatar/7e2cdde46470187ae7e2e34ab51cd0dd?d=https%3A%2F%2Fidenticons.github.com%2Fbb1def822d7cfa1e07c0b13b8b31d438.png&r=x",
3111 | "gravatar_id": "7e2cdde46470187ae7e2e34ab51cd0dd",
3112 | "url": "https://api.github.com/users/helpers",
3113 | "html_url": "https://github.com/helpers",
3114 | "followers_url": "https://api.github.com/users/helpers/followers",
3115 | "following_url": "https://api.github.com/users/helpers/following{/other_user}",
3116 | "gists_url": "https://api.github.com/users/helpers/gists{/gist_id}",
3117 | "starred_url": "https://api.github.com/users/helpers/starred{/owner}{/repo}",
3118 | "subscriptions_url": "https://api.github.com/users/helpers/subscriptions",
3119 | "organizations_url": "https://api.github.com/users/helpers/orgs",
3120 | "repos_url": "https://api.github.com/users/helpers/repos",
3121 | "events_url": "https://api.github.com/users/helpers/events{/privacy}",
3122 | "received_events_url": "https://api.github.com/users/helpers/received_events",
3123 | "type": "Organization",
3124 | "site_admin": false
3125 | },
3126 | "private": false,
3127 | "html_url": "https://github.com/helpers/yfm",
3128 | "description": "Helpers and examples for extracting, parsing, and passing context from YAML front matter into your templates. Useful if you need custom programming beyond what Assemble offers by default.",
3129 | "fork": false,
3130 | "url": "https://github.com/helpers/yfm",
3131 | "forks_url": "https://api.github.com/repos/helpers/yfm/forks",
3132 | "keys_url": "https://api.github.com/repos/helpers/yfm/keys{/key_id}",
3133 | "collaborators_url": "https://api.github.com/repos/helpers/yfm/collaborators{/collaborator}",
3134 | "teams_url": "https://api.github.com/repos/helpers/yfm/teams",
3135 | "hooks_url": "https://api.github.com/repos/helpers/yfm/hooks",
3136 | "issue_events_url": "https://api.github.com/repos/helpers/yfm/issues/events{/number}",
3137 | "events_url": "https://api.github.com/repos/helpers/yfm/events",
3138 | "assignees_url": "https://api.github.com/repos/helpers/yfm/assignees{/user}",
3139 | "branches_url": "https://api.github.com/repos/helpers/yfm/branches{/branch}",
3140 | "tags_url": "https://api.github.com/repos/helpers/yfm/tags",
3141 | "blobs_url": "https://api.github.com/repos/helpers/yfm/git/blobs{/sha}",
3142 | "git_tags_url": "https://api.github.com/repos/helpers/yfm/git/tags{/sha}",
3143 | "git_refs_url": "https://api.github.com/repos/helpers/yfm/git/refs{/sha}",
3144 | "trees_url": "https://api.github.com/repos/helpers/yfm/git/trees{/sha}",
3145 | "statuses_url": "https://api.github.com/repos/helpers/yfm/statuses/{sha}",
3146 | "languages_url": "https://api.github.com/repos/helpers/yfm/languages",
3147 | "stargazers_url": "https://api.github.com/repos/helpers/yfm/stargazers",
3148 | "contributors_url": "https://api.github.com/repos/helpers/yfm/contributors",
3149 | "subscribers_url": "https://api.github.com/repos/helpers/yfm/subscribers",
3150 | "subscription_url": "https://api.github.com/repos/helpers/yfm/subscription",
3151 | "commits_url": "https://api.github.com/repos/helpers/yfm/commits{/sha}",
3152 | "git_commits_url": "https://api.github.com/repos/helpers/yfm/git/commits{/sha}",
3153 | "comments_url": "https://api.github.com/repos/helpers/yfm/comments{/number}",
3154 | "issue_comment_url": "https://api.github.com/repos/helpers/yfm/issues/comments/{number}",
3155 | "contents_url": "https://api.github.com/repos/helpers/yfm/contents/{+path}",
3156 | "compare_url": "https://api.github.com/repos/helpers/yfm/compare/{base}...{head}",
3157 | "merges_url": "https://api.github.com/repos/helpers/yfm/merges",
3158 | "archive_url": "https://api.github.com/repos/helpers/yfm/{archive_format}{/ref}",
3159 | "downloads_url": "https://api.github.com/repos/helpers/yfm/downloads",
3160 | "issues_url": "https://api.github.com/repos/helpers/yfm/issues{/number}",
3161 | "pulls_url": "https://api.github.com/repos/helpers/yfm/pulls{/number}",
3162 | "milestones_url": "https://api.github.com/repos/helpers/yfm/milestones{/number}",
3163 | "notifications_url": "https://api.github.com/repos/helpers/yfm/notifications{?since,all,participating}",
3164 | "labels_url": "https://api.github.com/repos/helpers/yfm/labels{/name}",
3165 | "releases_url": "https://api.github.com/repos/helpers/yfm/releases{/id}",
3166 | "created_at": "2013-08-27T01:12:36Z",
3167 | "updated_at": "2013-11-18T04:19:44Z",
3168 | "pushed_at": "2013-09-29T22:27:21Z",
3169 | "git_url": "git://github.com/helpers/yfm.git",
3170 | "ssh_url": "git@github.com:helpers/yfm.git",
3171 | "clone_url": "https://github.com/helpers/yfm.git",
3172 | "svn_url": "https://github.com/helpers/yfm",
3173 | "homepage": "",
3174 | "size": 131,
3175 | "stargazers_count": 5,
3176 | "watchers_count": 5,
3177 | "language": "JavaScript",
3178 | "has_issues": true,
3179 | "has_downloads": true,
3180 | "has_wiki": true,
3181 | "forks_count": 3,
3182 | "mirror_url": null,
3183 | "open_issues_count": 0,
3184 | "forks": 3,
3185 | "open_issues": 0,
3186 | "watchers": 5,
3187 | "default_branch": "master",
3188 | "master_branch": "master",
3189 | "permissions": {
3190 | "admin": false,
3191 | "push": false,
3192 | "pull": true
3193 | },
3194 | "fullname": "helpers/yfm",
3195 | "download": "https://github.com/helpers/yfm/archive/master.zip"
3196 | }
3197 | ]
3198 | }
--------------------------------------------------------------------------------