amb-mediators/package.json

66 lines
2.2 KiB
JSON

{
"name": "amb-mediators",
"version": "0.0.1",
"description": "Contracts for mediators intended to work on top of AMB",
"main": "index.js",
"scripts": {
"test": "scripts/test.sh",
"test:gasreport": "GASREPORT=true npm run test",
"test:gasreport:ci": "npm run test:gasreport && npx codechecks",
"compile": "truffle compile && cp contracts/amb_ens_mirroring/PublicResolver.json build/contracts/PublicResolver.json",
"flatten": "bash flatten.sh",
"lint": "npm run lint:js && npm run lint:sol",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"lint:sol:prettier:fix": "prettier --write \"contracts/**/*.sol\"",
"coverage": "SOLIDITY_COVERAGE=true scripts/test.sh",
"deploy": "if test \"$NOFLAT\" != \"true\" ; then npm run flatten; fi && cd deploy && node deploy.js"
},
"author": "POA network",
"license": "GPLv3",
"dependencies": {
"axios": "^0.19.0",
"bignumber.js": "^7.2.1",
"dotenv": "^5.0.1",
"envalid": "^4.1.4",
"ethereumjs-tx": "^1.3.4",
"node-fetch": "^2.1.2",
"promise-retry": "^1.1.1",
"querystring": "^0.2.0",
"web3": "^1.2.11"
},
"devDependencies": {
"@0x/sol-coverage": "^4.0.10",
"@0x/sol-trace": "^3.0.10",
"@0x/subproviders": "^6.1.1",
"@codechecks/client": "^0.1.9",
"@truffle/contract": "^4.2.17",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bn": "^0.1.1",
"eslint": "^6.3.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.0.1",
"eth-gas-reporter": "^0.2.11",
"ethereumjs-abi": "0.6.8",
"ethereumjs-util": "5.2.0",
"ganache-cli": "^6.6.0",
"istanbul": "^0.4.5",
"openzeppelin-solidity": "1.12.0",
"prettier": "^1.18.2",
"prettier-plugin-solidity": "^1.0.0-alpha.32",
"solhint": "^2.2.0",
"solhint-plugin-prettier": "0.0.3",
"tokenbridge-contracts": "git+https://github.com/poanetwork/tokenbridge-contracts.git",
"truffle": "^5.0.35",
"truffle-flattener": "^1.4.2"
},
"engines": {
"node": ">=10.0.0"
}
}