json-schema-walker
Version:
A system that visits all schema objects in a JSON Schema document and makes callbacks before visiting all of the current schema object's subschemas.
50 lines (49 loc) • 1.38 kB
JSON
{
"name": "json-schema-walker",
"version": "2.0.0",
"description": "A system that visits all schema objects in a JSON Schema document and makes callbacks before visiting all of the current schema object's subschemas.",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"main": "dist/index.js",
"scripts": {
"build": "rm -fr dist/* && tsc -p tsconfig.json",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonluca/json-schema-walker.git"
},
"bugs": {
"url": "https://github.com/jonluca/json-schema-walker/issues"
},
"homepage": "https://github.com/jonluca/json-schema-walker",
"author": "JonLuca DeCaro <jsonwalker@jonlu.ca>",
"license": "MIT",
"engines": {
"node": ">=10"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.1.0",
"clone": "^2.1.2"
},
"devDependencies": {
"@types/clone": "^2.1.4",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"prettier": {
"printWidth": 120,
"arrowParens": "always",
"semi": true,
"tabWidth": 2,
"trailingComma": "all"
}
}