UNPKG

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
const types = require("./types"); const baseUrls = { [types.TRAVIS]: "https://travis-ci.org", [types.GITHUB]: "https://github.com", [types.GITLAB]: "https://gitlab.com", [types.APPVEYOR]: "https://www.appveyor.com", [types.NODEJS]: "http://nodejs.org", [types.PYTHON]: "https://www.python.org", [types.COVERALLS]: "https://coveralls.io", [types.CODECOV]: "https://codecov.io", [types.NPM]: "https://www.npmjs.com", [types.PIP]: "https://pypi.org", [types.TWITTER]: "https://twitter.com/" } module.exports = { baseUrls }