40 lines
1023 B
JSON
40 lines
1023 B
JSON
{
|
|
"name": "tx-manager",
|
|
"version": "0.4.8",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"eslint": "eslint --ext .js --ignore-path .gitignore .",
|
|
"prettier:check": "prettier --check . --config .prettierrc",
|
|
"prettier:fix": "prettier --write . --config .prettierrc",
|
|
"lint": "yarn eslint && yarn prettier:check",
|
|
"test": "mocha --timeout 300000"
|
|
},
|
|
"keywords": [],
|
|
"author": "Roman Semenov <semenov.roma@gmail.com>",
|
|
"license": "ISC",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/tornadocash/tx-manager.git"
|
|
},
|
|
"files": [
|
|
"src/*"
|
|
],
|
|
"dependencies": {
|
|
"async-mutex": "^0.2.4",
|
|
"ethers": "^5.4.6",
|
|
"gas-price-oracle": "^0.4.7",
|
|
"web3-core-promievent": "^1.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^4.2.0",
|
|
"dotenv": "^8.2.0",
|
|
"eslint": "^7.10.0",
|
|
"eslint-config-prettier": "^6.12.0",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"mocha": "^8.1.3",
|
|
"prettier": "^2.1.2",
|
|
"why-is-node-running": "^2.2.0"
|
|
}
|
|
}
|