forked from kbadk/json0-ot-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 966 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
{
"name": "json0-ot-diff",
"version": "1.0.6",
"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": "^2.0.5"
},
"devDependencies": {
"chai": "^4.1.2",
"clone": "^1.0.2",
"diff-match-patch": "^1.0.0",
"mocha": "^6.1.4",
"ot-json0": "^1.0.1"
}
}