@hackape/tardis-dev
Version:
Convenient access to tick-level historical and real-time cryptocurrency market data via Node.js
88 lines (87 loc) • 2.19 kB
JSON
{
"name": "@hackape/tardis-dev",
"version": "12.4.2",
"engines": {
"node": ">=12"
},
"description": "Convenient access to tick-level historical and real-time cryptocurrency market data via Node.js",
"main": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"repository": "tardis-dev/tardis-node",
"homepage": "https://docs.tardis.dev/api/node-js",
"scripts": {
"build": "tsc",
"precommit": "lint-staged",
"test": "npm run build && jest --runInBand --forceExit",
"prepare": "npm run build",
"release": "cross-var \"npm run build && npm publish --access=public\""
},
"files": [
"src",
"dist",
"example.js"
],
"keywords": [
"cryptocurrency data feed",
"market data",
"api client",
"crypto markets data replay",
"historical data",
"real-time cryptocurrency market data feed",
"historical cryptocurrency prices",
"cryptocurrency api",
"real-time normalized WebSocket cryptocurrency markets data",
"normalized cryptocurrency market data API",
"order book reconstruction",
"market data normalization",
"cryptocurrency api",
"cryptocurrency",
"orderbook",
"exchange",
"websocket",
"realtime",
"bitmex",
"binance",
"trading",
"high granularity order book data"
],
"license": "MPL-2.0",
"dependencies": {
"@types/bintrees": "^1.0.2",
"bintrees": "^1.0.2",
"debug": "^4.2.0",
"fs-extra": "^9.0.1",
"got": "^11.7.0",
"p-map": "^4.0.0",
"ws": "^7.3.1"
},
"devDependencies": {
"@types/ws": "^7.2.7",
"@types/debug": "^4.1.5",
"@types/fs-extra": "^9.0.2",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.8",
"cross-var": "^1.1.0",
"husky": "^4.3.0",
"jest": "^26.5.3",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"source-map-support": "^0.5.19",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"lint-staged": {
"*.{ts}": [
"prettier --write",
"git add"
]
},
"jest": {
"transform": {
"\\.(ts|tsx)?$": "ts-jest"
},
"testEnvironment": "node"
},
"runkitExampleFilename": "example.js"
}