-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 811 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 811 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
{
"name": "diff-to-patch",
"version": "0.1.0",
"description": "A function that compares two JavaScript-objects and returns an array of JSON Patch-operations representing the difference between the two objects.",
"main": "index.js",
"scripts": {
"test": "node tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taylanken/diff-to-patch.git"
},
"keywords": [
"json",
"diff",
"patch",
"json-patch",
"json-diff",
"compare",
"jsonpatch",
"jsondiff"
],
"author": "Taylan Kenanoglu",
"license": "MIT",
"bugs": {
"url": "https://github.com/taylanken/diff-to-patch/issues"
},
"homepage": "https://github.com/taylanken/diff-to-patch#readme"
}