forked from seedhodler/shamir
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 919 Bytes
/
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
{
"name": "shamir39-cli",
"version": "1.0.0",
"description": "Shamir Secret Sharing built for BIP39 Mnemonics as command line utility. Alternative implementation to https://github.com/iancoleman/shamir39 ",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.config.prod.js",
"devbuild": "webpack --config webpack.config.dev.js"
},
"author": "",
"license": "SEE LICENSE IN LICENSE",
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"nexe-webpack-plugin": "^0.1.1",
"terser-webpack-plugin": "^4.2.3",
"upx": "^1.0.6",
"webpack": "^4.46.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"bip39": "^3.0.2",
"chalk": "^4.1.1",
"command-line-args": "^5.2.0",
"fast-levenshtein": "^2.0.6",
"inquirer": "^8.2.0",
"unorm": "^1.6.0"
}
}