-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
58 lines (58 loc) · 1.5 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
{
"name": "orderbooks",
"version": "1.1.10",
"description": "In-memory state stores and handlers for caching multiple exchange:symbol orderbook states",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/*",
"index.js"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf lib dist",
"build": "tsc",
"build:clean": "npm run clean && npm run build",
"build:watch": "npm run clean && tsc --watch",
"prepublishOnly": "npm run build:clean",
"docs": "npx typedoc src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tiagosiebler/orderbooks.git"
},
"keywords": [
"orderbook",
"orderbooks",
"order",
"book",
"crypto",
"trading",
"bybit",
"binance",
"bitmex",
"bitget",
"node"
],
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"ts-node": "^10.8.1",
"typedoc": "^0.25.7",
"typescript": "^4.7.4"
},
"author": "Tiago Siebler",
"license": "MIT",
"bugs": {
"url": "https://github.com/tiagosiebler/orderbooks/issues"
},
"homepage": "https://github.com/tiagosiebler/orderbooks#readme"
}