-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
36 lines (36 loc) · 1.12 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
{
"name": "ethereum-input-to-object",
"version": "0.0.4",
"description": "Decodes an Ethereum input data hex string into a developer friendly JavaScript object",
"main": "dist/ethereum-input-to-object.js",
"module": "dist/ethereum-input-to-object.esm.js",
"scripts": {
"test": "tape ./test/index.js",
"build": "rollup -c",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/blocknative/ethereum-input-to-object.git"
},
"author": "Blocknative",
"license": "ISC",
"bugs": {
"url": "https://github.com/blocknative/ethereum-input-to-object/issues"
},
"homepage": "https://github.com/blocknative/ethereum-input-to-object#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"jest": "^26.0.1",
"rollup": "^2.19.0"
},
"dependencies": {
"ethereum-input-data-decoder": "[email protected]:alexcampbelling/ethereum-input-data-decoder.git",
"ethereumjs-util": "^7.0.2",
"web3-utils": "^1.2.9",
"tape": "^4.6.3"
}
}