forked from miguelmota/ethereum-input-data-decoder
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.61 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
57
58
{
"name": "ethereum-input-data-decoder",
"version": "0.3.1",
"description": "Ethereum smart contract transaction input data decoder",
"main": "dist/index.js",
"scripts": {
"test": "tape ./test/index.js",
"client": "browserify ./example/main.js -o ./example/bundle.js",
"build": "babel index.js --presets babel-preset-es2015 --out-dir dist/",
"lint": "standard --fix index.js test/*.js",
"prepare": "npm run lint && npm run build"
},
"bin": {
"ethereum-input-data-decoder": "bin/ethereum_input_data_decoder",
"ethereum_input_data_decoder": "bin/ethereum_input_data_decoder"
},
"repository": {
"type": "git",
"url": "https://github.com/miguelmota/ethereum-input-data-decoder"
},
"bugs": {
"url": "https://github.com/miguelmota/ethereum-input-data-decoder/issues"
},
"homepage": "https://github.com/miguelmota/ethereum-input-data-decoder",
"author": {
"name": "Miguel Mota",
"email": "[email protected]",
"url": "https://miguelmota.com/"
},
"license": {
"type": "MIT",
"url": "https://github.com/miguelmota/ethereum-input-data-decoder/blob/master/LICENSE"
},
"dependencies": {
"bn.js": "^4.11.8",
"buffer": "^5.2.1",
"ethereumjs-abi": "^0.6.7",
"ethers": "^4.0.27",
"is-buffer": "^2.0.3",
"meow": "^5.0.0"
},
"keywords": [
"ethereum",
"decoder",
"abi",
"smart",
"contracts"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.2.3",
"standard": "^12.0.1",
"tape": "^4.6.3"
}
}