UNPKG

binance-api-client

Version:

A wrapper which can be used to interact with Binance's API. Entirely developed in TypeScript.

57 lines (56 loc) 1.75 kB
{ "name": "binance-api-client", "version": "2.10.2", "description": "A wrapper which can be used to interact with Binance's API. Entirely developed in TypeScript.", "main": "build/index.js", "types": "index.d.ts", "engines": { "node": ">=8.4.0" }, "scripts": { "build": "tsc", "lint:code": "eslint \"src/**/*.ts\"", "lint:prettier": "prettier -l src/**/*.ts", "lint:commit-message": "commitlint -e", "lint": "yarn lint:code && yarn lint:prettier", "prettify": "yarn lint:prettier --write", "postinstall": "npm run build" }, "repository": { "type": "git", "url": "git+https://github.com/luzzif/binance-api-client.git" }, "keywords": [ "binance", "api", "client", "typescript", "crypto" ], "author": "Federico Luzzi <fedeluzzi00@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/luzzif/binance-api-client/issues" }, "homepage": "https://github.com/luzzif/binance-api-client#readme", "dependencies": { "crypto-js": "^4.0.0", "request": "^2.88.2", "request-promise": "^4.2.5", "typescript": "^3.8.3", "websocket-heartbeats": "^1.2.0", "ws": "^7.2.3" }, "devDependencies": { "@commitlint/cli": "^8.3.5", "@commitlint/config-conventional": "^8.3.4", "@types/crypto-js": "^3.1.38", "@types/node": "^13.9.2", "@types/requestretry": "^1.12.6", "@typescript-eslint/eslint-plugin": "^2.24.0", "@typescript-eslint/parser": "^2.24.0", "eslint": "^6.8.0", "husky": "^4.2.3", "prettier": "^2.0.5" } }