-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
49 lines (49 loc) · 1.26 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
{
"name": "eth-revert-reason",
"version": "1.0.3",
"description": "Get the revert reason from an Ethereum transaction hash",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"publish-module": "npm publish --access public",
"dist-tag": "npm dist-tag add \"eth-revert-reason@$(jq -r .version <package.json)\" latest",
"release": "npm test && npm run publish-module && npm run dist-tag",
"test": "jest test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/authereum/eth-revert-reason"
},
"bugs": {
"url": "https://github.com/authereum/eth-revert-reason/issues"
},
"homepage": "https://github.com/authereum/eth-revert-reason",
"author": {
"name": "Shane Fontaine",
"email": "[email protected]",
"url": "https://authereum.com/"
},
"contributors": [
"Miguel Mota <[email protected]>",
"Chris Whinfrey <[email protected]>",
"Adam Hanna <[email protected]>"
],
"license": "MIT",
"bin": {
"getRevertReason": "cli.js"
},
"dependencies": {
"ethers": "^4.0.46"
},
"devDependencies": {
"chai": "^4.2.0",
"jest": "^25.4.0",
"mocha": "^7.1.1"
},
"keywords": [
"ethereum",
"revert",
"string",
"transaction"
]
}