forked from bitpay/nodejs-bitpay-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.82 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
{
"name": "bitpay-sdk",
"version": "1.4.2102",
"description": "Complete version of the NodeJS library for the new cryptographically secure BitPay API",
"main": "src/index.js",
"files": [
"src/**/*.js",
"setup/BitPaySetup.ts",
"setup/BitPaySetup.js"
],
"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 <[email protected]>",
"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": "^4.2.6",
"underscore": "^1.12.0"
},
"devDependencies": {
"@types/bs58": "^4.0.0",
"@types/elliptic": "^6.4.6",
"@types/jest": "^24.0.13",
"@types/node": "^11.15.46",
"@types/puppeteer": "^1.20.7",
"@types/request": "^2.48.5",
"@types/request-promise": "^4.1.47",
"@types/underscore": "^1.10.24",
"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.9"
}
}