mirror of https://github.com/lukechilds/vainjs.git
Luke Childs
6 years ago
commit
514bd20376
7 changed files with 98 additions and 0 deletions
@ -0,0 +1,5 @@ |
|||
node_modules |
|||
.nyc_output |
|||
npm-debug.log |
|||
package-lock.json |
|||
yarn.lock |
@ -0,0 +1,8 @@ |
|||
language: node_js |
|||
node_js: |
|||
- '8' |
|||
script: npm test |
|||
after_success: npm run coverage |
|||
notifications: |
|||
email: |
|||
on_success: never |
@ -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. |
@ -0,0 +1,19 @@ |
|||
# vainjs |
|||
|
|||
> A JavaScript vanity address generator |
|||
|
|||
[![Build Status](https://travis-ci.com/lukechilds/vainjs.svg?branch=master)](https://travis-ci.com/lukechilds/vainjs) |
|||
[![Coverage Status](https://coveralls.io/repos/github/lukechilds/vainjs/badge.svg?branch=master)](https://coveralls.io/github/lukechilds/vainjs?branch=master) |
|||
[![npm](https://img.shields.io/npm/v/vainjs.svg)](https://www.npmjs.com/package/vainjs) |
|||
|
|||
Generates vanity addresses for a wide range of address formats. |
|||
|
|||
## Install |
|||
|
|||
```shell |
|||
npm install vainjs |
|||
``` |
|||
|
|||
## License |
|||
|
|||
MIT © Luke Childs |
@ -0,0 +1,36 @@ |
|||
{ |
|||
"name": "vainjs", |
|||
"version": "0.0.0", |
|||
"description": "A JavaScript vanity address generator", |
|||
"main": "src/index.js", |
|||
"engines": { |
|||
"node": ">=8" |
|||
}, |
|||
"scripts": { |
|||
"test": "xo && nyc ava", |
|||
"coverage": "nyc report --reporter=text-lcov | coveralls" |
|||
}, |
|||
"repository": { |
|||
"type": "git", |
|||
"url": "git+https://github.com/lukechilds/vainjs.git" |
|||
}, |
|||
"keywords": [ |
|||
"vanity", |
|||
"address", |
|||
"bitcoin", |
|||
"cryptocurrency" |
|||
], |
|||
"author": "Luke Childs <lukechilds123@gmail.com> (http://lukechilds.co.uk)", |
|||
"license": "MIT", |
|||
"bugs": { |
|||
"url": "https://github.com/lukechilds/vainjs/issues" |
|||
}, |
|||
"homepage": "https://github.com/lukechilds/vainjs#readme", |
|||
"devDependencies": { |
|||
"ava": "^0.25.0", |
|||
"coveralls": "^3.0.2", |
|||
"nyc": "^13.1.0", |
|||
"xo": "^0.23.0" |
|||
}, |
|||
"dependencies": {} |
|||
} |
@ -0,0 +1,3 @@ |
|||
const vanity = () => {}; |
|||
|
|||
module.exports = vanity; |
@ -0,0 +1,6 @@ |
|||
import test from 'ava'; |
|||
import vanity from '..'; |
|||
|
|||
test('vanity is exported', t => { |
|||
t.not(vanity, undefined); |
|||
}); |
Loading…
Reference in new issue