-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.63 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
{
"name": "@puremoney/hdwallet-provider",
"description": "HD Wallet-enabled Web3 provider (forked by RockStable)",
"license": "MIT",
"author": "Tim Coulter <[email protected]>",
"homepage": "https://github.com/puremoney/hdwallet-provider#readme",
"repository": {
"type": "git",
"url": "https://github.com/puremoney/hdwallet-provider"
},
"bugs": {
"url": "https://github.com/puremoney/hdwallet-provider/issues"
},
"version": "1.2.3",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepare": "yarn build",
"test": "yarn build && mocha --exit -r ts-node/register test/**/*.test.ts"
},
"types": "dist/index.d.ts",
"dependencies": {
"@ethereumjs/tx": "^3.0.0-beta.1",
"@puremoney/web3-provider-engine": "^15.0.13-x04",
"@types/web3": "^1.0.20",
"any-promise": "^1.3.0",
"bindings": "^1.5.0",
"ethereum-cryptography": "^0.1.3",
"ethereum-protocol": "^1.0.1",
"ethereumjs-util": "^6.1.0",
"ethereumjs-wallet": "^0.6.3",
"fs": "0.0.1-security",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@types/bip39": "^2.4.2",
"@types/ethereum-protocol": "^1.0.0",
"@types/ethereumjs-tx": "^1.0.1",
"@types/ethereumjs-util": "^5.2.0",
"@types/mocha": "^5.2.7",
"@types/web3-provider-engine": "^14.0.0",
"ganache-core": "2.13.0",
"mocha": "8.1.2",
"ts-node": "8.10.2",
"typescript": "3.9.6"
},
"keywords": [
"etheruem",
"hd",
"mnemonic",
"provider",
"wallet"
],
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com/"
},
"bin": {
"hdwallet": ""
}
}