cryptopay-node
Version:
Cryptopay is a payment gateway and business wallet that allows merchants to automate the processes of accepting cryptocurrency payments and payouts from their customers, as well as making currency exchange transactions and receiving data on the transactio
56 lines (55 loc) • 1.76 kB
JSON
{
"name": "cryptopay-node",
"version": "2.2.0",
"description": "Cryptopay is a payment gateway and business wallet that allows merchants to automate the processes of accepting cryptocurrency payments and payouts from their customers, as well as making currency exchange transactions and receiving data on the transaction history and account balance statuses for reporting.",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"start": "tsc && node dist/src/index.js",
"start:dev": "tsc && node dist/src/example/callApi.js",
"build": "tsc",
"doc": "typedoc src/index.ts src/openapi src/openapi/base.ts --out docs --includeVersion --readme none --excludePrivate --excludeProtected",
"test": "jest --clearCache && jest",
"test:dev:path": "jest -- $npm_config_testpath",
"lint": "eslint . --ext .ts ",
"lint:fix": "eslint src --fix "
},
"keywords": [
"cryptopay",
"api"
],
"license": "MIT",
"devDependencies": {
"@types/crypto-js": "^4.0.2",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"install": "^0.13.0",
"jest": "^27.3.1",
"nodemon": "^2.0.15",
"npm": "^8.1.4",
"prettier": "^2.5.1",
"ts-jest": "^27.0.0-next.12",
"typedoc": "^0.22.11",
"typescript": "4.6.2"
},
"bugs": {
"url": "https://github.com/cryptopay-dev/cryptopay-node"
},
"dependencies": {
"@types/node": "^12.20.55",
"axios": "^0.21.4",
"crypto-js": "^4.1.1",
"dotenv": "^10.0.0"
},
"lint-staged": {
"**/*.ts": [
"node_modules/.bin/eslint --max-warnings=0",
"eslint src/**/*.ts"
]
}
}