-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
40 lines (40 loc) · 993 Bytes
/
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
{
"name": "json0-ot-diff",
"version": "1.1.2",
"description": "Finds differences between two JSON object and generates operational transformation (OT) operations for transforming the first object into the second.",
"main": "index.js",
"scripts": {
"test": "node tests.js",
"mocha": "mocha",
"mocha-watch": "mocha --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kbadk/json0-ot-diff.git"
},
"keywords": [
"json",
"json0",
"ot",
"operational",
"transformation",
"diff"
],
"author": "Kristian Antonsen",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kbadk/json0-ot-diff/issues"
},
"homepage": "https://github.com/kbadk/json0-ot-diff#readme",
"dependencies": {
"deep-equal": "^1.0.1"
},
"devDependencies": {
"chai": "^4.3.7",
"clone": "^2.1.2",
"diff-match-patch": "^1.0.5",
"mocha": "^10.2.0",
"ot-json0": "^1.1.0",
"ot-json1": "^1.0.2"
}
}