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
39 lines (39 loc) · 1.18 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.18 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
{
"name": "eth-block-tracker",
"version": "1.0.11",
"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": "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": "^0.2.2",
"babelify": "^7.3.0",
"eth-query": "^2.1.0",
"ethjs-util": "^0.1.3",
"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",
"json-rpc-engine": "^2.0.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"
}