-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.63 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
{
"name": "evm-calldata-decode",
"version": "0.1.2",
"description": "Library for decoding EVM calldata",
"main": "dist/index.js",
"scripts": {
"prepublishOnly": "cross-env NODE_ENV=production npm run build",
"build": "rimraf dist && tsc -p tsconfig.json && npm run build:types",
"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist/types",
"check:types": "tsc --project tsconfig.test.json",
"test": "jest --verbose --detectOpenHandles",
"lint": "eslint . --ext .ts,.tsx && prettier -c .",
"lint:fix": "eslint . --ext .ts,.tsx --fix && prettier -w . ",
"depcheck": "depcheck ."
},
"keywords": [
"Ethereum",
"EVM",
"calldata"
],
"author": "Vojtech Simetka",
"license": "MIT",
"devDependencies": {
"@jest/types": "^29.3.1",
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"cross-env": "^7.0.3",
"depcheck": "^1.4.3",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^44.0.2",
"jest": "^29.3.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1"
},
"dependencies": {
"@ethersproject/abi": "*",
"@ethersproject/bignumber": "*",
"@ethersproject/bytes": "*",
"@ethersproject/keccak256": "*",
"@ethersproject/strings": "*"
},
"peerDependencies": {
"@ethersproject/abi": ">=5.0.0",
"@ethersproject/bignumber": ">=5.0.0",
"@ethersproject/bytes": ">=5.0.0",
"@ethersproject/keccak256": ">=5.0.0",
"@ethersproject/strings": ">=5.0.0"
}
}