forked from bitpay/crypto-rpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 926 Bytes
/
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
{
"name": "crypto-rpc",
"version": "1.0.0",
"description": "rpc wrapper for multiple rpcs",
"main": "index.js",
"scripts": {
"ci:test": "npm run lint && mocha ./tests",
"test": "docker-compose build && docker-compose run test_runner",
"lint": "./node_modules/.bin/eslint ."
},
"author": "Micah Riggan",
"license": "ISC",
"prettier": {},
"dependencies": {
"abi-decoder": "^1.2.0",
"bitcoind-rpc": "^0.7.2",
"commander": "^2.8.1",
"ethereumjs-tx": "^1.3.7",
"promptly": "^0.2.0",
"web3": "^1.0.0-beta.36"
},
"devDependencies": {
"assert": "^1.4.1",
"eslint": "^5.14.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0",
"prettier": "^1.16.4"
}
}