-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.6 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
{
"name": "bitpay-sdk-light",
"version": "1.0.2201",
"description": "Lite version of the NodeJS library for the new cryptographically secure BitPay API",
"main": "index.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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitpay/nodejs-bitpay-light-client.git"
},
"keywords": [
"bitpay",
"bitcoin",
"cash",
"payment",
"gateway"
],
"author": "Antonio Buedo <integrations@bitpay.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bitpay/nodejs-bitpay-light-client/issues"
},
"homepage": "https://github.com/bitpay/nodejs-bitpay-light-client#readme",
"dependencies": {
"request": "^2.88.2",
"request-promise": "^4.2.6",
"underscore": "^1.13.1"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.11.12",
"@types/request": "^2.48.7",
"@types/request-promise": "^4.1.48",
"@types/underscore": "^1.11.4",
"jest": "^27.4.4",
"prettier": "^2.5.1",
"puppeteer": "^13.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.1",
"tslint": "^6.1.3",
"typescript": "^4.5.3"
}
}