forked from MetaMask/eth-block-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.35 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.35 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
{
"name": "eth-block-tracker",
"version": "2.3.1",
"description": "This module walks the Ethereum blockchain, keeping track of the latest block. It uses a web3 provider as a data source and will continuously poll for the next block.",
"main": "dist/index.js",
"scripts": {
"test": "npm run compile && browserify test/basic.js | node",
"compile": "babel --presets es2015,stage-3 --plugins transform-runtime -d dist/ lib/",
"prepublishOnly": "npm run compile"
},
"author": "",
"license": "ISC",
"dependencies": {
"async-eventemitter": "ahultgren/async-eventemitter#fa06e39e56786ba541c180061dbf2c0a5bbf951c",
"eth-query": "^2.1.0",
"ethereumjs-tx": "^1.3.3",
"ethereumjs-util": "^5.1.3",
"ethjs-util": "^0.1.3",
"json-rpc-engine": "^3.6.0",
"pify": "^2.3.0",
"tape": "^4.6.3"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"browserify": "^14.3.0",
"mississippi": "^1.3.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kumavis/eth-block-tracker.git"
},
"bugs": {
"url": "https://github.com/kumavis/eth-block-tracker/issues"
},
"homepage": "https://github.com/kumavis/eth-block-tracker#readme"
}