{ "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 ", "Christoph Ott ", "Jonathan Underwood " ], "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" } }