forked from bcoin-org/bledger
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.86 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
62
63
64
65
66
{
"name": "bledger",
"version": "0.1.4",
"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": {
"browserify": "browserify -s bledger lib/bledger.js | uglifyjs -c > bledger.js",
"clean": "rm -rf bledger.js build/vendor* .config/certs/* ./docs ./coverage",
"lint": "eslint lib/ test/ || exit 0",
"lint-ci": "eslint lib/ test/",
"test": "bmocha --reporter spec test/*-test.js",
"test-ci": "istanbul cover node_modules/.bin/bmocha --report lcovonly -- --reporter spec test/*.js",
"test-hid": "bmocha --reporter spec test/device/hid-test.js",
"test-u2f": "karma start .config/karma.conf.js",
"webpack": "webpack --config .config/webpack.js",
"webpack-dev": "webpack --config .config/webpack.dev.js",
"webpack-devdeps": "webpack --config .config/webpack.devdeps.js",
"docs": "jsdoc -c jsdoc.json",
"cover": "istanbul cover -x '**/lib/devices/**' node_modules/.bin/_mocha -- --reporter spec test/*-test.js"
},
"dependencies": {
"bcrypto": "~3.0.1",
"blgr": "~0.1.2",
"bmutex": "~0.1.3",
"bsert": "~0.0.7",
"buffer-map": "0.0.4",
"bufio": "~1.0.2"
},
"optionalDependencies": {
"node-hid": "^0.7.3",
"u2f-api": "^1.0.8"
},
"peerDependencies": {
"bcoin": "^1.0.2"
},
"devDependencies": {
"bcoin": "^1.0.2",
"bmocha": "^0.1.9"
},
"engines": {
"node": ">=8.0.0"
},
"browserify": {
"transform": [
"babelify"
]
}
}