forked from janmonschke/diffsync
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "json-sync",
"version": "4.5.0",
"description": "Real time collaborative editing for JSON objects",
"main": "index.js",
"scripts": {
"test": "mocha test/**/*.test.js",
"coverage": "nyc -a --reporter=cobertura --reporter=html --reporter=text npm run test"
},
"dependencies": {
"diff_match_patch": "^0.1.1",
"jsondiffpatch": "^0.2.4",
"lodash.isempty": "^3.0.2",
"mitt": "^1.1.2"
},
"devDependencies": {
"eslint": "^3.19.0",
"lodash.isobject": "^3.0.1",
"lodash.isarray": "^3.0.2",
"mocha": "^3.4.2",
"sinon": "^2.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/sueddeutsche/json-sync.git"
},
"author": [
"Sascha Goldhofer",
"Jan Monschke"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sueddeutsche/json-sync/issues"
},
"keywords": [
"collaboration",
"synchronization",
"differential synchronization",
"server",
"client",
"realtime"
],
"homepage": "https://github.com/sueddeutsche/json-sync"
}