Browse Source

Initial commit

pull/1/head
Luke Childs 6 years ago
commit
ee241c73b3
  1. 7
      .gitignore
  2. 6
      .travis.yml
  3. 21
      LICENSE
  4. 10
      README.md
  5. 32
      index.html
  6. 5
      index.js
  7. 23
      package.json
  8. 17
      style.css
  9. 6853
      yarn.lock

7
.gitignore

@ -0,0 +1,7 @@
.cache
dist
node_modules
.nyc_output
npm-debug.log
package-lock.json
yarn-error.log

6
.travis.yml

@ -0,0 +1,6 @@
language: node_js
node_js: 'stable'
script: npm test
notifications:
email:
on_success: never

21
LICENSE

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2019 Luke Childs
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

10
README.md

@ -0,0 +1,10 @@
# howmanyconfs.com
> Compare security between cryptocurrencies - [howmanyconfs.com](https://howmanyconfs.com)
[![Build Status](https://travis-ci.com/lukechilds/howmanyconfs.com.svg?branch=master)](https://travis-ci.com/lukechilds/howmanyconfs.com)
[![tippin.me](https://badgen.net/badge/%E2%9A%A1%EF%B8%8Ftippin.me/@lukechilds/F0918E)](https://tippin.me/@lukechilds)
## License
MIT © Luke Childs

32
index.html

@ -0,0 +1,32 @@
<html>
<head>
<title>howmanyconfs.com</title>
<!-- <link rel="shortcut icon" href="favicon.png"> -->
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8">
<meta name="description" content="Compare security between cryptocurrencies.">
<meta property="og:site_name" content="howmanyconfs.com">
<meta property="og:title" content="howmanyconfs.com">
<meta property="og:type" content="website">
<!-- <meta property="og:image" content="card.png"> -->
<meta property="og:description" content="Compare security between cryptocurrencies.">
<meta property="og:url" content="https://howmanyconfs.com">
<meta property="twitter:card" content="summary_large_image">
</head>
<body>
<footer class="footer">
<div class="wrapper">
<span class="version"></span>
-
<a rel="noopener noreferrer" target="_blank" href="//github.com/lukechilds/howmanyconfs.com">Source code</a>
-
<a rel="noopener noreferrer" target="_blank" href="//github.com/lukechilds/howmanyconfs.com/issues">Report a bug</a>
<div class="me">
A thing by <a rel="noopener noreferrer" target="_blank" href="//lukechilds.co">@lukechilds</a>
</div>
</div>
</footer>
<script src="./index.js"></script>
</body>
</html>

5
index.js

@ -0,0 +1,5 @@
/* eslint-env browser */
import 'babel-polyfill'; // eslint-disable-line import/no-unassigned-import
import {version} from './package';
document.querySelector('.version').innerText = `v${version}`;

23
package.json

@ -0,0 +1,23 @@
{
"name": "howmanyconfs.com",
"version": "0.0.0",
"description": "Compare security between cryptocurrencies",
"main": "index.html",
"repository": "lukechilds/howmanyconfs.com",
"author": "Luke Childs <lukechilds123@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "parcel index.html",
"build": "parcel build index.html --public-url https://howmanyconfs.com",
"test": "xo && yarn build"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"modern-normalize": "^0.5.0"
},
"devDependencies": {
"parcel-bundler": "^1.12.3",
"xo": "^0.24.0"
}
}

17
style.css

@ -0,0 +1,17 @@
@import 'modern-normalize';
.wrapper {
max-width: 1024px;
margin: 0 auto;
padding: 0 2em;
box-sizing: content-box;
}
.footer {
padding: 1em 0;
background: rgba(255, 255, 255, 0.5);
}
.footer .me {
float: right;
}

6853
yarn.lock

File diff suppressed because it is too large
Loading…
Cancel
Save