-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.5 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
{
"name": "abi-lity",
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "d1ll0n",
"url": "https://github.com/d1ll0n"
},
"homepage": "https://github.com/d1ll0n/abi-lity",
"bugs": "https://github.com/d1ll0n/abi-lity/issues",
"bin": "dist/cli.js",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@ethereumjs/vm": "^6.2.0",
"@solidity-parser/parser": "^0.14.5",
"@types/lodash": "^4.14.189",
"lodash": "^4.17.21",
"mathjs": "npm:@d1ll0n/mathjs",
"solc-typed-ast": "npm:@d1ll0n/[email protected]"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/debug": "^4.1.7",
"@types/lru-cache": "^7.10.10",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"@types/yargs": "^17.0.15",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"chai": "^4.3.7",
"chalk": "4.1.2",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"expect": "^29.3.1",
"mocha": "^10.1.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"yargs": "^17.6.2"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"lint": "eslint src/ test/ --ext=ts",
"lint:fix": "eslint src/ test/ --ext=ts --fix",
"test": "NODE_OPTIONS='--max-old-space-size=2048' mocha",
"update:ptrs": "node scripts/update_pointer_libraries.js"
}
}