-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
72 lines (72 loc) · 2.14 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
65
66
67
68
69
70
71
72
{
"name": "bitpay-sdk",
"version": "6.2.3",
"description": "Complete version of the NodeJS library for the new cryptographically secure BitPay API",
"engines": {
"node": ">=18.0.0 <23.0.0"
},
"main": "dist/index",
"typings": "dist/index",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"build": "rimraf dist && tsc -p ./tsconfig.json",
"setup": "npm run build && node dist/setup/BitPaySetup.js",
"coverage": "npm run unit -- --coverage",
"format": "npm run prettier -- --write",
"format:ci": "npm run prettier -- --check",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "npm run build && husky install",
"prettier": "prettier --config .prettierrc 'src/**/*.ts' 'test/**/*.spec.ts' 'examples/**/*'",
"test": "npm run format:ci && npm run lint && npm run coverage",
"unit": "jest test/clientUnit.spec.ts test/Client/bitPayResponseUnit.spec.ts --config=jest.json --runInBand",
"functional": "jest test/clientFunctional.spec.ts --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": "6.0.0",
"elliptic": "6.6.1",
"lodash": "4.17.21",
"zod": "3.23.8"
},
"devDependencies": {
"@types/bs58": "4.0.4",
"@types/elliptic": "6.4.18",
"@types/jest": "29.5.13",
"@types/lodash": "4.17.7",
"@types/node": "22.7.6",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.7",
"i": "0.3.7",
"jest": "29.7.0",
"msw": "2.6.6",
"npm": "10.9.1",
"prettier": "3.3.3",
"rimraf": "5.0.9",
"ts-jest": "29.2.5",
"typescript": "5.6.3"
}
}