-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.41 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
{
"name": "web3-nodejs-provider",
"description": "HD Wallet-enabled Web3 provider",
"license": "MIT",
"author": "Tim Coulter <murgornaftali@gmail.com>",
"homepage": "https://github.com/web3-nodejs-provider/tree/master/#readme",
"repository": {
"type": "git",
"url": "https://github.com/naftalimurgor/web3-nodejs-provider.git"
},
"bugs": {
"url": "https://github.com/naftalimurgor/web3-nodejs-provider/issues"
},
"version": "0.1.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/common": "^2.4.0",
"@ethereumjs/tx": "^3.3.0",
"eth-sig-util": "^3.0.1",
"ethereum-cryptography": "1.0.3",
"ethereum-protocol": "^1.0.1",
"ethereumjs-util": "^6.1.0",
"ethereumjs-wallet": "^1.0.1",
"web3-provider-engine": "16.0.3"
},
"devDependencies": {
"@types/bip39": "^2.4.2",
"@types/ethereum-protocol": "^1.0.0",
"@types/ethereumjs-util": "^5.2.0",
"@types/mocha": "^5.2.7",
"@types/web3-provider-engine": "^14.0.0",
"ganache": "^7.1.0",
"mocha": "9.2.2",
"ts-node": "10.7.0",
"typescript": "^4.1.4",
"web3": "1.5.3"
},
"keywords": [
"etheruem",
"hd",
"mnemonic",
"provider",
"wallet"
],
"publishConfig": {
"access": "public"
}
}