forked from hiddentao/ethereum-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.43 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
42
43
44
45
46
{
"name": "ethereum-blocks",
"version": "1.0.3",
"description": "Process blocks from Ethereum client nodes robustly. Catch-up on restart, auto-reconnect to node, etc.",
"main": "dist/ethereumBlocks.js",
"scripts": {
"build": "mkdir -p dist && babel src/index.js > dist/ethereumBlocks.js",
"test": "npm run build && mocha --timeout 180000 --ui exports --reporter spec test/*.test.js",
"test-coverage": "npm run build && istanbul cover _mocha -- --timeout 180000 --ui exports --reporter spec test/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hiddentao/ethereum-blocks.git"
},
"keywords": [
"ethereum",
"blockchain",
"processor",
"reconnect",
"restart",
"web3"
],
"author": "Ramesh Nair <ram@hiddentao.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hiddentao/ethereum-blocks/issues"
},
"homepage": "https://github.com/hiddentao/ethereum-blocks#readme",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-plugin-rename-umd-globals": "0.0.4",
"babel-plugin-transform-es2015-modules-umd": "^6.12.0",
"babel-preset-es2015": "^6.14.0",
"bluebird": "^3.4.6",
"chai": "^3.5.0",
"co-mocha": "^1.1.3",
"genomatic": "^1.0.0",
"geth-private": "^1.5.1",
"istanbul": "^0.4.5",
"lodash": "^4.15.0",
"mocha": "^3.0.2",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"web3": "^0.17.0-alpha"
}
}