forked from raditzlawliet/dt-sql-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 817 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"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"
}
}