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.

55 lines
1.6 KiB

5 years ago
{
"name": "payjoin-client",
5 years ago
"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",
5 years ago
"scripts": {
"build": "npm run clean && tsc -p tsconfig.json && npm run formatjs",
"clean": "rm -rf src",
"coverage": "npm run unit -- --coverage",
5 years ago
"format": "npm run prettier -- --write",
"formatjs": "npm run prettierjs -- --write > /dev/null 2>&1",
5 years ago
"format:ci": "npm run prettier -- --check",
"gitdiff": "git diff --exit-code",
"gitdiff:ci": "npm run build && npm run gitdiff",
5 years ago
"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"
5 years ago
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kukks/payjoin-client-js.git"
},
"files": [
"src"
5 years ago
],
"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",
5 years ago
"tslint": "^6.1.1",
"typescript": "^3.8.3"
5 years ago
},
"author": "Andrew Camilleri (Kukks)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kukks/payjoin-client-js/issues"
}
}