-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 1.18 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": "ethereum-input-decoder",
"version": "0.1.8",
"description": "Decodes inputs for a given abi",
"main": "dist/ethereum-input-decoder.js",
"module": "dist/ethereum-input-decoder.esm.js",
"types": "dist/index.ts",
"scripts": {
"test": "npm run build && tape ./test/tests.ts",
"lint": "eslint .",
"build": "rollup -c",
"benchmark": "node test/benchmarking.js"
},
"author": "Blocknative, Alexander Campbell",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"rollup": "^2.19.0",
"rollup-plugin-typescript": "^1.0.1",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"dependencies": {
"@types/node": "^14.14.41",
"benchmark": "^2.1.2",
"ethereumjs-util": "^7.0.2",
"ethers": "^5.0.32",
"tape": "^4.6.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blocknative/ethereum-input-decoder"
},
"homepage": "https://github.com/blocknative/ethereum-input-decoder#readme",
"bugs": {
"url": "https://github.com/blocknative/ethereum-input-decoder/issues"
}
}