-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "eth-saddle",
"version": "0.1.25",
"description": "Ethereum Smart Contract Saddle",
"main": "dist/cli.js",
"types": "dist/cli.d.ts",
"files": [
"dist/**",
"saddle.config.js"
],
"repository": "https://github.com/compound-finance/saddle",
"author": "Compound Labs, Inc.",
"license": "MIT",
"dependencies": {
"@0x/subproviders": "=6.0.0",
"@compound-finance/sol-coverage": "=4.0.10-alpha.7",
"@compound-finance/sol-tracing-utils": "=7.1.0-alpha.7",
"@types/jest": "^24.0.15",
"ethereumjs-tx": "2.1.2",
"ethereumjs-util": "5.2.0",
"fast-glob": "^3.2.2",
"ganache-core": "^2.13.2",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"jest-diff": "^25.3.0",
"jest-junit": "^6.4.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1",
"web3": "^1.2.11",
"web3-provider-engine": "^15.0.4",
"yargs": "^13.2.4"
},
"scripts": {
"test": "jest",
"prepare": "tsc --skipLibCheck"
},
"bin": {
"saddle": "dist/cli.js"
},
"resolutions": {
"**/solidity-parser-antlr": "^0.4.11"
}
}