-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
50 lines (50 loc) · 1.45 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
{
"name": "bip322-js",
"version": "2.0.0",
"description": "A Javascript library that provides utility functions related to the BIP-322 signature scheme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"doc": "typedoc src/index.ts",
"prepack": "npm run build",
"test": "ts-mocha 'test/**/*.test.ts'",
"test:coverage": "nyc --reporter=text --reporter=text-summary --reporter=lcov npm test"
},
"keywords": [
"bip322",
"bitcoinjs",
"javascript",
"typescript",
"no-WASM"
],
"author": "Ken Sze <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/ACken2/bip322-js.git"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/elliptic": "^6.4.18",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.12",
"@types/secp256k1": "^4.0.6",
"chai": "^4.3.7",
"chai-bytes": "^0.1.2",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"ts-mocha": "^10.0.0",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.1.1",
"bitcoinjs-lib": "^6.1.5",
"bitcoinjs-message": "^2.2.0",
"ecpair": "^2.1.0",
"elliptic": "^6.5.5",
"fast-sha256": "^1.3.0",
"secp256k1": "^5.0.0"
}
}