-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.13 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.13 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
{
"name": "@slickquant/slick-ladder",
"version": "0.2.0",
"description": "SlickLadder - Ultra-low latency price ladder component",
"private": true,
"workspaces": [
"src/web",
"examples/web"
],
"scripts": {
"build:wasm": "node scripts/build-wasm.js",
"build:lib": "npm run build --workspace=src/web",
"build:lib:full": "npm run build:wasm && npm run build:lib",
"build:demo": "npm run build --workspace=examples/web",
"build:all": "npm run build:wasm && npm run build:lib && npm run build:demo",
"dev:demo": "npm run dev --workspace=examples/web",
"serve:demo": "npm run serve --workspace=examples/web",
"package": "npm run build:lib:full && npm pack --workspace=src/web",
"publish": "npm publish --access public --workspace=src/web",
"test:npm": "cd tests/npm && npm test",
"test:npm:browser": "cd tests/npm && npm run serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SlickQuant/slick-ladder.git"
},
"keywords": [
"price-ladder",
"trading",
"orderbook",
"webassembly",
"canvas"
],
"author": "Slick Quant LLC.",
"license": "MIT"
}