mirror of
https://github.com/oed/seedsplit.git
synced 2026-01-09 12:48:00 -05:00
26 lines
593 B
JSON
26 lines
593 B
JSON
{
|
|
"name": "seedsplit",
|
|
"version": "0.2.1",
|
|
"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"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^3.5.0",
|
|
"js-combinatorics": "^0.5.2",
|
|
"mocha": "^3.2.0"
|
|
}
|
|
}
|