-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
53 lines (53 loc) · 1.82 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
{
"name": "hsd-ledger",
"version": "2.0.2",
"description": "Communication and management of ledger devices",
"keywords": [
"Handshake",
"Hardware",
"Wallet",
"Ledger",
"hsd",
"blockchain"
],
"repository": {
"type": "git",
"url": "git+https://github.com/handshake-org/hsd-ledger.git"
},
"main": "./lib/hsd-ledger.js",
"license": "MIT",
"authors": [
"Boyma Fahnbulleh",
"The Handshake Developers"
],
"bugs": {
"url": "https://github.com/handshake-org/hsd-ledger/issues"
},
"homepage": "https://github.com/handshake-org/hsd-ledger#readme",
"scripts": {
"certs": "./scripts/certs",
"clean": "rm -rf hsd-ledger.js examples/webusb/app.js ./certs",
"lint": "eslint examples/ lib/ test/ || exit 0",
"test": "bmocha --reporter spec test/*-test.js",
"test-usb": "bmocha --allow-multiple --reporter spec test/device/usb-test.js",
"test-hsd": "bmocha --allow-multiple --reporter spec test/device/hsd-test.js",
"test-sighash": "bmocha --allow-multiple --reporter spec test/device/sighash-test.js",
"test-webusb": "./scripts/bmocha-chrome test/device/webusb-test.js",
"docs": "jsdoc -c jsdoc.json"
},
"dependencies": {
"blgr": "git+https://github.com/bcoin-org/blgr#semver:~0.1.7",
"bmutex": "git+https://github.com/bcoin-org/bmutex#semver:~0.1.6",
"bsert": "git+https://github.com/chjj/bsert#semver:~0.0.10",
"bufio": "git+https://github.com/bcoin-org/bufio#semver:^1.0.6",
"node-hid": "git+https://github.com/nodech/node-hid#semver:~2.1.2-hsd.0"
},
"devDependencies": {
"bmocha": "git+https://github.com/bcoin-org/bmocha#semver:^2.1.3",
"hs-client": "git+https://github.com/handshake-org/hs-client#semver:^0.0.8",
"hsd": "git+https://github.com/handshake-org/hsd#semver:^4.0.0"
},
"engines": {
"node": ">=8.0.0"
}
}