ksql-lint
Version:
CLI tool to lint KSQLDB commands/queries, for use in CI/CD, using [the official KSQLDB grammar](https://github.com/confluentinc/ksql/blob/master/ksqldb-parser/src/main/antlr4/io/confluent/ksql/parser/SqlBase.g4) and using that parser to validate KSQLDB st
33 lines (32 loc) • 654 B
JSON
{
"name": "ksql-lint",
"version": "1.0.1",
"description": "",
"keywords": ["ksql", "lint"],
"author": "Andrew Gits",
"homepage": "https://github.com/thekiwi/ksql-lint",
"bugs": "https://github.com/thekiwi/ksql-lint/issues",
"license": "MIT",
"main": "./src/api.js",
"type": "module",
"bin": {
"ksql-lint": "./bin/ksql-lint.js"
},
"files": [
"lib/**/*.js",
"src/**/*.js"
],
"scripts": {
"test": "mocha test/"
},
"dependencies": {
"antlr4": "^4.12.0",
"commander": "^9.1.0",
"glob": "^8.0.1"
},
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^9.2.2",
"sinon": "^13.0.1"
}
}