-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·36 lines (36 loc) · 1.09 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "balancer.controller",
"version": "1.0.0",
"description": "Solidity contracts implementing a Balancer controller",
"author": "Darren Oliveiro-Priestnall",
"main": "index.js",
"scripts": {
"compile": "truffle compile",
"testrpc": "ganache-cli --deterministic --gasLimit 10000000",
"test": "truffle test",
"test:verbose": "VERBOSE=true truffle test",
"coverage": "yarn solidity-coverage",
"lint": "eslint .",
"lint:contracts": "solhint contracts/*.sol"
},
"keywords": [
"solidity",
"ethereum",
"balancer"
],
"license": "GPL-3.0-or-later",
"dependencies": {
"@balancer-labs/v2-deployments": "^3.2.0",
"@balancer-labs/v2-interfaces": "^0.4.0",
"@balancer-labs/v2-pool-utils": "^4.0.0",
"@balancer-labs/v2-pool-weighted": "^2.0.1",
"@balancer-labs/v2-solidity-utils": "^4.0.0",
"@balancer-labs/v2-vault": "^3.0.1",
"@chainlink/contracts": "^0.6.1",
"@celo/contractkit": "^4.0.0",
"dotenv": "^16.0.3",
"@openzeppelin/contracts": "^4.9.3",
"@truffle/hdwallet-provider": "^2.1.9",
"web3": "^1.3.6"
}
}