git-auto-badger
Version:
A npm cli tool that reads your package.json/project metadata and git config and connects your readme with multiple badge providers (shields.io, badgen.net etc)
19 lines (17 loc) • 569 B
JavaScript
const types = require("./types");
const baseUrls = {
[ ]: "https://travis-ci.org",
[ ]: "https://github.com",
[ ]: "https://gitlab.com",
[ ]: "https://www.appveyor.com",
[ ]: "http://nodejs.org",
[ ]: "https://www.python.org",
[ ]: "https://coveralls.io",
[ ]: "https://codecov.io",
[ ]: "https://www.npmjs.com",
[ ]: "https://pypi.org",
[ ]: "https://twitter.com/"
}
module.exports = {
baseUrls
}