forked from chinh7/tm-coin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.09 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
{
"name": "abci",
"version": "3.0.2",
"description": "Tendermint ABCI server",
"main": "index.js",
"scripts": {
"test": "standard src/*.js test/*.js && nyc ava test/connection.js test/server.js test/integration.js"
},
"keywords": [
"abci",
"tendermint",
"cosmos",
"blockchain"
],
"author": "Matt Bell <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"bl": "^1.2.2",
"bs58check": "^2.1.1",
"debug": "^3.1.0",
"deterministic-json": "^1.0.5",
"protobufjs": "^6.8.6",
"protocol-buffers-encodings": "^1.1.0",
"secp256k1": "^3.3.1"
},
"devDependencies": {
"ava": "^0.25.0",
"get-port": "^3.2.0",
"nyc": "^11.7.1",
"standard": "^11.0.1",
"tempy": "^0.2.1",
"tendermint-node": "^3.0.0"
},
"directories": {
"example": "example",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tendermint/js-abci.git"
},
"bugs": {
"url": "https://github.com/tendermint/js-abci/issues"
},
"homepage": "https://github.com/tendermint/js-abci#readme"
}