forked from bitpay/crypto-rpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.7 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
{
"name": "eonacore-crypto-rpc",
"version": "1.0.1",
"description": "rpc wrapper for multiple rpcs",
"main": "index.js",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"ci:test": "npm run lint && npm run truffle:compile && npm run truffle:migrate && npm run truffle:test && mocha --recursive ./tests",
"test": "docker-compose down && docker-compose build && docker-compose run test_runner",
"lint": "./node_modules/.bin/eslint .",
"truffle:compile": "cd blockchain/ && ../node_modules/.bin/truffle compile --network development_geth && ../node_modules/.bin/truffle compile --network development_matic",
"truffle:test": "cd blockchain/ && ../node_modules/.bin/truffle test --network development_geth && ../node_modules/.bin/truffle test --network development_matic",
"truffle:migrate": "cd blockchain/ && ../node_modules/.bin/truffle migrate --network development_geth && ../node_modules/.bin/truffle migrate --network development_matic",
"pub": "npm publish"
},
"license": "ISC",
"prettier": {},
"dependencies": {
"abi-decoder": "2.4.0",
"bitcoind-rpc": "0.9.1",
"commander": "2.8.1",
"dogecoind-rpc": "0.8.1",
"ethereumjs-tx": "1.3.7",
"lightning": "5.4.0",
"promptly": "0.2.0",
"web3": "1.7.1",
"xrpl": "^2.6.0"
},
"devDependencies": {
"assert": "^1.4.1",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"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",
"sinon": "^7.3.1",
"truffle": "5.1.0"
}
}