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
46 lines (46 loc) · 1.31 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.31 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
43
44
45
46
{
"name": "eth-block-tracker",
"version": "1.0.4",
"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": "src/index.js",
"scripts": {
"lint": "aegir-lint",
"release": "aegir-release",
"build": "aegir-build",
"test": "aegir-test",
"test:node": "aegir-test node",
"test:browser": "aegir-test browser",
"coverage": "aegir-coverage",
"coverage-publish": "aegir-coverage publish"
},
"author": "",
"license": "ISC",
"dependencies": {
"async-eventemitter": "^0.2.2",
"babel-preset-env": "^1.3.2",
"babel-runtime": "^6.23.0",
"babelify": "^7.3.0",
"eth-query": "^2.1.0",
"ethjs-util": "^0.1.3",
"json-rpc-engine": "^2.2.0",
"pify": "^2.3.0",
"tape": "^4.6.3"
},
"devDependencies": {
"aegir": "^11.0.1",
"babel-loader": "^6.4.1",
"babel-plugin-transform-runtime": "^6.23.0",
"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"
}