forked from authereum/eth-revert-reason
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.31 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.31 KB
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
{
"name": "psc-revert-reason",
"version": "1.0.4",
"description": "Get the revert reason from an POSIChain transaction hash",
"main": "index.js",
"types": "index.d.ts",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"publish-module": "npm publish --access public",
"dist-tag": "npm dist-tag add \"psc-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/psc-revert-reason"
},
"bugs": {
"url": "https://github.com/authereum/psc-revert-reason/issues"
},
"homepage": "https://github.com/authereum/psc-revert-reason",
"author": {
"name": "Shane Fontaine",
"email": "shane.fontaine@authereum.com",
"url": "https://authereum.com/"
},
"contributors": [
"Miguel Mota <miguel.mota@authereum.com>",
"Chris Whinfrey <chris.whinfrey@authereum.com>",
"Adam Hanna <adam.hanna@authereum.com>"
],
"license": "MIT",
"bin": {
"psc-revert-reason": "cli.js"
},
"dependencies": {
"ethers": "5.7.2"
},
"devDependencies": {
"chai": "^4.2.0",
"jest": "^25.4.0",
"mocha": "^7.1.1"
},
"keywords": [
"ethereum",
"revert",
"string",
"transaction"
]
}