-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
97 lines (97 loc) · 2.49 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "tardis-machine",
"version": "3.33.1",
"engines": {
"node": ">=16"
},
"description": "Locally runnable server with built-in data caching, providing both tick-level historical and consolidated real-time cryptocurrency market data via HTTP and WebSocket APIs",
"main": "dist/index.js",
"source": "src/index.js",
"types": "dist/index.d.ts",
"repository": "tardis-dev/tardis-machine",
"homepage": "https://github.com/tardis-dev/tardis-machine",
"scripts": {
"build": "tsc",
"precommit": "lint-staged",
"test": "npm run build && jest --forceExit --runInBand",
"prepare": "npm run build",
"format": "prettier --write .",
"check-format": "prettier --check .",
"benchmark": "node ./benchmark.js"
},
"bin": {
"tardis-machine": "./bin/tardis-machine.js"
},
"files": [
"src",
"dist",
"bin",
"benchmark.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",
"replay service",
"historical cryptocurrency market data replay API"
],
"license": "MPL-2.0",
"dependencies": {
"debug": "^4.3.4",
"find-my-way": "^6.3.0",
"is-docker": "^2.2.1",
"tardis-dev": "^13.33.1",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.42.0",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/jest": "^28.1.1",
"@types/node": "^18.11.9",
"@types/node-fetch": "^2.6.2",
"@types/split2": "^3.2.1",
"@types/ws": "^8.5.3",
"@types/yargs": "^17.0.10",
"cross-var": "^1.1.0",
"husky": "^8.0.2",
"jest": "^28.1.1",
"lint-staged": "^13.0.3",
"node-fetch": "^2.6.1",
"prettier": "^2.8.0",
"split2": "^4.1.0",
"ts-jest": "^28.0.4",
"typescript": "^4.9.3",
"ws": "^8.11.0"
},
"lint-staged": {
"*.{ts}": [
"prettier --write",
"git add"
]
},
"jest": {
"transform": {
"\\.(ts|tsx)?$": "ts-jest"
},
"testEnvironment": "node"
}
}