binance-historical
Version:
Download historical klines from binance api
79 lines (78 loc) • 2.15 kB
JSON
{
"name": "binance-historical",
"version": "1.5.38",
"author": "maxgfr",
"license": "MIT",
"main": "./build/index.js",
"description": "Download historical klines from binance api",
"repository": {
"type": "git",
"url": "https://github.com/maxgfr/binance-historical.git"
},
"bugs": {
"url": "https://github.com/maxgfr/binance-historical/issues"
},
"homepage": "https://github.com/maxgfr/binance-historical#readme",
"files": [
"build"
],
"bin": {
"binance-historical": "./build/index.js"
},
"keywords": [
"node",
"typescript",
"binance",
"history",
"historic",
"klines",
"download",
"trading"
],
"scripts": {
"start": "node build/index.js",
"dev": "nodemon",
"develop": "swc ./src -d build && node build/index.js",
"test": "jest",
"test:watch": "jest --watch",
"clean": "rimraf build",
"build": "rimraf build && tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:swc": "swc ./src -d build",
"build:swc:watch": "npm run build:swc -- -w",
"lint": "eslint ./src --ext .ts",
"prettier": "prettier --write './src/**/*.{ts,js,json}'",
"release": "semantic-release"
},
"dependencies": {
"axios": "1.12.2",
"commander": "^12.0.0",
"prompts": "2.4.2"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "10.3.5",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^13.0.0",
"@swc/cli": "0.7.8",
"@swc/core": "1.13.5",
"@swc/jest": "0.2.39",
"@types/jest": "29.5.14",
"@types/node": "20.19.14",
"@types/prompts": "2.4.9",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.2",
"eslint-plugin-jest": "27.9.0",
"jest": "29.7.0",
"nodemon": "3.1.10",
"prettier": "3.6.2",
"rimraf": "5.0.10",
"semantic-release": "23.1.1",
"ts-jest": "29.4.1",
"ts-node": "10.9.2",
"typescript": "5.9.2"
}
}