-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.05 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
{
"name": "lob.js",
"version": "0.0.2-alpha.9",
"description": "A fast LimitOrderBook in Javascript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "git@github.com:ShaunLWM/LimitOrderBook.git",
"homepage": "https://github.com/ShaunLWM/LimitOrderBook",
"author": "ShaunLWM",
"license": "MIT",
"files": [
"dist",
"src/types/index.d.ts"
],
"scripts": {
"start": "yarn watch",
"watch": "tsc -w",
"build": "tsc",
"prepublishOnly": "npm run copy && tsc",
"copy": "rm -rf dist",
"test": "jest",
"test:coverage": "jest --coverage --collectCoverage"
},
"dependencies": {
"bignumber.js": "^9.0.2",
"denque": "^2.0.1",
"eventemitter2": "^6.4.6",
"hexoid": "^1.0.0",
"yaca": "^1.2.3"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/node": "^18.0.0",
"jest": "^28.1.2",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"keywords": [
"limitorderbook",
"limit order book",
"order book",
"fast order book",
"fast limit order book",
"stocks",
"ticker",
"tickers"
]
}