forked from MetaMask/eth-block-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.39 KB
/
package.json
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
{
"name": "eth-block-tracker",
"version": "4.0.1",
"description": "A block tracker for the Ethereum blockchain. Keeps track of the latest block.",
"main": "src/polling.js",
"scripts": {
"test": "npm run build && node test/index.js",
"prepublish": "npm run build",
"build": "mkdir -p ./dist && npm run bundle",
"bundle": "babel src -d dist/es5/ && npm run bundle-polling && npm run bundle-base",
"bundle-polling": "browserify -s PollingBlockTracker -e src/polling.js -t [ babelify --presets [ es2015 ] ] > dist/PollingBlockTracker.js",
"bundle-base": "browserify -s BaseBlockTracker -e src/base.js -t [ babelify --presets [ es2015 ] ] > dist/BaseBlockTracker.js"
},
"author": "kumavis",
"license": "MIT",
"dependencies": {
"eth-json-rpc-infura": "^3.1.0",
"eth-query": "^2.1.0",
"pify": "^3.0.0"
},
"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",
"ganache-core": "^2.1.0",
"tape": "^4.9.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"
}