From 9850047aee439e98a5729aa231c0bb637660c435 Mon Sep 17 00:00:00 2001 From: Jonathan Moore Date: Mon, 11 Jan 2021 22:43:21 -0600 Subject: [PATCH] Add more GitHub badges --- src/config.js | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/src/config.js b/src/config.js index bc21969..53a6bcb 100644 --- a/src/config.js +++ b/src/config.js @@ -33,6 +33,42 @@ export const services: Service[] = [ imageUrl: 'https://img.shields.io/github/license/{repository}.svg', title: 'License', }, + { + name: 'GitHub lines of code', + url: 'https://github.com/{repository}/graphs/contributors', + imageUrl: 'https://img.shields.io/tokei/lines/github/{repository}.svg', + title: 'Activity' + }, + { + name: 'GitHub contributors', + url: 'https://github.com/{repository}/graphs/contributors', + imageUrl: 'https://img.shields.io/github/contributors/{repository}.svg', + title: 'Activity' + }, + { + name: 'GitHub last commit', + url: 'https://github.com/{repository}/commits', + imageUrl: 'https://img.shields.io/github/last-commit/{repository}.svg', + title: 'Activity' + }, + { + name: 'GitHub commit activity', + url: 'https://github.com/{repository}/graphs/contributors', + imageUrl: 'https://img.shields.io/github/commit-activity/m/{repository}.svg', + title: 'Activity' + }, + { + name: 'GitHub downloads', + url: 'https://github.com/{repository}/releases', + imageUrl: 'https://img.shields.io/github/downloads/{repository}/total.svg', + title: 'Downloads' + }, + { + name: 'GitHub release', + url: 'https://github.com/{repository}/releases', + imageUrl: 'https://img.shields.io/github/v/release/{repository}.svg', + title: 'Version' + }, { name: 'Travis CI', url: 'https://travis-ci.org/{repository}',