-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 889 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 889 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
{
"name": "json-patch-ot",
"version": "3.0.0-0",
"description": "JSON Patch Operational Transformations - resolves outdated JSON Patches (RFC6902) in real-time JSON collaboration",
"main": "src/json-patch-ot.js",
"type": "module",
"typings": "index.d.ts",
"scripts": {
"test": "node --experimental-modules jasmine-run.js test/spec/transformSpec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Palindrom/JSON-Patch-OT.git"
},
"keywords": [
"jsonpatch",
"json-patch",
"OT",
"versioned-json-patch",
"json",
"queue"
],
"author": "Tomek Wytrebowicz",
"license": "MIT",
"bugs": {
"url": "https://github.com/Palindrom/JSON-Patch-OT/issues"
},
"homepage": "https://github.com/Palindrom/JSON-Patch-OT",
"devDependencies": {
"grunt": "^1.0.4",
"grunt-bump": "^0.8.0",
"jasmine": "^3.4.0"
}
}