-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
36 lines (36 loc) · 846 Bytes
/
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
{
"name": "tendermint-node",
"version": "5.2.0",
"description": "Run a Tendermint full node",
"main": "index.js",
"scripts": {
"test": "standard index.js src/*.js test/*.js && nyc ava",
"preinstall": "node ./bin/preinstall.js",
"install": "node ./bin/download.js",
"update": "node ./bin/update.js"
},
"keywords": [
"tendermint",
"blockchain",
"cosmos"
],
"author": "Matt Bell <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.19.0",
"cross-spawn": "^6.0.5",
"debug": "^3.1.0",
"decamelize": "^2.0.0",
"execa": "^0.10.0",
"mkdirp": "^0.5.1",
"progress": "^2.0.0",
"tendermint": "^4.0.7",
"unzipper": "^0.10.10"
},
"devDependencies": {
"ava": "^0.25.0",
"fs-extra": "^6.0.1",
"nyc": "^11.7.3",
"standard": "^11.0.1"
}
}