-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "@uniswap/snapshot-gas-cost",
"version": "1.0.0",
"description": "Tiny utility function for snapshotting gas costs in unit tests",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "[email protected]:Uniswap/snapshot-gas-cost.git",
"author": {
"name": "Uniswap Labs",
"email": "[email protected]"
},
"license": "GPL-2.0-or-later",
"private": false,
"scripts": {
"build": "tsc",
"test": "mocha --require ts-node/register src/**/*.test.ts"
},
"files": [
"dist"
],
"peerDependencies": {
"@ethersproject/abstract-provider": "^5.0.0",
"@ethersproject/contracts": "^5.0.0",
"chai": "^4.0.0",
"mocha": "^9.0.0",
"mocha-chai-jest-snapshot": "^1.0.0"
},
"devDependencies": {
"@ethersproject/abstract-provider": "^5.6.0",
"@ethersproject/contracts": "^5.6.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"chai": "^4.3.6",
"jest-resolve": "^27.5.1",
"mocha": "^9.2.2",
"mocha-chai-jest-snapshot": "^1.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}