-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.48 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@brandonblack/musig",
"version": "0.0.1-alpha.1",
"description": "JS implementation of MuSig. 1-dependency MuSig key aggregation, tweaking, and signing.",
"files": [
"lib"
],
"main": "lib/index.js",
"module": "lib/esm/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc -d && tsc -p tsconfig.esm.json && npm run prettierout -- --write",
"build:release": "rollup -c rollup.config.js",
"lint": "tslint -p tsconfig.json -c tslint.json",
"format": "npm run prettier -- --write",
"format:ci": "npm run prettier -- --check && npm run prettierout -- --check",
"prettier": "prettier --print-width 100 --single-quote \"*.ts\" \"test/**/*.ts\"",
"prettierout": "prettier --print-width 100 --single-quote \"lib/**/*.js\"",
"test": "npm run prettier -- --check && npm run lint && npm run build && npm run coverage",
"nobuild:test": "jest",
"coverage": "jest --coverage",
"bench": "ts-node test/benchmark.ts"
},
"author": "Brandon Black",
"homepage": "https://github.com/brandonblack/musig-js",
"repository": {
"type": "git",
"url": "https://github.com/brandonblack/musig-js.git"
},
"license": "MIT",
"browser": {
"crypto": false
},
"devDependencies": {
"@noble/curves": "^0.9.0",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/create-hash": "^1.2.2",
"@types/create-hmac": "^1.1.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.10",
"create-hash": "^1.2.0",
"create-hmac": "^1.1.7",
"jest": "^29.5.0",
"micro-bmark": "^0.3.1",
"prettier": "^2.8.7",
"rollup": "^3.20.2",
"tiny-secp256k1": "^2.2.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.0.2"
},
"keywords": [
"musig",
"musig2",
"multisignature",
"multi-signature",
"tweak",
"secp256k1",
"secp",
"secp256",
"elliptic",
"elliptic curve",
"curve",
"signature",
"ecc",
"schnorr",
"sig",
"cryptography",
"security"
],
"exports": {
".": {
"import": "./lib/esm/index.js",
"default": "./lib/index.js"
},
"./index.d.ts": "./lib/index.d.ts",
"./base_crypto": {
"import": "./lib/esm/base_crypto.js",
"default": "./lib/base_crypto.js"
}
},
"jest": {
"testRegex": "/test/(?!utils|benchmark).*?\\.ts",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"collectCoverageFrom": [
"*.ts"
]
}
}