-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 2.82 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 2.82 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "tardis-dev",
"version": "16.5.0",
"engines": {
"node": ">=25"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=25"
},
"packageManager": {
"name": "npm",
"version": ">=11.11.1"
}
},
"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",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"repository": "tardis-dev/tardis-node",
"homepage": "https://docs.tardis.dev/api/node-js",
"scripts": {
"build": "tsc -p tsconfig.json",
"precommit": "lint-staged",
"test": "npm run build && node --experimental-vm-modules ./node_modules/jest/bin/jest.js --forceExit --runInBand",
"prepare": "npm run build",
"format": "prettier --write .",
"check-format": "prettier --check ."
},
"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": {
"bintrees": "^1.0.2",
"debug": "^4.3.3",
"follow-redirects": "^1.15.9",
"https-proxy-agent": "^8.0.0",
"p-map": "^7.0.4",
"socks-proxy-agent": "^9.0.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/bintrees": "^1.0.6",
"@types/debug": "^4.1.7",
"@types/follow-redirects": "^1.14.4",
"@types/jest": "^29.0.0",
"@types/node": "^25.5.2",
"@types/ws": "^8.18.1",
"jest": "^29.0.0",
"lint-staged": "^12.1.3",
"prettier": "^3.8.3",
"ts-jest": "^29.4.0",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{ts}": [
"prettier --write",
"git add"
]
},
"jest": {
"extensionsToTreatAsEsm": [
".ts"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"\\.(ts|tsx)?$": [
"ts-jest",
{
"useESM": true,
"tsconfig": "./test/tsconfig.json"
}
]
},
"testEnvironment": "node",
"setupFiles": [
"./test/setup.js"
]
},
"runkitExampleFilename": "example.js"
}