-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
package.json
38 lines (38 loc) · 1.34 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
{
"name": "compound-protocol",
"version": "0.2.1",
"description": "The Compound Money Market",
"main": "index.js",
"scripts": {
"compile": "./script/compile",
"console": "if node -v | grep -E \"v(12|13)\" > /dev/null; then flags=\"-n --experimental-repl-await\"; fi; npx $flags saddle console",
"coverage": "./script/coverage",
"deploy": "./scenario/script/repl -s ./script/scen/deploy.scen",
"lint": "./script/lint",
"repl": "./scenario/script/repl",
"profile": "yarn test tests/gasProfiler.js",
"report": "npx run ./script/saddle/gasReport.js",
"test": "./script/test",
"test:prepare": "NO_RUN=true ./script/test",
"checksize": "npx run ./script/saddle/comptrollerSize.js"
},
"repository": "[email protected]:compound-finance/compound-protocol.git",
"author": "Compound Finance",
"license": "UNLICENSED",
"devDependencies": {
"bignumber.js": "9.0.0",
"jest-diff": "^26.4.2",
"jest-junit": "^11.1.0",
"prettier": "^1.19.0",
"solhint": "^3.3.7",
"solparse": "^2.2.8"
},
"dependencies": {
"@solidity-parser/parser": "^0.13.2",
"eth-saddle": "^0.1.25"
},
"resolutions": {
"scrypt.js": "https://registry.npmjs.org/@compound-finance/ethereumjs-wallet/-/ethereumjs-wallet-0.6.3.tgz",
"**/ganache-core": "github:compound-finance/ganache-core.git#jflatow/unbreak-fork"
}
}