Luke Childs
6 years ago
commit
164d1b31b6
6 changed files with 5043 additions and 0 deletions
@ -0,0 +1,9 @@ |
|||||
|
!yarn.lock |
||||
|
|
||||
|
.cache |
||||
|
dist |
||||
|
node_modules |
||||
|
.nyc_output |
||||
|
npm-debug.log |
||||
|
package-lock.json |
||||
|
yarn-error.log |
@ -0,0 +1,15 @@ |
|||||
|
<html> |
||||
|
<head> |
||||
|
<title>tippin.me Badge Generator</title> |
||||
|
<link rel="shortcut icon" href="favicon.png"> |
||||
|
<meta name="description" content="Readme badge generator for tippin.me."/> |
||||
|
<link rel="stylesheet" type="text/css" href="style.css"> |
||||
|
<meta name="twitter:card" value="summary"> |
||||
|
<meta property="og:title" content="tippin.me Badge Generator" /> |
||||
|
<meta property="og:description" content="Readme badge generator for tippin.me." /> |
||||
|
<meta property="og:image" content="favicon.png" /> |
||||
|
</head> |
||||
|
<body> |
||||
|
<script src="./script.js"></script> |
||||
|
</body> |
||||
|
</html> |
@ -0,0 +1,20 @@ |
|||||
|
{ |
||||
|
"name": "tippin-badge", |
||||
|
"version": "1.0.0", |
||||
|
"description": "Readme badge generator for tippin.me", |
||||
|
"main": "index.html", |
||||
|
"repository": "lukechilds/tippin-badge", |
||||
|
"author": "Luke Childs <lukechilds123@gmail.com>", |
||||
|
"license": "MIT", |
||||
|
"private": true, |
||||
|
"scripts": { |
||||
|
"dev": "parcel index.html", |
||||
|
"build": "parcel build index.html" |
||||
|
}, |
||||
|
"devDependencies": { |
||||
|
"parcel-bundler": "^1.11.0" |
||||
|
}, |
||||
|
"dependencies": { |
||||
|
"modern-normalize": "^0.5.0" |
||||
|
} |
||||
|
} |
@ -0,0 +1 @@ |
|||||
|
@import 'modern-normalize'; |
File diff suppressed because it is too large
Loading…
Reference in new issue