forked from bcoin-org/bclient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 857 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 857 Bytes
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
{
"name": "bclient",
"version": "0.1.7",
"description": "Bcoin node and wallet client",
"keywords": [
"http",
"request",
"socket.io",
"websockets"
],
"license": "MIT",
"repository": "git://github.com/bcoin-org/bclient.git",
"homepage": "https://github.com/bcoin-org/bclient",
"bugs": {
"url": "https://github.com/bcoin-org/bclient/issues"
},
"author": "Christopher Jeffrey <chjjeffrey@gmail.com>",
"main": "./lib/bclient.js",
"scripts": {
"lint": "eslint lib/ || exit 0",
"test": "bmocha --reporter spec test/*-test.js"
},
"bin": {
"bcoin-cli": "./bin/bcoin-cli",
"bwallet-cli": "./bin/bwallet-cli"
},
"dependencies": {
"bcfg": "~0.1.6",
"bcurl": "~0.1.6",
"bsert": "~0.0.10"
},
"devDependencies": {
"bmocha": "^2.1.0"
},
"engines": {
"node": ">=8.0.0"
}
}