-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 806 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 806 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
36
37
38
39
40
41
{
"name": "diffpatchjson",
"version": "0.2.0",
"description": "Diff & patch JSON values, using low-footprint deltas/diffs",
"keywords": [
"diff",
"patch",
"JSON"
],
"homepage": "https://github.com/oyooyo/diffpatchjson#readme",
"bugs": {
"url": "https://github.com/oyooyo/diffpatchjson/issues"
},
"license": "ISC",
"author": {
"name" : "oyooyo",
"url" : "https://github.com/oyooyo"
},
"files": [
"delta_format.md",
"index.cjs",
"index.mjs",
"README.md"
],
"type": "module",
"main": "./index.cjs",
"exports": {
"import": "./index.mjs",
"require": "./index.cjs"
},
"repository": {
"type": "git",
"url": "https://github.com/oyooyo/diffpatchjson.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=12"
}
}