-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
60 lines (60 loc) · 1.69 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "eth-chainsaw",
"version": "1.1.4",
"description": "\"Library for polling ethereum blockchain events and decoding the event logs.\" ",
"main": "./dist/chainsaw.js",
"scripts": {
"test": "mocha ./tests/loader_test.js -R spec --timeout 200000",
"build": "babel lib -d dist",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpankChain/chainsaw.git"
},
"author": "yogeshgo05",
"license": "ISC",
"bugs": {
"url": "https://github.com/SpankChain/chainsaw/issues"
},
"homepage": "https://github.com/SpankChain/chainsaw#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^6.0.2",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"ethereumjs-testrpc": "^3.9.2",
"ethereumjs-tx": "^1.3.4"
},
"dependencies": {
"JSONStream": "^1.3.1",
"abi-decoder": "^1.0.8",
"bn": "^1.0.1",
"body-parser": "^1.17.2",
"chai": "^4.1.0",
"es6-promisify": "^5.0.0",
"es7": "^1.0.1",
"ethereumjs-abi": "^0.6.4",
"ethereumjs-util": "^5.1.2",
"ethjs-contract": "^0.1.9",
"ethjs-provider-http": "^0.1.6",
"ethjs-query": "^0.2.9",
"express": "^4.15.3",
"mocha": "^3.4.2",
"secp256k1": "^3.3.0",
"simple-spinner": "0.0.5",
"sinon": "^4.5.0",
"solc": "^0.4.16",
"util": "^0.10.3",
"web3": "^0.19.1"
}
}