forked from OAI/OpenAPI-Specification
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.37 KB
/
package.json
File metadata and controls
45 lines (45 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
35
36
37
38
39
40
41
42
43
44
45
{
"name": "oas-infra",
"version": "0.0.0",
"description": "OpenAPI Specification Automation & Infrastructure",
"author": {
"name": "OpenAPI Initiative TSC",
"email": "tsc@openapis.org",
"url": "https://openapis.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/OAI/OpenAPI-Specification.git"
},
"license": "Apache-2.0",
"scripts": {
"build": "bash ./scripts/md2html/build.sh",
"build-src": "npm run validate-markdown && bash ./scripts/md2html/build.sh src && bash ./scripts/schema-publish.sh src",
"test": "c8 --100 vitest run --coverage",
"format-markdown": "npx markdownlint-cli2 --config spec.markdownlint.yaml --fix src/oas.md && npx markdownlint-cli2 --fix *.md",
"validate-markdown": "npx markdownlint-cli2 --config spec.markdownlint.yaml src/oas.md && npx markdownlint-cli2 *.md && npx linkspector check"
},
"dependencies": {
"cheerio": "^1.1.2",
"highlight.js": "^11.11.1",
"markdown-it": "^14.1.0",
"respec": "35.6.1",
"yargs": "^18.0.0"
},
"devDependencies": {
"@hyperjump/json-schema-coverage": "^1.1.2",
"@umbrelladocs/linkspector": "^0.4.7",
"@vitest/coverage-v8": "^4.0.14",
"c8": "^10.1.3",
"markdownlint-cli2": "^0.19.1",
"vitest": "^4.0.1",
"yaml": "^2.8.1"
},
"keywords": [
"OpenAPI",
"OAS",
"Swagger",
"schema",
"API"
]
}