-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
54 lines (54 loc) · 1.22 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
{
"name": "eth-reveal",
"version": "0.6.1",
"description": "Dig into Ethereum transactions and reveal their secrets",
"main": "reveal.js",
"browser": "browser.js",
"dependencies": {
"abi-decoder": "2.3.0",
"axios": "0.19.2",
"chalk": "2.4.2",
"commander": "2.20.0",
"dotenv-safe": "6.1.0",
"ethers": "4.0.47",
"numbro": "2.1.2",
"pretty-error": "2.1.1"
},
"devDependencies": {
"eslint": "5.16.0",
"eslint-config-prettier": "4.3.0",
"eslint-plugin-node": "9.0.1",
"eslint-plugin-prettier": "3.1.0",
"prettier": "1.17.1",
"webpack": "4.43.0",
"webpack-cli": "3.3.11"
},
"engines": {
"node": ">=8.10.0"
},
"scripts": {
"lint": "eslint .",
"format": "prettier --write \"*.js\"",
"pack": "webpack --mode production",
"prepublish": "npm run pack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"reveal": "reveal.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justinjmoses/eth-reveal.git"
},
"keywords": [
"ethereum",
"revert",
"transactions"
],
"author": "justin j. moses",
"license": "MIT",
"bugs": {
"url": "https://github.com/justinjmoses/eth-reveal/issues"
},
"homepage": "https://github.com/justinjmoses/eth-reveal#readme"
}