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

41 lines
992 B
JSON
Raw Normal View History

2018-07-02 18:01:01 +08:00
{
"name": "dt-sql-parser",
2020-03-26 13:06:16 +08:00
"version": "3.0.4",
2020-08-28 13:29:47 +08:00
"description": "There are some sql parsers in javascript and generated by antlr4",
2019-05-14 16:57:09 +08:00
"keywords": [
"sql",
2020-08-28 13:29:47 +08:00
"parser",
"monaco-editor",
"hive",
"spark",
"flink",
"impala",
"bigdata"
2019-05-14 16:57:09 +08:00
],
"main": "lib/index.js",
2018-07-03 11:33:53 +08:00
"scripts": {
2020-08-28 13:29:47 +08:00
"build:parser": "node build/antlr4.js",
2019-09-29 17:38:52 +08:00
"build": "npm test && rm -rf lib && tsc",
2020-08-28 13:29:47 +08:00
"eslint": "eslint ./src/**/*.ts",
"check-types": "tsc --skipLibCheck",
2019-05-14 16:57:09 +08:00
"test": "jest"
2018-07-03 11:33:53 +08:00
},
2020-08-28 13:29:47 +08:00
"author": "dt-insight-front",
2018-07-02 18:01:01 +08:00
"license": "ISC",
2018-07-03 11:33:53 +08:00
"devDependencies": {
2019-05-14 16:57:09 +08:00
"@types/jest": "^24.0.13",
2020-08-28 13:29:47 +08:00
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.7.0",
"eslint-config-google": "^0.14.0",
2019-05-14 16:57:09 +08:00
"jest": "^24.8.0",
2019-09-25 15:43:36 +08:00
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
2018-07-03 11:33:53 +08:00
},
2020-08-28 13:29:47 +08:00
"git repository": "https://github.com/DTStack/dt-sql-parser",
2019-09-25 15:43:36 +08:00
"dependencies": {
2020-08-28 13:29:47 +08:00
"@types/antlr4": "^4.7.2",
2019-09-25 15:43:36 +08:00
"antlr4": "^4.7.2"
}
2018-07-02 18:01:01 +08:00
}