-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
82 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,56 @@ | ||
{ | ||
"name": "@seriousme/openapi-schema-validator", | ||
"version": "2.2.1", | ||
"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.12.0", | ||
"ajv-draft-04": "^1.0.0", | ||
"ajv-formats": "^2.1.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.5.3", | ||
"c8": "^9.1.0" | ||
}, | ||
"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" | ||
"name": "@seriousme/openapi-schema-validator", | ||
"version": "2.2.1", | ||
"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.12.0", | ||
"ajv-draft-04": "^1.0.0", | ||
"ajv-formats": "^2.1.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.5.3", | ||
"c8": "^9.1.0" | ||
}, | ||
"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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters