-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (51 loc) · 1.78 KB
/
package.json
File metadata and controls
52 lines (51 loc) · 1.78 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
46
47
48
49
50
51
52
{
"name": "arazzo",
"version": "1.0.0",
"description": "Arazzo Specification",
"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 || echo 'No vitest tests found — skipping...') && bash scripts/schema-test-coverage.sh",
"format-markdown": "npx markdownlint-cli2 --config spec.markdownlint.yaml --fix src/arazzo.md && npx markdownlint-cli2 --fix *.md",
"validate-markdown": "npx markdownlint-cli2 --config spec.markdownlint.yaml src/arazzo.md && npx markdownlint-cli2 *.md"
},
"repository": {
"type": "git",
"url": "https://github.com/OAI/Arazzo-Specification.git"
},
"keywords": [
"Arazzo",
"Workflows",
"Specification",
"API",
"Swagger",
"OpenAPI",
"OAS",
"OAI"
],
"author": {
"name": "OpenAPI Initiative - Arazzo Working Group",
"email": "[email protected]",
"url": "https://openapis.org/"
},
"readmeFilename": "README.md",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/OAI/Arazzo-Specification/issues"
},
"homepage": "https://github.com/yourusername/your-project-name#readme",
"dependencies": {
"cheerio": "^1.2.0",
"highlight.js": "^11.11.1",
"markdown-it": "^14.1.1",
"respec": "35.8.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"markdownlint-cli2": "^0.22.0",
"yaml": "2.8.3",
"@hyperjump/json-schema": "^1.17.5",
"c8": "^11.0.0",
"vitest": "^4.1.0"
}
}