forked from balancer/balancer-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.42 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
37
38
39
40
41
42
43
44
45
46
{
"private": true,
"name": "balancer-core",
"version": "0.0.7",
"license": "GPL-3.0-only",
"description": "Balancer Core Contracts and ABI",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/balancer-labs/balancer-core.git"
},
"bugs": {
"url": "https://github.com/balancer-labs/balancer-core/issues"
},
"homepage": "https://github.com/balancer-labs/balancer-core#readme",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.8",
"eslint": "^6.7.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"ganache-core": "^2.6.1",
"mocha": "^6.2.0",
"solhint": "^2.3.0",
"solidity-coverage": "^0.6.7",
"standard": "^14.0.2",
"truffle": "^5.0.41",
"truffle-assertions": "^0.9.1",
"web3": "^1.2.0"
},
"dependencies": {
"decimal.js": "^10.2.0",
"ganache-cli": "^6.7.0",
"global": "^4.4.0"
}
}