{ "name": "protocol-v2", "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:docker": "buidler --network buidlerevm_docker", "buidler help": "buidler help", "compile": "SKIP_LOAD=true buidler compile", "types-gen": "npm run compile -- --force && typechain --target ethers-v5 --outDir ./types './artifacts/*.json'", "test": "buidler test", "test-scenarios": "buidler test test/__setup.spec.ts test/scenario.spec.ts", "aave:evm:dev:migration": "buidler aave:dev", "aave:evm:full:migration": "buidler aave:full", "aave:docker:dev:migration": "npm run buidler:docker -- aave:dev", "aave:docker:full:migration": "npm run buidler:docker -- aave:full", "aave:kovan:dev:migration": "npm run buidler:kovan -- aave:dev --verify", "aave:kovan:full:migration": "npm run buidler:kovan -- aave:full --verify", "aave:kovan:full:initialize": "npm run buidler:kovan -- full:initialize-lending-pool --verify --pool Aave", "aave:ropsten:dev:migration": "npm run buidler:ropsten -- aave:dev --verify", "aave:ropsten:full:migration": "npm run buidler:ropsten -- aave:full --verify", "aave:main:dev:migration": "npm run buidler:main -- aave:dev --verify", "aave:main:full:migration": "npm run buidler:main -- aave:full --verify", "uniswap:evm:dev:migration": "buidler uniswap:dev", "uniswap:evm:full:migration": "buidler uniswap:full --verify", "uniswap:kovan:dev:migration": "npm run buidler:kovan -- uniswap:dev --verify", "uniswap:kovan:full:migration": "npm run buidler:kovan -- uniswap:full --verify", "uniswap:ropsten:dev:migration": "npm run buidler:ropsten -- uniswap:dev --verify", "uniswap:ropsten:full:migration": "npm run buidler:ropsten -- uniswap:full --verify", "uniswap:main:dev:migration": "npm run buidler:main -- uniswap:dev --verify", "uniswap:main:full:migration": "npm run buidler:main -- uniswap:full --verify", "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", "test-liquidate-underlying": "buidler test test/__setup.spec.ts test/liquidation-underlying.spec.ts", "test-transfers": "buidler test test/__setup.spec.ts test/atoken-transfer.spec.ts", "test-flash": "buidler test test/__setup.spec.ts test/flashloan.spec.ts", "test-liquidate": "buidler test test/__setup.spec.ts test/liquidation-atoken.spec.ts", "test-deploy": "buidler test test/__setup.spec.ts test/test-init.spec.ts", "test-pausable": "buidler test test/__setup.spec.ts test/pausable-functions.spec.ts", "test-permit": "buidler test test/__setup.spec.ts test/atoken-permit.spec.ts", "test-stable-and-atokens": "buidler test test/__setup.spec.ts test/atoken-transfer.spec.ts test/stable-token.spec.ts", "test-subgraph:scenarios": "buidler --network buidlerevm_docker test test/__setup.spec.ts test/subgraph-scenarios.spec.ts", "dev:coverage": "buidler coverage --network coverage", "dev:deployment": "buidler dev-deployment", "dev:deployExample": "buidler deploy-Example", "dev:prettier": "prettier --write .", "ci:test": "npm run compile && npm run types-gen && npm run test", "ci:clean": "rm -rf ./artifacts ./cache ./types", "print-contracts:kovan": "npm run buidler:kovan -- print-contracts", "print-contracts:main": "npm run buidler:main -- print-contracts", "print-contracts:ropsten": "npm run buidler:main -- print-contracts" }, "devDependencies": { "@nomiclabs/buidler": "^1.4.7", "@nomiclabs/buidler-ethers": "2.0.0", "@nomiclabs/buidler-etherscan": "^2.1.0", "@nomiclabs/buidler-waffle": "2.0.0", "@openzeppelin/contracts": "3.1.0", "@typechain/ethers-v4": "1.0.0", "@typechain/ethers-v5": "^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", "buidler-gas-reporter": "^0.1.4", "buidler-typechain": "0.1.1", "chai": "4.2.0", "chai-bignumber": "3.0.0", "chai-bn": "^0.2.1", "eth-sig-util": "2.5.3", "ethereum-waffle": "3.0.2", "ethereumjs-util": "7.0.2", "ethers": "5.0.8", "globby": "^11.0.1", "husky": "^4.2.5", "lowdb": "1.0.0", "prettier": "^2.0.5", "prettier-plugin-solidity": "^1.0.0-alpha.53", "pretty-quick": "^2.0.1", "solidity-coverage": "0.7.10", "ts-generator": "0.0.8", "ts-node": "8.10.2", "tslint": "^6.1.2", "tslint-config-prettier": "^1.18.0", "tslint-plugin-prettier": "^2.3.0", "typechain": "2.0.0", "typescript": "3.9.3" }, "husky": { "hooks": { "pre-commit": "pretty-quick --staged" } }, "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", "dependencies": { "tmp-promise": "^3.0.2" } }