-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
56 lines (56 loc) · 2.13 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
{
"name": "bmultisig",
"version": "2.0.0-beta.2",
"description": "Bcoin wallet plugin for multi signature transaction proposals",
"repository": "git://github.com/bcoin-org/bmultisig.git",
"homepage": "https://github.com/bcoin-org/bmultisig",
"main": "./lib/plugin",
"bin": {
"bmultisig": "./bin/bmultisig"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"lint": "eslint lib/ test/ || exit 0",
"lint-ci": "eslint lib/ test/",
"test": "bmocha --reporter spec test/*-test.js",
"test-ci": "nyc -a -n 'lib/**/*.js' --reporter=lcov --reporter=text npm test",
"docs": "jsdoc -c jsdoc.json",
"clean": "rm -rf coverage && rm -rf docs"
},
"keywords": [
"bcoin",
"bitcoin",
"blockchain",
"wallet",
"multisig"
],
"author": "bcoin",
"license": "MIT",
"dependencies": {
"bcoin": "git+https://github.com/bcoin-org/bcoin#semver:^2.1.2",
"bcfg": "git+https://github.com/bcoin-org/bcfg.git#semver:^0.1.6",
"bcrypto": "git+https://github.com/bcoin-org/bcrypto#semver:~5.0.4",
"bcurl": "git+https://github.com/bcoin-org/bcurl#semver:~v0.1.6",
"bsock": "git+https://github.com/bcoin-org/bsock#semver:~v0.1.9",
"brq": "git+https://github.com/bcoin-org/brq#semver:~v0.1.8",
"bdb": "git+https://github.com/bcoin-org/bdb#semver:~1.2.1",
"bevent": "git+https://github.com/bcoin-org/bevent#semver:~0.1.5",
"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",
"bval": "git+https://github.com/bcoin-org/bval#semver:^0.1.6",
"bweb": "git+https://github.com/bcoin-org/bweb#semver:^0.1.9",
"loady": "git+https://github.com/chjj/loady#semver:~0.0.1",
"nan": "git+https://github.com/braydonf/nan.git#semver:=2.14.0"
},
"devDependencies": {
"bmocha": "git+https://github.com/bcoin-org/bmocha#semver:^2.1.2"
},
"browser": {
"./lib/bmultisig": "./lib/bmultisig-browser"
}
}