-
Notifications
You must be signed in to change notification settings - Fork 9.1k
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 KB
/
package.json
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
{
"name": "oas-infra",
"version": "0.0.0",
"description": "OpenAPI Specification Automation & Infrastructure",
"author": {
"name": "OpenAPI Initiative TSC",
"email": "[email protected]",
"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 --watch=false && bash scripts/schema-test-coverage.sh",
"format-markdown": "bash ./scripts/format-markdown.sh ./src/oas.md",
"validate-markdown": "npx mdv src/oas.md && npx markdownlint-cli src/oas.md"
},
"dependencies": {
"cheerio": "^1.0.0-rc.5",
"highlight.js": "^11.11.1",
"markdown-it": "^14.1.0",
"respec": "35.3.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@hyperjump/json-schema": "^1.11.0",
"c8": "^10.1.3",
"markdownlint-cli": "^0.44.0",
"mdv": "^1.3.4",
"vitest": "^3.1.1",
"yaml": "^2.7.1"
},
"keywords": [
"OpenAPI",
"OAS",
"Swagger",
"schema",
"API"
]
}