-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 1.91 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@seriousme/openapi-schema-validator",
"version": "2.2.5",
"description": "Validate OpenApi specifications against their JSON schema",
"main": "index.js",
"type": "module",
"bin": {
"validate-api": "./bin/validate-api-cli.js",
"bundle-api": "./bin/bundle-api-cli.js"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-draft-04": "^1.0.0",
"ajv-formats": "^3.0.1",
"js-yaml": "^4.1.0",
"minimist": "^1.2.8"
},
"scripts": {
"test": "c8 node --test test/test-*.js",
"format": "biome format --write .",
"lint": "biome ci .",
"pretest": "npm run format",
"posttest": "c8 check-coverage --lines 100 --functions 100 --branches 100",
"covtest": "c8 --reporter=lcov npm test",
"cloneOas": "rm -rf OpenAPI-Specification && git clone --branch 'gh-pages' --single-branch https://github.com/OAI/OpenAPI-Specification.git",
"checkOasVersions": "node test/check-versions.js",
"checkOasVersionsSnapshot": "node test/check-versions.js --updateSnapshot",
"preconvert31": "npm run cloneOas",
"convert31": "node test/convert-3.1.js ",
"postconvert31": "npm run checkOasVersionsSnapshot",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"realWorldTest": "node test/realworld/realworld.js",
"realWorldTestAll": "node test/realworld/realworld.js --all",
"realWorldTestFailed": "node test/realworld/realworld.js --failedOnly",
"realWorldTestCI": "node test/realworld/realworld.js --ci"
},
"author": "Hans Klunder",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"c8": "^10.1.2"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seriousme/openapi-schema-validator.git"
},
"keywords": [
"openapi",
"json",
"schema",
"validation"
],
"bugs": {
"url": "https://github.com/seriousme/openapi-schema-validator/issues"
},
"homepage": "https://github.com/seriousme/openapi-schema-validator#readme"
}