'use strict'; var github = require('../_common/github.js'); var owner = 'sharkdp'; var repo = 'hexyl'; module.exports = function () { return github(null, owner, repo).then(function (all) { return all; }); }; if (module === require.main) { module.exports().then(function (all) { all = require('../_webi/normalize.js')(all); all.releases = all.releases.slice(0, 10); //console.info(JSON.stringify(all)); console.info(JSON.stringify(all, null, 2)); }); }