-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.59 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.59 KB
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
{
"name": "btcpay",
"version": "0.2.5",
"description": "A nodejs client implementation for BTCPay",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsc -p ./tsconfig.json",
"coverage": "npm run unit -- --coverage",
"format": "npm run prettier -- --write",
"format:ci": "npm run prettier -- --check",
"lint": "tslint -p tsconfig.json -c tslint.json",
"prepare": "npm run build",
"prettier": "prettier src/**/*.ts tests/**/*.spec.ts --single-quote --trailing-comma all",
"test": "npm run format:ci && npm run lint && npm run coverage",
"unit": "jest --config=jest.json --runInBand"
},
"contributors": [
"Tim Akinbo <tim@tanjalo.com>",
"Christoph Ott <christoph.ott@lean-coders.at>",
"Jonathan Underwood <junderwood@bitcoinbank.co.jp>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/btcpayserver/node-btcpay.git"
},
"dependencies": {
"bs58": "^4.0.1",
"elliptic": "^6.5.4",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"underscore": "^1.13.1"
},
"devDependencies": {
"@types/bs58": "^4.0.1",
"@types/elliptic": "^6.4.12",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.2",
"@types/puppeteer": "^5.4.3",
"@types/request": "^2.48.5",
"@types/request-promise": "^4.1.47",
"@types/underscore": "^1.11.2",
"jest": "^26.6.3",
"prettier": "^2.3.0",
"puppeteer": "^9.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"tslint": "^5.20.1",
"typescript": "^4.2.4"
}
}