-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.12 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
{
"name": "mnemonic-to-private-key",
"version": "0.4.1",
"author": "Hebilicious https://github.com/hebilicious",
"repository": {
"type": "git",
"url": "https://github.com/hebilicious/mnemonic-to-private-key",
"directory": "src"
},
"main": "./lib/lib.js",
"bin": {
"mnemonic-to-private-key": "./lib/lib.js"
},
"license": "MIT",
"scripts": {
"test": "uvu -r esbuild-register tests",
"cardano-test": "yarn ts src/test.ts",
"np": "np --no-2fa",
"ts": "node -r esbuild-register",
"build": "tsc",
"libtest:noarg": "node lib/lib.js",
"libtest": "node lib/lib.js 'garlic pupil february legend morning bright section stool action stadium course busy' password"
},
"dependencies": {
"@emurgo/cardano-serialization-lib-nodejs": "^8.0.0",
"bip39": "^3.0.4",
"bitcore-mnemonic": "^8.25.7",
"elliptic": "^6.5.4",
"ethereumjs-util": "^7.0.10",
"ethereumjs-wallet": "^1.0.1"
},
"devDependencies": {
"@types/elliptic": "^6.4.12",
"esbuild": "^0.12.5",
"esbuild-register": "^2.5.0",
"np": "^7.4.0",
"typescript": "^4.2.4",
"uvu": "^0.5.1"
}
}