-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.2 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
{
"name": "api-shape-diff",
"version": "0.1.0",
"description": "Compare JSON/API response shapes and highlight breaking changes.",
"type": "module",
"bin": {
"api-shape-diff": "bin/api-shape-diff.js",
"shapediff": "bin/api-shape-diff.js"
},
"scripts": {
"test": "node --test",
"check": "node --test && node bin/api-shape-diff.js --help && node bin/api-shape-diff.js examples/v1.json examples/v2.json --format text && node bin/api-shape-diff.js examples/v1.json examples/v2.json --format markdown > /tmp/api-shape-diff.md && node bin/api-shape-diff.js examples/v1.json examples/v2.json --format json > /tmp/api-shape-diff.json && node -e \"JSON.parse(require('fs').readFileSync('/tmp/api-shape-diff.json','utf8'))\""
},
"keywords": [
"api",
"json",
"diff",
"cli",
"developer-tools",
"testing",
"schema"
],
"author": "Funny HCat",
"license": "MIT",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/funnyhcat-dotcom/api-shape-diff.git"
},
"bugs": {
"url": "https://github.com/funnyhcat-dotcom/api-shape-diff/issues"
},
"homepage": "https://github.com/funnyhcat-dotcom/api-shape-diff#readme"
}