add gitdeploy
[webi-installers/.git] / gitdeploy / releases.js
1 'use strict';
2
3 var github = require('../_common/github.js');
4 var owner = 'therootcompany';
5 var repo = 'gitdeploy';
6
7 module.exports = function (request) {
8   return github(request, owner, repo).then(function (all) {
9     // remove checksums and .deb
10     return all;
11   });
12 };
13
14 if (module === require.main) {
15   module.exports(require('@root/request')).then(function (all) {
16     all = require('../_webi/normalize.js')(all);
17     console.info(JSON.stringify(all));
18   });
19 }