forked from d11e9/node-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
62 lines (62 loc) · 1.72 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
{
"name": "node-ethereum",
"version": "1.2.2",
"description": "a simple standalone or embeddable Ethereum client written for Node.js",
"repository": {
"type": "git",
"url": "https://github.com/wanderer/ethereum-client"
},
"homepage": "https://github.com/wanderer/ethereum-client",
"bugs": "https://github.com/wanderer/ethereum-client/issues",
"main": "index.js",
"bin": {
"nether": "./bin/nether"
},
"scripts": {
"test": "mocha --timeout 5000 --reporter spec ./test/*.js"
},
"keywords": [
"ethereum"
],
"contributors": [
"Martin Becze <wanderer.github.io> (github.com/wanderer)",
"kumavis (https://github.com/kumavis)",
"Ethers (github.com/ethers)",
"Jacob Payne <http://latrasis.com> (github.com/latrasis)"
],
"license": "GPL2",
"dependencies": {
"async": "*",
"bn.js": "^2.0.1",
"body-parser": "~1.10.1",
"devp2p": "0.0.2",
"ethereum-common": "0.0.3",
"ethereumjs-lib": "0.5.0",
"ethereumjs-util": "1.3.2",
"express": "~4.11.0",
"external-ip": "^0.2.3",
"is-my-json-valid": "^2.3.0",
"level": "^0.18.0",
"level-sublevel": "^6.4.0",
"level-writestream": "^0.1.3",
"levelup": "^0.19.0",
"minimist": "*",
"mkdirp": "^0.5.0",
"multilevel": "^6.0.1",
"nat-upnp": "0.2.11",
"npmlog": "*",
"pretty-hrtime": "^1.0.0",
"request": "^2.40.0",
"rlp": "1.0.1",
"semaphore": "~1.0.1",
"server-destroy": "^1.0.0",
"stream-to-buffer": "^0.1.0",
"ws": "git+https://github.com/wanderer/ws"
},
"devDependencies": {
"secp256k1": "0.0.16",
"eslint": "^0.9.2",
"ethereum-tests": "git+https://github.com/ethereum/tests.git#64a5c7b5961e7979344f4205fb999eff33b60019",
"mocha": "^2.1.0"
}
}