2018-07-02 18:01:01 +08:00
|
|
|
{
|
|
|
|
"name": "dt-sql-parser",
|
2019-10-21 16:52:16 +08:00
|
|
|
"version": "2.0.6",
|
2018-08-16 19:47:06 +08:00
|
|
|
"description": "sql,hive,parser ",
|
2019-05-14 16:57:09 +08:00
|
|
|
"keywords": [
|
|
|
|
"hive",
|
|
|
|
"hql",
|
|
|
|
"sql",
|
|
|
|
"parser"
|
|
|
|
],
|
|
|
|
"main": "lib/index.js",
|
2018-07-03 11:33:53 +08:00
|
|
|
"scripts": {
|
2018-07-06 16:58:25 +08:00
|
|
|
"build:parse": "pegjs -o core/astParser.js peg/nquery.pegjs ",
|
2018-08-16 19:47:06 +08:00
|
|
|
"build:filter": "pegjs -o core/comment.js peg/comment.pegjs ",
|
2019-01-28 20:25:26 +08:00
|
|
|
"build:syntax": "sh ./jison/hue-sql-syntax.sh ",
|
2019-09-29 17:38:52 +08:00
|
|
|
"build": "npm test && rm -rf lib && tsc",
|
2019-05-14 16:57:09 +08:00
|
|
|
"test": "jest"
|
2018-07-03 11:33:53 +08:00
|
|
|
},
|
2018-07-02 18:01:01 +08:00
|
|
|
"author": "xiaokang",
|
|
|
|
"license": "ISC",
|
2018-07-03 11:33:53 +08:00
|
|
|
"devDependencies": {
|
2019-05-14 16:57:09 +08:00
|
|
|
"@types/jest": "^24.0.13",
|
|
|
|
"jest": "^24.8.0",
|
2018-07-03 11:33:53 +08:00
|
|
|
"node-query": "^0.3.3",
|
2019-09-25 15:43:36 +08:00
|
|
|
"pegjs": "^0.10.0",
|
|
|
|
"ts-jest": "^24.1.0",
|
|
|
|
"typescript": "^3.6.3"
|
2018-07-03 11:33:53 +08:00
|
|
|
},
|
2019-05-14 16:57:09 +08:00
|
|
|
"git repository": "https://github.com/HSunboy/dt-sql-parser",
|
2019-09-25 15:43:36 +08:00
|
|
|
"dependencies": {
|
|
|
|
"@types/antlr4": "^4.7.0",
|
|
|
|
"antlr4": "^4.7.2"
|
|
|
|
}
|
2018-07-02 18:01:01 +08:00
|
|
|
}
|