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
57 lines (57 loc) · 1.74 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.74 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "eth-block-tracker",
"version": "1.0.5",
"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": "./lib/index.js",
"scripts": {
"test": "browserify test/basic.js | node",
"build": "cross-env BABEL_ENV=commonjs babel src --out-dir lib"
},
"author": "",
"license": "ISC",
"dependencies": {
"async": "^2.3.0",
"async-eventemitter": "^0.2.2",
"babel-preset-es2017": "^6.22.0",
"babelify": "^7.3.0",
"eth-query": "^2.1.0",
"ethjs-util": "^0.1.3",
"pify": "^2.3.0",
"tape": "^4.6.3"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.14.0",
"babel-eslint": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.22.0",
"babel-preset-stage-2": "^6.13.0",
"babel-preset-stage-3": "^6.11.0",
"chai": "^3.5.0",
"cross-env": "^3.0.0",
"eslint": "^3.6.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"istanbul": "^1.0.0-alpha",
"json-rpc-engine": "^2.0.0",
"mocha": "^3.0.2",
"rimraf": "^2.5.4"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikefluff/eth-block-tracker.git"
},
"bugs": {
"url": "https://github.com/mikefluff/eth-block-tracker/issues"
},
"homepage": "https://github.com/mikefluff/eth-block-tracker#readme"
}