-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
61 lines (61 loc) · 2.27 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
{
"name": "bledger",
"version": "0.4.0",
"description": "Communication and management of ledger devices",
"keywords": [
"Bitcoin",
"Hardware",
"Wallet",
"Ledger",
"bcoin",
"blockchain"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bcoin-org/bledger.git"
},
"main": "./lib/bledger.js",
"license": "MIT",
"author": "The Bcoin Developers",
"bugs": {
"url": "https://github.com/bcoin-org/bledger/issues"
},
"homepage": "https://github.com/bcoin-org/bledger#readme",
"scripts": {
"clean": "rm -rf bledger.js build/vendor* .config/certs/* ./docs ./coverage examples/webauthn/app.js examples/webusb/app.js",
"lint": "eslint examples/ lib/ test/ || exit 0",
"lint-ci": "eslint examples/ lib/ test/",
"test": "bmocha --reporter spec test/*-test.js",
"test-ci": "nyc --reporter=lcov --reporter=text -a -n 'lib/**/*.js' npm test",
"test-usb": "bmocha --reporter spec test/device/usb-test.js",
"test-webauthn": "./scripts/bmocha-chrome test/device/webauthn-test.js",
"test-webusb": "./scripts/bmocha-chrome test/device/webusb-test.js",
"docs": "jsdoc -c jsdoc.json",
"cover": "nyc -a -n 'lib/**/*.js' npm test"
},
"browser": {
"./lib/bledger": "./lib/bledger-browser.js"
},
"dependencies": {
"bcrypto": "git+https://github.com/bcoin-org/bcrypto#semver:~5.0.4",
"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",
"buffer-map": "git+https://github.com/chjj/buffer-map#semver:~0.0.7",
"bufio": "git+https://github.com/bcoin-org/bufio#semver:^1.0.6",
"busb": "git+https://github.com/nodar-chkuaselidze/busb#semver:~1.0.0-beta.0",
"loady": "git+https://github.com/chjj/loady#semver:~0.0.1",
"nan": "git+https://github.com/braydonf/nan.git#semver:^2.14.0"
},
"peerDependencies": {
"bcoin": "git+https://github.com/bcoin-org/bcoin#semver:^2.0.0"
},
"devDependencies": {
"bcoin": "git+https://github.com/bcoin-org/bcoin#semver:^2.0.0",
"bmocha": "git+https://github.com/bcoin-org/bmocha#semver:^2.1.3",
"bpkg": "git+https://github.com/chjj/bpkg#semver:^0.6.0"
},
"engines": {
"node": ">=10.0.0"
}
}