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.
54 lines
1.6 KiB
54 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": "./src/index.d.ts",
|
|
"scripts": {
|
|
"build": "npm run clean && tsc -p tsconfig.json && npm run formatjs",
|
|
"clean": "rm -rf src",
|
|
"coverage": "npm run unit -- --coverage",
|
|
"format": "npm run prettier -- --write",
|
|
"formatjs": "npm run prettierjs -- --write > /dev/null 2>&1",
|
|
"format:ci": "npm run prettier -- --check",
|
|
"gitdiff": "git diff --exit-code",
|
|
"gitdiff:ci": "npm run build && npm run gitdiff",
|
|
"lint": "tslint -p tsconfig.json -c tslint.json",
|
|
"prepublishOnly": "npm run test && npm run gitdiff",
|
|
"prettier": "prettier 'ts_src/**/*.ts' --ignore-path ./.prettierignore",
|
|
"prettierjs": "prettier 'src/**/*.js' --ignore-path ./.prettierignore",
|
|
"test": "npm run build && npm run format:ci && npm run lint && npm run unit",
|
|
"unit": "jest --config=jest.json --runInBand"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Kukks/payjoin-client-js.git"
|
|
},
|
|
"files": [
|
|
"src"
|
|
],
|
|
"dependencies": {
|
|
"bitcoinjs-lib": "^5.1.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^25.2.1",
|
|
"@types/node": "^13.13.0",
|
|
"jest": "^25.3.0",
|
|
"prettier": "^2.0.4",
|
|
"ts-jest": "^25.3.1",
|
|
"tslint": "^6.1.1",
|
|
"typescript": "^3.8.3"
|
|
},
|
|
"author": "Andrew Camilleri (Kukks)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/Kukks/payjoin-client-js/issues"
|
|
}
|
|
}
|
|
|