-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.24 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@oai/build-infra",
"version": "0.0.0",
"description": "OpenAPI Initiative specification build and test infrastructure",
"author": {
"name": "OpenAPI Initiative TSC",
"email": "tsc@openapis.org",
"url": "https://openapis.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/OAI/build-infra.git"
},
"license": "Apache-2.0",
"bin": {
"oai-spec-adjust-release-branch": "./bin/oai-spec-adjust-release-branch",
"oai-spec-build": "./bin/oai-spec-build",
"oai-spec-format-markdown": "./bin/oai-spec-format-markdown",
"oai-spec-publish-schemas": "./bin/oai-spec-publish-schemas",
"oai-spec-start-release": "./bin/oai-spec-start-release",
"oai-spec-sync-lockfile": "./bin/oai-spec-sync-lockfile",
"oai-spec-test": "./bin/oai-spec-test",
"oai-spec-validate-markdown": "./bin/oai-spec-validate-markdown"
},
"exports": {
"./package.json": "./package.json",
"./configs/linkspector.yml": "./configs/linkspector.yml",
"./configs/markdownlint-root.yaml": "./configs/markdownlint-root.yaml",
"./configs/markdownlint-spec.yaml": "./configs/markdownlint-spec.yaml",
"./schema/openapi-3-0-test": "./src/schema/openapi-3-0-test.mjs",
"./schema/vitest": "./src/schema/vitest.mjs",
"./schema/test-config": "./src/schema/test-config.mjs",
"./test": "./src/test/index.mjs",
"./vitest-config": "./src/vitest-config.mjs"
},
"scripts": {
"check-lockfile-snapshot": "node src/lockfile/check-lockfile-snapshot.mjs",
"sync-lockfile-snapshot": "cp package-lock.json src/lockfile/build-infra-package-lock.json",
"test": "npm run check-lockfile-snapshot && vitest run"
},
"dependencies": {
"@hyperjump/browser": "^1.0.0",
"@hyperjump/json-schema": "^1.17.7",
"@hyperjump/json-schema-coverage": "^1.2.1",
"@umbrelladocs/linkspector": "^0.5.6",
"@vitest/coverage-v8": "^4.1.10",
"cheerio": "^1.2.0",
"c8": "^12.0.0",
"content-type": "^2.0.0",
"highlight.js": "^11.11.1",
"markdownlint-cli2": "^0.23.2",
"markdown-it": "^15.0.0",
"respec": "37.2.0",
"vitest": "^4.0.1",
"yaml": "^2.9.0",
"yargs": "^18.1.0"
},
"keywords": [
"OpenAPI",
"OAI",
"specification",
"schema",
"infrastructure"
]
}