You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.6 KiB
57 lines
1.6 KiB
{
|
|
"name": "payjoin-client-js",
|
|
"version": "1.0.0",
|
|
"description": "A BTCPay Payjoin compatible client",
|
|
"keywords": [
|
|
"bitcoinjs",
|
|
"bitcoin",
|
|
"bip79",
|
|
"payjoin",
|
|
"btcpayserver"
|
|
],
|
|
"main": "./src/index.js",
|
|
"types": "./types/index.d.ts",
|
|
"engines": {
|
|
"node": ">=6.0.0"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -p ./tsconfig.json",
|
|
"coverage-report": "npm run build && npm run nobuild:coverage-report",
|
|
"coverage": "npm run build && npm run nobuild:coverage",
|
|
"format": "npm run prettier -- --write",
|
|
"format:ci": "npm run prettier -- --check",
|
|
"gitdiff:ci": "npm run build && git diff --exit-code",
|
|
"lint": "tslint -p tsconfig.json -c tslint.json",
|
|
"nobuild:coverage-report": "nyc report --reporter=lcov",
|
|
"nobuild:coverage": "nyc --check-coverage --branches 90 --functions 90 npm run nobuild:unit",
|
|
"nobuild:unit": "tape test/*.js",
|
|
"prettier": "prettier 'ts-src/**/*.ts' --ignore-path ./.prettierignore",
|
|
"test": "npm run build && npm run format:ci && npm run lint && npm run nobuild:coverage",
|
|
"unit": "npm run build && npm run nobuild:unit"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Kukks/payjoin-client-js.git"
|
|
},
|
|
"files": [
|
|
"src",
|
|
"types"
|
|
],
|
|
"dependencies": {
|
|
"@types/node": "^13.13.0",
|
|
"bip174": "^1.0.1",
|
|
"bitcoinjs-lib": "^5.1.7"
|
|
},
|
|
"devDependencies": {
|
|
"nyc": "^15.0.0",
|
|
"prettier": "1.16.4",
|
|
"tape": "^4.13.2",
|
|
"tslint": "^6.1.1",
|
|
"typescript": "3.8.3"
|
|
},
|
|
"author": "Andrew Camilleri (Kukks)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/Kukks/payjoin-client-js/issues"
|
|
}
|
|
}
|
|
|