forked from iancoleman/shamir39
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.89 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "seedhodler-shamir",
"version": "0.0.1",
"description": "Shamir Secret Sharing built for BIP39 Mnemonics. Alternative implementation to https://github.com/iancoleman/shamir39 ",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.config.prod.js",
"start:dev": "webpack-dev-server --config webpack.config.dev.js",
"start": "webpack --config webpack.config.prod.js && http-server ./dist -o",
"deploy": "npm run build && git subtree push --prefix dist origin gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seedhodler/seedhodler.git"
},
"author": "",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/seedhodler/seedhodler/issues"
},
"homepage": "https://github.com/seedhodler/seedhodler#readme",
"devDependencies": {
"@babel/core": "^7.5.4",
"autoprefixer": "^9.6.1",
"babel-loader": "^8.0.6",
"bootstrap": "^4.3.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^3.0.0",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"precss": "^4.0.0",
"raw-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"sjcl": "^1.0.8",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2",
"webpack-md5-hash": "0.0.6",
"webpack-merge": "^4.2.1",
"webpack-subresource-integrity": "^1.3.2",
"wrapper-webpack-plugin": "^2.1.0"
},
"dependencies": {
"bip39": "^3.0.2",
"fast-levenshtein": "^2.0.6",
"jquery": "^3.4.1",
"popper.js": "^1.15.0",
"unorm": "^1.6.0"
}
}