-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.37 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.37 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
{
"name": "api-ai-readiness-framework",
"version": "1.0.0",
"description": "A technical specification for the Jentic API AI-Readiness Framework (JAIRF). Defines the signals, dimensions, scoring model, and normalisation rules used to evaluate how interpretable, operable, and trustworthy APIs are for AI systems and autonomous agents.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"format:markdown": "markdownlint-cli2 --config spec.markdownlint.yaml --fix '**/*.md' \"!node_modules/**\"",
"lint:markdown": "markdownlint-cli2 --config spec.markdownlint.yaml '**/*.md' \"!node_modules/**\"",
"spell:check": "cspell --config ./.cspell.json '**/*.md' \"!node_modules/**\"",
"validate": "npm run lint:markdown && npm run spell:check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jentic/api-ai-readiness-framework.git"
},
"keywords": ["API", "OpenAPI", "API Scoring", "AI-readiness", "OAS", "Arazzo"],
"author": {
"name": "Frank Kilcommins @frankkilcommins",
"email": "frank@jentic.com",
"url": "https://jentic.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jentic/api-ai-readiness-framework/issues"
},
"homepage": "https://github.com/jentic/api-ai-readiness-framework#readme",
"devDependencies": {
"cspell": "^9.3.2",
"markdownlint-cli2": "^0.21.0"
}
}