-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "private-key-recovery",
"version": "1.4.1",
"description": "Private key recovery script to brute-force broken private keys in WIF.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"start": "cd dist && node index.js",
"test": "jest --forceExit --coverage --verbose",
"build": "tsc -p tsconfig.json",
"debug": "yarn build && yarn start"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/GuusBaggen/privatekeyrecovery.git"
},
"keywords": [
"private",
"key",
"recovery"
],
"author": "Guus Baggen <baggenguus@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/GuusBaggen/privatekeyrecovery/issues"
},
"homepage": "https://github.com/GuusBaggen/privatekeyrecovery#readme",
"dependencies": {
"bs58": "4.0.1"
},
"devDependencies": {
"@types/jasmine": "^2.8.8",
"@types/node": "^10.10.3",
"cross-env": "^5.1.3",
"jest": "^23.6.0",
"rimraf": "^2.6.2",
"ts-jest": "^23.10.1",
"typescript": "^3.0.3"
}
}