45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "dt-sql-parser",
|
|
"version": "4.0.1-beta",
|
|
"description": "There are some sql parsers built with antlr4, and it's mainly for the **BigData** domain.",
|
|
"keywords": [
|
|
"sql",
|
|
"parser",
|
|
"monaco-editor",
|
|
"hive",
|
|
"spark",
|
|
"flink",
|
|
"impala",
|
|
"bigdata"
|
|
],
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"antlr4": "node build/antlr4.js",
|
|
"build": "rm -rf dist && tsc",
|
|
"eslint": "eslint ./src/**/*.ts",
|
|
"check-types": "tsc --skipLibCheck",
|
|
"test": "jest"
|
|
},
|
|
"author": "dt-insight-front",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/jest": "^24.0.13",
|
|
"@typescript-eslint/eslint-plugin": "^3.10.1",
|
|
"@typescript-eslint/parser": "^3.10.1",
|
|
"eslint": "^7.7.0",
|
|
"eslint-config-google": "^0.14.0",
|
|
"jest": "^24.8.0",
|
|
"ts-jest": "^24.1.0",
|
|
"typescript": "^3.6.3"
|
|
},
|
|
"git repository": "https://github.com/DTStack/dt-sql-parser",
|
|
"repository": "https://github.com/DTStack/dt-sql-parser",
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"dependencies": {
|
|
"@types/antlr4": "4.7.0",
|
|
"antlr4": "4.7.2"
|
|
}
|
|
}
|