-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
58 lines (58 loc) · 2.02 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": "operational-transformation",
"private": true,
"description": "A collection of Algorithms to Synchronise changes across multiple clients using Operational Transformation",
"scripts": {
"prepare": "husky install",
"clean": "lerna run clean --no-private",
"build": "lerna run build --no-private",
"start:editors": "pnpm run --filter '@otjs-examples/collaborative-editors' start",
"coverage": "nyc merge coverage-all coverage/coverage.json",
"coverage:clean": "rimraf coverage-* coverage",
"coverage:dev": "nyc report -t coverage --report-dir coverage --reporter=lcov",
"test": "TEST_ENV=true jest --colors",
"test:ci": "pnpm run test --ci --silent",
"test:ace": "pnpm run --filter '@otjs-tests/ace' test:ci",
"test:firebase": "pnpm run --filter '@otjs-tests/firebase' test:ci",
"test:monaco": "pnpm run --filter '@otjs-tests/monaco' test:ci",
"test:watch": "pnpm run test --watch",
"lint": "pnpm run lint:prettier",
"lint:prettier": "prettier --write {packages,examples}/**/*.{js,json,ts}",
"release": "lerna version --no-private --exact"
},
"repository": {
"type": "git",
"url": "https://github.com/0xTheProDev/Operational-Transformation.git"
},
"engines": {
"node": ">= 20",
"pnpm": ">= 9"
},
"devDependencies": {
"@babel/core": "7.26.7",
"@babel/preset-env": "7.26.7",
"@microsoft/api-extractor": "7.49.1",
"@types/jest": "29.5.14",
"@types/node": "22.10.10",
"@types/regenerator-runtime": "0.13.8",
"babel-jest": "29.7.0",
"canvas": "3.1.0",
"firebase-tools": "13.29.2",
"husky": "9.1.7",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lerna": "8.1.9",
"lint-staged": "15.4.3",
"nyc": "17.1.0",
"prettier": "3.4.2",
"regenerator-runtime": "0.14.1",
"rimraf": "6.0.1",
"ts-jest": "29.2.5",
"ts-loader": "9.5.2",
"typescript": "5.7.3",
"webpack": "5.97.1",
"webpack-cli": "6.0.1"
},
"packageManager": "[email protected]"
}