-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
45 lines (45 loc) · 1.22 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
{
"name": "bip-schnorr",
"version": "0.6.7",
"description": "Pure JavaScript implementation of the BIP schnorr signature scheme and the muSig multi-signature scheme",
"main": "./src/index.js",
"engines": {
"node": ">=8.0.0"
},
"keywords": [
"bip",
"schnorr",
"elliptic",
"curve",
"muSig",
"multi-signature"
],
"scripts": {
"coverage-coveralls": "nyc mocha ./test/schnorr-*.spec.js && nyc report --reporter=text-lcov | coveralls",
"coverage-html": "nyc report --reporter=html",
"coverage": "nyc --check-coverage --branches 85 --functions 90 --lines 90 mocha ./test/schnorr-*.spec.js",
"unit": "mocha ./test/schnorr-*.spec.js",
"test": "yarn run coverage",
"benchmark": "node test/schnorr.benchmark.js"
},
"repository": {
"type": "git",
"url": "https://github.com/guggero/bip-schnorr.git"
},
"author": "Oliver Gugger <[email protected]>",
"license": "MIT",
"dependencies": {
"bigi": "^1.4.2",
"ecurve": "^1.0.6",
"js-sha256": "^0.9.0",
"randombytes": "^2.1.0",
"safe-buffer": "^5.2.1"
},
"devDependencies": {
"benchmark": "^2.1.4",
"coveralls": "^3.1.0",
"microtime": "^3.0.0",
"mocha": "^6.2.3",
"nyc": "^14.1.1"
}
}