-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.93 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "sol-dbg",
"version": "0.6.15",
"description": "Small (experimental) Solidity-level debugger built around EthereumJS",
"keywords": [],
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"scripts": {
"clean": "rm -rf dist/",
"transpile": "tsc",
"build": "npm run clean && npm run transpile",
"lint": "eslint src/ test/ --ext=ts",
"lint:fix": "eslint src/ test/ --ext=ts --fix",
"test": "NODE_OPTIONS='--max-old-space-size=2048' jest --coverage",
"prepare": "npm run build"
},
"dependencies": {
"@ethereumjs/block": "5.2.0",
"@ethereumjs/common": "4.3.0",
"@ethereumjs/evm": "3.0.0",
"@ethereumjs/rlp": "5.0.2",
"@ethereumjs/statemanager": "2.3.0",
"@ethereumjs/tx": "5.3.0",
"@ethereumjs/util": "9.0.3",
"@ethereumjs/vm": "8.0.0",
"cbor": "^9.0.2",
"ethereum-cryptography": "2.2.1",
"solc-typed-ast": "^18.2.0",
"src-location": "^1.1.0",
"web3-eth-abi": "^4.2.2"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"fs-extra": "^11.2.0",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/lru-cache": "^5.1.1",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"expect": "^29.7.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"homepage": "https://github.com/ConsenSys/sol-dbg",
"bugs": "https://github.com/ConsenSys/sol-dbg/issues",
"repository": "https://github.com/ConsenSys/sol-dbg",
"license": "Apache-2.0"
}