37 lines
958 B
JSON
37 lines
958 B
JSON
{
|
|
"name": "tx-manager",
|
|
"version": "0.1.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"eslint": "eslint --ext .js --ignore-path .gitignore .",
|
|
"prettier:check": "npx prettier --check . --config .prettierrc",
|
|
"prettier:fix": "npx prettier --write . --config .prettierrc",
|
|
"lint": "yarn eslint && yarn prettier:check",
|
|
"test": "mocha --timeout 300000"
|
|
},
|
|
"keywords": [],
|
|
"author": "Roman Semenov <semenov.roma@gmail.com>",
|
|
"license": "ISC",
|
|
"files": [
|
|
"src/*"
|
|
],
|
|
"dependencies": {
|
|
"async-mutex": "^0.2.4",
|
|
"gas-price-oracle": "^0.1.5",
|
|
"web3": "^1.3.0",
|
|
"web3-core-promievent": "^1.3.0",
|
|
"web3-utils": "^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"
|
|
}
|
|
}
|