lava-oushudb-dt-sql-parser/package.json

34 lines
817 B
JSON

{
"name": "dt-sql-parser",
"version": "3.0.2",
"description": "sql,hive,parser ",
"keywords": [
"hive",
"hql",
"sql",
"parser"
],
"main": "lib/index.js",
"scripts": {
"build:parse": "pegjs -o core/astParser.js peg/nquery.pegjs ",
"build:filter": "pegjs -o core/comment.js peg/comment.pegjs ",
"build:syntax": "node ./src/scripts/generateParsers.js impala",
"build": "npm test && rm -rf lib && tsc",
"test": "jest"
},
"author": "xiaokang",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.13",
"jest": "^24.8.0",
"pegjs": "^0.10.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
},
"git repository": "https://github.com/HSunboy/dt-sql-parser",
"dependencies": {
"@types/antlr4": "^4.7.0",
"antlr4": "^4.7.2"
}
}