-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
44 lines (44 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
{
"name": "abci",
"version": "7.0.0",
"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",
"build": "pbjs -t static-module -w commonjs -o types.js proto/*.proto && pbts -o index.d.ts types.js"
},
"keywords": [
"abci",
"tendermint",
"cosmos",
"blockchain"
],
"author": "Matt Bell <[email protected]>",
"license": "MIT",
"dependencies": {
"bl": "^1.2.2",
"debug": "^3.1.0",
"protobufjs": "^6.8.8",
"protocol-buffers-encodings": "^1.1.0"
},
"devDependencies": {
"ava": "^3.10.1",
"get-port": "^3.2.0",
"nyc": "^15.0.0",
"standard": "^11.0.1",
"tempy": "^0.2.1",
"tendermint-node": "^5.2.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"
}