-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
71 lines (71 loc) · 1.9 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "tendermint",
"version": "5.0.2",
"description": "A light client which talks to your Tendermint node over RPC",
"main": "index.js",
"scripts": {
"pretest": "depcheck --ignores=airtap && standard src test example index.js",
"test": "npm run pretest && nyc ava test/lightNodeIntegration.js test/rpc.js test/attacks.js && npm run test-light",
"test-light": "nyc tape test/common.js test/types.js test/verify.js",
"test-browser": "npm run pretest && ./test/browser.sh",
"build": "rm -rf lib && babel src -d lib",
"source": "rm -rf lib && ln -s src lib",
"prepublish": "npm run build",
"publish": "npm run source",
"generateFixtures": "go run test/fixtures/generate.go"
},
"dependencies": {
"axios": "^0.19.0",
"camelcase": "^4.0.0",
"create-hash": "^1.1.3",
"debug": "^3.1.0",
"json-stable-stringify": "^1.0.1",
"ndjson": "^1.5.0",
"old": "^0.1.3",
"pumpify": "^1.3.5",
"supercop.js": "^2.0.1",
"varstruct": "^6.1.1",
"websocket-stream": "^5.1.1"
},
"devDependencies": {
"airtap": "^2.0.1",
"ava": "^0.25.0",
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"depcheck": "^0.6.11",
"get-port": "^3.2.0",
"nyc": "^11.8.0",
"standard": "^11.0.1",
"tape": "^4.9.1",
"tempy": "^0.2.1",
"tendermint-node": "^5.2.0",
"ws": "^5.2.1"
},
"babel": {
"presets": [
"es2015"
]
},
"keywords": [
"tendermint",
"blockchain",
"consensus",
"cosmos",
"client"
],
"author": "Matt Bell <[email protected]>",
"license": "MIT",
"directories": {
"example": "example",
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mappum/js-tendermint.git"
},
"bugs": {
"url": "https://github.com/mappum/js-tendermint/issues"
},
"homepage": "https://github.com/mappum/js-tendermint#readme"
}