-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "eth-json-rpc",
"version": "0.3.4",
"description": "Lightweight wrapper library on top of Ethereum JSON RPC.",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "mocha",
"docs": "jsdoc -c .jsdocrc",
"http-docs": "PORT=${PORT:-8080}; http-server -p $PORT docs",
"coverage": "nyc --reporter=html npm run test"
},
"repository": {
"type": "git",
"url": "git@github.com:romfrolov/eth-json-rpc.git"
},
"keywords": [],
"author": "Roman Frolov <justcallmefrolov@gmail.com>",
"license": "GPL-3.0",
"dependencies": {
"big-integer": "1.6.41",
"ethereumjs-abi": "0.6.6",
"ethereumjs-tx": "1.3.7",
"jayson": "2.1.1",
"keccak256": "1.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chance": "^1.0.18",
"coveralls": "^3.0.7",
"ganache-cli": "^6.9.1",
"http-server": "^14.1.1",
"istanbul": "^0.4.5",
"jsdoc": "^3.6.3",
"mocha": "^10.0.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1"
}
}