Browse Source

Initial commit

master
Luke Childs 5 years ago
commit
1289b87e8f
  1. 5
      .gitignore
  2. 1
      .npmrc
  3. 7
      .travis.yml
  4. 21
      LICENSE
  5. 17
      README.md
  6. 27
      package.json
  7. 3
      src/index.js
  8. 6
      test/unit.js

5
.gitignore

@ -0,0 +1,5 @@
yarn.lock
package-lock.json
node_modules
.nyc_output
npm-debug.log

1
.npmrc

@ -0,0 +1 @@
package-lock=false

7
.travis.yml

@ -0,0 +1,7 @@
language: node_js
node_js: lts/*
script: npm test
after_success: npm run coverage
notifications:
email:
on_success: never

21
LICENSE

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2018 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.

17
README.md

@ -0,0 +1,17 @@
# bip39-versioned
> Proof of concept adding versioning to BIP39 compatible seeds
[![Build Status](https://travis-ci.com/lukechilds/bip39-versioned.svg?branch=master)](https://travis-ci.com/lukechilds/bip39-versioned)
[![Coverage Status](https://coveralls.io/repos/github/lukechilds/bip39-versioned/badge.svg?branch=master)](https://coveralls.io/github/lukechilds/bip39-versioned?branch=master)
[![npm](https://img.shields.io/npm/v/bip39-versioned.svg)](https://www.npmjs.com/package/bip39-versioned)
## Install
```shell
npm install bip39-versioned
```
## License
MIT © Luke Childs

27
package.json

@ -0,0 +1,27 @@
{
"name": "bip39-versioned",
"version": "0.0.0",
"main": "src/index.js",
"files": [
"src"
],
"description": "Proof of concept adding versioning to BIP39 compatible seeds",
"license": "MIT",
"repository": "lukechilds/bip39-versioned",
"author": "Luke Childs <lukechilds123@gmail.com> (https://lukechilds.co.uk)",
"scripts": {
"test": "xo && nyc ava",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"bitcoin",
"cryptocurrency",
"bip39"
],
"devDependencies": {
"ava": "^2.4.0",
"coveralls": "^3.0.8",
"nyc": "^14.1.1",
"xo": "^0.25.3"
}
}

3
src/index.js

@ -0,0 +1,3 @@
const bip39 = () => {};
module.exports = bip39;

6
test/unit.js

@ -0,0 +1,6 @@
import test from 'ava';
import bip39 from '..';
test('bip39 is exported', t => {
t.not(bip39, undefined);
});
Loading…
Cancel
Save