-
Notifications
You must be signed in to change notification settings - Fork 223
/
package.json
46 lines (46 loc) · 1.21 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
{
"name": "abi-decoder",
"version": "2.3.0",
"description": "Nodejs and Javascript library for decoding data params and events from ethereum transactions\"",
"main": "index.js",
"scripts": {
"pretest": "eslint --ignore-path .eslintignore .",
"test": "mocha test",
"dist": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ConsenSys/abi-decoder.git"
},
"keywords": [
"ethereum",
"abi",
"decode"
],
"author": "denis@gnosis.pm",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ConsenSys/abi-decoder/issues"
},
"homepage": "https://github.com/ConsenSys/abi-decoder#readme",
"dependencies": {
"web3-eth-abi": "^1.2.1",
"web3-utils": "^1.2.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-transform-modules-amd": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/runtime": "^7.3.1",
"babel-loader": "^8.0.5",
"babel-plugin-add-module-exports": "^1.0.0",
"chai": "^4.2.0",
"eslint": "^6.0.1",
"json-loader": "^0.5.7",
"mocha": "^5.2.0",
"webpack": "^4.29.1",
"webpack-cli": "^3.2.3"
}
}