-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 745 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 745 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
35
{
"name": "etherscanner",
"namespace": "ethereum",
"version": "0.2.9",
"description": "Receive all the ethereum transactions that have been included in the block, including 'internal' transactions",
"author": "tet32",
"license": "MIT",
"scripts": {
"test": "mocha"
},
"engines": {
"node": ">= 6.0.0"
},
"repository": {
"type": "git",
"url": "git@github.com:tet32/etherscanner.git"
},
"homepage": "https://github.com/tet32/etherscanner",
"bugs": {
"url": "https://github.com/tet32/etherscanner/issues"
},
"keywords": [
"ethereum",
"javascript",
"API"
],
"main": "./index.js",
"dependencies": {
"async": "^2.5.0",
"bignumber.js": "^7.2.1",
"log4js": "^3.0.2",
"mocha": "^4.0.1",
"web3": "^0.20.2"
}
}