forked from MetaMask/hd-seed-phrase-guesser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.42 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
61
62
63
{
"name": "hd-seed-phrase-guesser",
"version": "1.0.1",
"description": "A tool for recovering ethereum accounts from mis-recorded seed phrases.",
"main": "index.js",
"scripts": {
"test": "node test",
"build": "browserify sample/index.js -o bundle.js"
},
"author": "Dan Finlay <[email protected]>",
"license": "ISC",
"dependencies": {
"bip39": "^2.4.0",
"eth-hd-keyring": "^1.2.1",
"ethereumjs-util": "^5.1.2",
"ethereumjs-wallet": "^0.6.0",
"spell": "^1.0.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"stage-0"
]
}
],
"envify",
"brfs"
]
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babelify": "^8.0.0",
"brfs": "^1.4.3",
"envify": "^4.1.0",
"ethjs": "^0.3.0",
"metamascara": "^2.1.0",
"tape": "^4.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danfinlay/hd-seed-phrase-guesser.git"
},
"keywords": [
"ethereum",
"hd",
"bip44",
"bip39",
"spelling",
"recovery"
],
"bugs": {
"url": "https://github.com/danfinlay/hd-seed-phrase-guesser/issues"
},
"homepage": "https://github.com/danfinlay/hd-seed-phrase-guesser#readme"
}