forked from mappum/js-tendermint
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.17 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
{
"name": "tendermint",
"version": "3.1.2",
"description": "A light client which talks to your Tendermint node over RPC",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf lib && babel src -d lib",
"source": "rm -rf lib && ln -s src lib",
"prepublish": "npm run build",
"publish": "npm run source"
},
"dependencies": {
"axios": "^0.17.1",
"bn.js": "^4.11.8",
"browser-request": "^0.3.3",
"camelcase": "^4.0.0",
"create-hash": "^1.1.3",
"json-stable-stringify": "^1.0.1",
"ndjson": "^1.5.0",
"old": "^0.1.3",
"pumpify": "^1.3.5",
"request": "^2.79.0",
"supercop.js": "^2.0.1",
"varstruct": "^6.1.1",
"websocket-stream": "^3.3.3"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"tape": "^4.6.3"
},
"browser": {
"request": "browser-request",
"ed25519-supercop": "supercop.js"
},
"babel": {
"presets": [
"es2015"
]
},
"keywords": [
"tendermint",
"blockchain",
"consensus",
"cosmos",
"client"
],
"author": "Matt Bell <[email protected]>",
"license": "MIT"
}