-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
93 lines (93 loc) · 3 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": "nodejs-order-book",
"version": "8.1.0",
"description": "Node.js Lmit Order Book for high-frequency trading (HFT).",
"author": "Andrea Fassina <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/fasenderos/nodejs-order-book",
"repository": {
"type": "git",
"url": "[email protected]:fasenderos/nodejs-order-book.git"
},
"bugs": {
"url": "https://github.com/fasenderos/nodejs-order-book/issues"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"umd:main": "dist/umd/index.js",
"types": "dist/types/index.d.js",
"scripts": {
"addscope": "node tools/packagejson name @fasenderos/nodejs-order-book",
"bench": "node benchmarks/benchmark_lob.js",
"build": "npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:types",
"build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json",
"build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json",
"build:umd": "node tools/cleanup umd && webpack --config config/webpack.config.js",
"build:types": "node tools/cleanup types && tsc -p config/tsconfig.types.json",
"clean": "node tools/cleanup",
"lint": "biome check ./src ./test",
"lint:fix": "biome check --write ./src ./test",
"package": "npm run build && npm pack",
"postpublish": "pinst --enable",
"prepublishOnly": "pinst --disable",
"release": "release-it --ci",
"release:beta": "release-it --ci --preRelease=beta",
"release:major": "release-it major --ci",
"release:minor": "release-it minor --ci",
"release:patch": "release-it patch --ci",
"test": "c8 node --import=tsx --test ./test/*.test.ts",
"test:dev": "c8 node --import=tsx --test --watch ./test/*.test.ts",
"test:ci": "node --import=tsx --test ./test/*.test.ts",
"test:cov": "c8 --reporter=lcov node --import=tsx --test ./test/*.test.ts",
"prepare": "husky"
},
"dependencies": {
"denque": "2.1.0",
"functional-red-black-tree": "1.0.1"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@release-it/conventional-changelog": "^9.0.1",
"@types/functional-red-black-tree": "^1.0.6",
"c8": "^10.1.2",
"crypto-browserify": "^3.12.0",
"gaussian": "^1.0.0",
"husky": "^9.1.1",
"nanobench": "^3.0.0",
"pinst": "^3.0.0",
"release-it": "^17.0.3",
"stream-browserify": "^3.0.0",
"ts-loader": "^9.0.0",
"ts-node": "^10.0.0",
"tsx": "^4.16.5",
"typescript": "^5.0.0",
"vm-browserify": "^1.1.2",
"webpack": "^5.0.0",
"webpack-cli": "^5.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"order-book",
"nodejs-order-book",
"orderbook",
"limit-order-book",
"exchange",
"hft",
"hft-trading",
"matching-algorithm",
"matching-engine",
"nodejs",
"performance",
"low-latency",
"trading-algorithm",
"typescript",
"trading"
]
}