UNPKG

bip322-js

Version:

A Javascript library that provides utility functions related to the BIP-322 signature scheme

51 lines (50 loc) 1.49 kB
{ "name": "bip322-js", "version": "3.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 <acken2@outlook.com>", "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.2.0", "bitcoinjs-lib": "^6.1.7", "bitcoinjs-message": "^2.2.0", "ecpair": "^2.1.0", "elliptic": "^6.6.1", "fast-sha256": "^1.3.0", "secp256k1": "^5.0.1" } }