-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 825 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 825 Bytes
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
{
"name": "blockscandl",
"version": "1.0.4",
"description": "Smart contract source code and ABI downloader for block explorers such as Etherscan, BscScan, FTMScan, or those similar to them.",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ErbaZZ/blockscandl.git"
},
"keywords": [
"etherscan",
"bscscan",
"blockchain",
"smart contract",
"source code"
],
"author": "ErbaZZ",
"license": "MIT",
"bugs": {
"url": "https://github.com/ErbaZZ/blockscandl/issues"
},
"bin": {
"blockscandl": "src/index.js"
},
"homepage": "https://github.com/ErbaZZ/blockscandl#readme",
"dependencies": {
"axios": "^0.25.0",
"cheerio": "^1.0.0-rc.10",
"fs-extra": "^10.0.0"
}
}