-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
93 lines (93 loc) · 2.25 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
{
"name": "tardis-dev",
"version": "13.32.1",
"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 --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": {
"@types/bintrees": "^1.0.3",
"bintrees": "^1.0.2",
"debug": "^4.3.3",
"fs-extra": "^10.0.0",
"got": "^11.8.2",
"https-proxy-agent": "^5.0.0",
"p-map": "^4.0.0",
"socks-proxy-agent": "^7.0.0",
"ws": "^8.4.0"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.2",
"@types/ws": "^8.2.2",
"cross-var": "^1.1.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"lint-staged": "^12.1.3",
"prettier": "^2.5.1",
"source-map-support": "^0.5.21",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"lint-staged": {
"*.{ts}": [
"prettier --write",
"git add"
]
},
"jest": {
"transform": {
"\\.(ts|tsx)?$": "ts-jest"
},
"testEnvironment": "node",
"setupFiles": [
"./test/setup.js"
]
},
"runkitExampleFilename": "example.js"
}