62 lines
1.5 KiB
JSON
62 lines
1.5 KiB
JSON
{
|
|
"name": "@spsina/bip47",
|
|
"version": "1.0.1",
|
|
"description": "bip47 utility functions",
|
|
"keywords": [
|
|
"bitcoin",
|
|
"bitcoinjs",
|
|
"bitcoinjs-lib",
|
|
"paynyms",
|
|
"payment-codes",
|
|
"bip47",
|
|
"bip-47"
|
|
],
|
|
"main": "./src/index.js",
|
|
"types": "./types/index.d.ts",
|
|
"engines": {
|
|
"node": ">=6.0.0"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -p ./tsconfig.json",
|
|
"format": "npm run prettier -- --write",
|
|
"format:ci": "npm run prettier -- --check",
|
|
"lint": "tslint -p tsconfig.json -c tslint.json",
|
|
"prettier": "prettier 'ts-src/**/*.ts' --ignore-path ./.prettierignore",
|
|
"test": "mocha -r ts-node/register tests/**/*.test.ts",
|
|
"coverage": "npm run build && nyc -r lcov -e .ts -x \"*.test.ts\" npm run test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/spsina/bip47.git"
|
|
},
|
|
"files": [
|
|
"src",
|
|
"types"
|
|
],
|
|
"dependencies": {
|
|
"bip32": "^3.0.1",
|
|
"bip39": "^3.0.4",
|
|
"bitcoinjs-lib": "^6.0.1",
|
|
"bs58check": "^2.1.1",
|
|
"create-hmac": "^1.1.7",
|
|
"ecpair": "^2.0.1",
|
|
"tiny-secp256k1": "^1.1.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.3.0",
|
|
"@types/mocha": "^9.1.0",
|
|
"chai": "^4.3.6",
|
|
"mocha": "^9.2.1",
|
|
"nyc": "^15.1.0",
|
|
"prettier": "^2.5.1",
|
|
"ts-node": "^10.6.0",
|
|
"tslint": "^6.1.3",
|
|
"typescript": "^4.6.2"
|
|
},
|
|
"author": "Sina Parvizi",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/spsina/bip47/issues"
|
|
}
|
|
}
|