-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathcomponent.json
More file actions
35 lines (34 loc) · 812 Bytes
/
component.json
File metadata and controls
35 lines (34 loc) · 812 Bytes
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
{
"name": "changesets",
"repo": "marcelklehr/changesets",
"description": "A Changeset library incorporating an operational transformation (OT) algorithm -- for node and the browser!",
"version": "1.0.0",
"keywords": [
"operational transformation",
"ot",
"changesets",
"diff",
"Forward Transformation",
"Backward Transformation",
"Inclusion Transformation",
"Exclusion Transformation",
"collaborative",
"undo",
"text"
],
"dependencies": {
},
"license": "MIT",
"main": "lib/index.js",
"scripts": [
"lib/index.js",
"lib/Operator.js",
"lib/Changeset.js",
"lib/operations/Skip.js",
"lib/operations/Insert.js",
"lib/operations/Retain.js",
"lib/Builder.js",
"lib/TextTransform.js",
"lib/ChangesetTransform.js"
]
}