-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 2.05 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "payjoin-client",
"version": "1.0.1",
"description": "A BIP78 Payjoin Client Library in JS with TypeScript types",
"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",
"integration": "JEST_TYPE=integration npm run unit",
"lint": "tslint -p tsconfig.json -c tslint.json",
"prepublishOnly": "npm run test && npm run gitdiff",
"prettier": "prettier 'ts_src/**/*.ts' 'test/**/*.ts' 'integration/**/*.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.config.js --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitcoinjs/payjoin-client.git"
},
"files": [
"src"
],
"dependencies": {
"bitcoinjs-lib": "^5.2.0"
},
"devDependencies": {
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "25.2.1",
"@types/node": "13.13.0",
"btcpay": "0.2.4",
"isomorphic-fetch": "2.2.1",
"jest": "25.3.0",
"jest-fetch-mock": "3.0.3",
"prettier": "2.0.4",
"regtest-client": "0.2.0",
"ts-jest": "25.3.1",
"tslint": "6.1.1",
"typescript": "3.9.7"
},
"keywords": [
"bitcoinjs",
"bitcoin",
"payjoin",
"btcpayserver"
],
"contributors": [
"Jonathan Underwood <[email protected]>",
"Andrew Camilleri (Kukks) <[email protected]>",
"Luke Childs <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bitcoinjs/payjoin-client/issues"
},
"homepage": "https://github.com/bitcoinjs/payjoin-client#readme"
}