-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.2 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "shareable-seed",
"version": "2.0.4",
"description": "A utility package for splitting a BIP39 mnemonic into shareable secrets that can later be combined to recover the seed.",
"main": "publish/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/eithanshavit/shareable-seed.git"
},
"keywords": [
"bitcoin",
"secret",
"seed",
"mnemonic",
"bip39",
"bip32",
"shamir",
"sharing"
],
"author": "Eithan Shavit <npm@eithanshavit.com> (http://eithanshavit.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/eithanshavit/shareable-seed/issues"
},
"homepage": "https://github.com/eithanshavit/shareable-seed#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"jest": "^27.4.7",
"standard": "^16.0.4"
},
"scripts": {
"standard": "standard",
"test": "npm run standard && npm run unit",
"unit": "jest",
"compile": "babel --presets es2015 -d publish/ src/",
"prepublish": "npm run compile"
},
"dependencies": {
"bip39": "^2.5.0",
"lodash": "^4.17.21",
"secrets.js-grempe": "^2.0.0",
"sha.js": "^2.4.10",
"zero-fill": "^2.2.3"
}
}