-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 964 Bytes
/
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
{
"name": "@owodunni/ethscan",
"version": "0.3.1",
"description": "A simple CLI for querying contract information from block-explorers",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/owodunni/ethscan.git"
},
"keywords": [
"eth",
"ethereum",
"etherscan",
"abi",
"cli"
],
"author": "Alexander Poole Jardèn",
"license": "MIT",
"bugs": {
"url": "https://github.com/owodunni/ethscan/issues"
},
"homepage": "https://github.com/owodunni/ethscan#readme",
"dependencies": {
"axios": "^0.26.1",
"docopt": "^0.6.2",
"dotenv": "^16.0.0"
},
"bin": {
"ethscan": "./src/cli.js"
},
"devDependencies": {
"jest": "^27.5.1",
"prettier": "^2.6.2"
},
"scripts": {
"test": "jest --coverage",
"lint": "prettier --list-different 'src/*.{js,jsx,ts,tsx}' '*.{js,json}'",
"fix": "prettier --write 'src/*.{js,jsx,ts,tsx}' '*.{js,json}'"
}
}