aave-protocol-v2/package.json

84 lines
2.6 KiB
JSON
Raw Normal View History

2020-05-29 14:55:31 +00:00
{
2020-05-29 15:28:55 +00:00
"name": "protocol-v2",
2020-05-29 14:55:31 +00:00
"version": "1.0.0",
"description": "Aave Protocol V2 smart contracts",
"scripts": {
"run-env": "npm i && tail -f /dev/null",
"buidler": "buidler",
"buidler-kovan": "buidler --network kovan",
"buidler-ropsten": "buidler --network ropsten",
"buidler-main": "buidler --network main",
"buidler help": "buidler help",
"compile": "buidler compile",
2020-08-19 12:23:41 +00:00
"types-gen": "typechain --target ethers-v5 --outDir ./types './artifacts/*.json'",
2020-05-29 14:55:31 +00:00
"test": "buidler test",
2020-06-15 08:45:14 +00:00
"test-scenarios": "buidler test test/__setup.spec.ts test/scenario.spec.ts",
"test-repay-with-collateral": "buidler test test/__setup.spec.ts test/repay-with-collateral.spec.ts",
"test-liquidate-with-collateral": "buidler test test/__setup.spec.ts test/flash-liquidation-with-collateral.spec.ts",
2020-05-29 14:55:31 +00:00
"dev:coverage": "buidler coverage",
"dev:deployment": "buidler dev-deployment",
2020-07-13 08:54:08 +00:00
"dev:deployExample": "buidler deploy-Example",
2020-08-21 12:11:01 +00:00
"dev:prettier": "prettier --write .",
2020-08-21 12:19:07 +00:00
"ci:test": "npm run compile && npm run types-gen && npm run test",
2020-08-21 12:11:01 +00:00
"ci:clean": "rm -rf ./artifacts ./cache ./types"
2020-05-29 14:55:31 +00:00
},
"devDependencies": {
2020-08-19 12:23:41 +00:00
"@nomiclabs/buidler": "1.4.4",
"@nomiclabs/buidler-ethers": "2.0.0",
2020-05-29 14:55:31 +00:00
"@nomiclabs/buidler-etherscan": "1.3.3",
2020-08-19 12:23:41 +00:00
"@nomiclabs/buidler-waffle": "2.0.0",
2020-06-26 14:58:52 +00:00
"@openzeppelin/contracts": "3.1.0",
2020-08-19 12:23:41 +00:00
"@typechain/ethers-v5": "^1.0.0",
2020-05-29 14:55:31 +00:00
"@typechain/ethers-v4": "1.0.0",
"@typechain/truffle-v4": "2.0.2",
"@typechain/truffle-v5": "2.0.2",
"@typechain/web3-v1": "1.0.0",
"@types/chai": "4.2.11",
"@types/lowdb": "1.0.9",
"@types/mocha": "7.0.2",
"@types/node": "14.0.5",
"bignumber.js": "9.0.0",
2020-06-26 19:28:18 +00:00
"buidler-gas-reporter": "^0.1.3",
2020-05-29 14:55:31 +00:00
"buidler-typechain": "0.1.1",
2020-06-02 12:56:44 +00:00
"chai": "4.2.0",
"chai-bignumber": "3.0.0",
2020-07-08 15:26:50 +00:00
"chai-bn": "^0.2.1",
2020-08-19 12:23:41 +00:00
"ethereum-waffle": "3.0.2",
"ethers": "5.0.8",
2020-06-20 23:40:03 +00:00
"husky": "^4.2.5",
2020-05-29 14:55:31 +00:00
"lowdb": "1.0.0",
2020-06-02 12:56:44 +00:00
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.53",
2020-07-13 08:54:08 +00:00
"pretty-quick": "^2.0.1",
2020-08-19 12:23:41 +00:00
"solidity-coverage": "0.7.10",
2020-05-29 14:55:31 +00:00
"ts-generator": "0.0.8",
2020-06-20 23:40:03 +00:00
"ts-node": "8.10.2",
2020-06-18 12:41:23 +00:00
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
2020-06-02 12:56:44 +00:00
"typechain": "2.0.0",
2020-05-29 14:55:31 +00:00
"typescript": "3.9.3"
},
2020-07-13 08:54:08 +00:00
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
2020-05-29 14:55:31 +00:00
"author": "Aave",
"contributors": [
{
"name": "Ernesto Boado",
"email": "ernesto@aave.com"
},
{
"name": "Emilio Frangella",
"email": "emilio@aave.com"
},
{
"name": "Andrey Kozlov",
"email": "andrey@aave.com"
}
],
"license": "AGPLv3"
}