-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "api-problem-json-doctor",
"version": "0.1.0",
"description": "CLI checker for RFC 9457 / application/problem+json API error documentation quality.",
"type": "module",
"bin": {
"api-problem-json-doctor": "bin/api-problem-json-doctor.js"
},
"scripts": {
"check": "node --test && node bin/api-problem-json-doctor.js examples/good.md --min-score 85 && node bin/api-problem-json-doctor.js examples/bad.md --min-score 90 --expect-fail",
"test": "node --test"
},
"keywords": ["api", "problem-json", "rfc9457", "errors", "documentation", "developer-experience", "cli"],
"author": "funnyhcat-dotcom",
"license": "MIT",
"engines": { "node": ">=18" },
"files": ["bin/", "src/", "examples/", "docs/", "assets/", "README.md", "LICENSE", "CHANGELOG.md"],
"repository": { "type": "git", "url": "git+https://github.com/funnyhcat-dotcom/api-problem-json-doctor.git" },
"bugs": { "url": "https://github.com/funnyhcat-dotcom/api-problem-json-doctor/issues" },
"homepage": "https://github.com/funnyhcat-dotcom/api-problem-json-doctor#readme"
}