-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 950 Bytes
/
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": "forge-deep",
"version": "0.2.2",
"description": "Codegen pretty-printing and deep equality Solidity functions for the Forge testing framework",
"module": "index.ts",
"bin": {
"forge-deep": "index.ts"
},
"scripts": {
"generate": "bun run --bun index.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/moodlezoup/forge-deep.git"
},
"keywords": [
"solidity",
"foundry",
"forge",
"deep equal",
"pretty print",
"ethereum"
],
"author": "Michael Zhu",
"license": "MIT",
"bugs": {
"url": "https://github.com/moodlezoup/forge-deep/issues"
},
"homepage": "https://github.com/moodlezoup/forge-deep#readme",
"devDependencies": {
"bun-types": "^0.5.0"
},
"type": "module",
"dependencies": {
"solidity-ast": "^0.4.49",
"toml": "^3.0.0"
}
}