forked from bitpay/nodejs-bitpay-client
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.76 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.76 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
56
57
58
59
60
61
{
"name": "bitpay-sdk",
"version": "3.0.2202",
"description": "Complete version of the NodeJS library for the new cryptographically secure BitPay API",
"main": "dist/index",
"typings": "dist/index",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"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"
},
"author": "Antonio Buedo <integrations@bitpay.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bitpay/nodejs-bitpay-client.git"
},
"keywords": [
"bitpay",
"bitcoin",
"cash",
"payment",
"gateway"
],
"bugs": {
"url": "https://github.com/bitpay/nodejs-bitpay-client/issues"
},
"homepage": "https://github.com/bitpay/nodejs-bitpay-client#readme",
"dependencies": {
"bs58": "^4.0.1",
"elliptic": "^6.5.4",
"request": "^2.85.0",
"request-promise-native": "^1.0.0"
},
"devDependencies": {
"@types/bs58": "^4.0.0",
"@types/elliptic": "^6.4.14",
"@types/jest": "^24.0.13",
"@types/node": "^12.20.42",
"@types/puppeteer": "^1.20.8",
"@types/request": "^2.48.7",
"@types/request-promise-native": "^1.0.18",
"jest": "^24.9.0",
"prettier": "^1.17.1",
"puppeteer": "^1.16.0",
"rimraf": "^2.6.3",
"ts-jest": "^25.5.1",
"tslint": "^5.16.0",
"typescript": "^3.9.10"
}
}