json-schema-spell-checker
Version:
Check the spelling of your JSON Schema (including OpenAPI!) documents
38 lines (37 loc) • 853 B
JSON
{
"name": "json-schema-spell-checker",
"version": "2.2.0",
"description": "Check the spelling of your JSON Schema (including OpenAPI!) documents",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint *.js",
"lint-fix": "eslint --fix *.js"
},
"bin": {
"json-schema-spell-checker": "bin.js"
},
"keywords": [
"openapi",
"oas",
"spelling",
"spellcheck"
],
"author": "Michael Heap <m@michaelheap.com>",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0",
"commander": "^10.0.1",
"jsonpath-plus": "^7.2.0",
"markdown-spellcheck": "^1.3.1",
"remark": "^13.0.0",
"remark-plain-text": "^0.2.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"eslint": "^8.42.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8"
}
}