-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.46 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@grrtbrtr/jsonkdiff",
"version": "1.1.0",
"description": "Compare multiple JSON files and find non-common keys. Generates a per-file report of unique keys to help identify schema drift.",
"keywords": [
"json",
"json-keys",
"json-diff",
"json-compare",
"json-comparison",
"json-schema-validator",
"i18n-audit",
"i18n-checker",
"i18n-validator",
"localization-tools",
"localization-helper",
"translation-check",
"schema",
"schema-drift",
"deep-diff",
"recursive-compare",
"zero-dependencies",
"cli",
"cli-tool",
"devtools",
"config-validator",
"deep-comparison"
],
"homepage": "https://github.com/grrtbrtr/jsonkdiff#readme",
"bugs": {
"url": "https://github.com/grrtbrtr/jsonkdiff/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grrtbrtr/jsonkdiff.git"
},
"license": "GPL-3.0-only",
"author": "Gerrit Bertier <gerrit.bertier@gmail.com>",
"funding": "https://github.com/grrtbrtr",
"type": "module",
"sideEffects": false,
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./package.json": "./package.json"
},
"bin": {
"jsonkdiff": "bin/cli.js"
},
"files": [
"src/",
"bin/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"test": "node --test \"test/**/*.test.js\"",
"start": "node ./bin/cli.js",
"prepublishOnly": "npm test"
}
}