forked from dmonad/crdt-benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.45 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
{
"name": "benchmarks",
"version": "1.0.0",
"private": true,
"description": "CRDT benchmarks",
"type": "module",
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/dmonad"
},
"scripts": {
"clean": "rm -rf benchmarks/yjs/dist",
"start:yjs": "cd benchmarks/yjs && npm start",
"start": "npm run start:yjs",
"table": "node bin/render-table.js benchmarks/results.json 6000 yjs automerge delta-crdt",
"lint": "standard && tsc",
"install": "cd benchmarks/yjs && npm i"
},
"standard": {
"ignore": [
"**/dist/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmonad/crdt-benchmarks.git"
},
"keywords": [
"CRDT",
"benchmark"
],
"author": "Kevin Jahns",
"license": "MIT",
"bugs": {
"url": "https://github.com/dmonad/crdt-benchmarks/issues"
},
"homepage": "https://github.com/dmonad/crdt-benchmarks#readme",
"dependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"automerge": "^0.14.1",
"delta-crdts": "^0.10.3",
"delta-crdts-msgpack-codec": "^0.2.0",
"jumprope": "^1.2.1",
"lib0": "^0.2.42",
"ot-text-unicode": "^4.0.0",
"rollup": "^2.57.0",
"rollup-plugin-terser": "^7.0.2",
"standard": "^16.0.3"
},
"devDependencies": {
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"typescript": "^3.9.6"
}
}