Files
seedsplit/package.json
Denis Shulyaka d0cf927606 Switch to dsprenkles/sss-node library
1. Replaced secrets.js with dsprenkles/sss-node
2. Each shard is a number followed by exactly 24 words
3. If the initial seed is not 24 words, then the shard number is prefixed with a character indicating the seed length
4. The lib/seedsplit.js functions now return a promise
5. Shards are not backwards compatible with the current seedsplit version
2018-05-12 00:55:00 +03:00

26 lines
605 B
JSON

{
"name": "seedsplit",
"version": "0.1.2",
"description": "Use shamirs secret sharing scheme to split a seed mnemonic for crypto wallets to multiple mnemonics.",
"main": "lib/seedsplit.js",
"scripts": {
"test": "mocha"
},
"author": "oed",
"license": "Unlicense",
"bin": {
"seedsplit": "./bin/cli.js"
},
"dependencies": {
"bip39": "^2.5.0",
"commander": "^2.9.0",
"prompt": "^1.0.0",
"shamirsecretsharing": "github:dsprenkels/sss-node#release-0.x"
},
"devDependencies": {
"chai": "^3.5.0",
"js-combinatorics": "^0.5.2",
"mocha": "^3.2.0"
}
}