-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
41 lines (40 loc) · 1.25 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
{
"name": "diff-sync-js",
"version": "1.0.6",
"description": "A JavaScript implementation of Neil Fraser Differential Synchronization Algorithm",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/weijie0192/diff-sync-js.git"
},
"author": "Wei Zheng",
"license": "MIT",
"bugs": {
"url": "https://github.com/weijie0192/diff-sync-js/issues"
},
"scripts": {
"prepublish": "babel src --out-dir lib --ignore \"**/*.test.js\"",
"build": "babel src --out-dir lib --ignore \"**/*.test.js\"",
"test": "jest"
},
"homepage": "https://github.com/weijie0192/diff-sync-js#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-plugin-syntax-class-properties": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"faker": "5.5.3",
"fast-json-patch": "^3.1.0",
"jest": "^27.4.7"
},
"keywords": [
"differential synchronization",
"concurrent editing",
"multi user editor",
"synchronization"
],
"dependencies": {
}
}