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

55 lines
1.4 KiB
JSON
Raw Normal View History

2018-07-02 18:01:01 +08:00
{
"name": "dt-sql-parser",
2023-06-14 10:51:47 +08:00
"version": "4.0.0-beta.4",
2021-01-05 18:58:42 +08:00
"description": "SQL Parsers for BigData, built with 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",
"bigdata"
2019-05-14 16:57:09 +08:00
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
2023-05-11 18:13:42 +08:00
"files": [
"dist"
],
2018-07-03 11:33:53 +08:00
"scripts": {
"antlr4": "node build/antlr4.js",
2020-12-17 19:03:25 +08:00
"build": "rm -rf dist && tsc",
2020-08-28 13:29:47 +08:00
"eslint": "eslint ./src/**/*.ts",
"check-types": "tsc --skipLibCheck",
2023-05-04 10:13:05 +08:00
"test": "NODE_OPTIONS=--max_old_space_size=4096 && jest",
2023-06-14 10:46:13 +08:00
"release": "standard-version --infile CHANGELOG.md"
2018-07-03 11:33:53 +08:00
},
2020-08-28 13:29:47 +08:00
"author": "dt-insight-front",
2021-01-04 14:42:22 +08:00
"license": "MIT",
2018-07-03 11:33:53 +08:00
"devDependencies": {
"@swc/core": "^1.3.60",
"@swc/jest": "^0.2.26",
2023-05-04 10:13:05 +08:00
"@types/jest": "^29.5.1",
"@types/node": "^18.15.11",
2020-08-28 13:29:47 +08:00
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"antlr4ts-cli": "^0.5.0-alpha.4",
2023-05-04 10:13:05 +08:00
"eslint": "^7.32.0",
2020-08-28 13:29:47 +08:00
"eslint-config-google": "^0.14.0",
2023-05-04 10:13:05 +08:00
"jest": "^29.5.0",
"standard-version": "^9.5.0",
"typescript": "^5.0.4",
"yargs-parser": "^21.1.1"
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",
"repository": "https://github.com/DTStack/dt-sql-parser",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
2019-09-25 15:43:36 +08:00
"dependencies": {
"antlr4-c3": "^3.0.1",
"antlr4ts": "^0.5.0-alpha.4"
2019-09-25 15:43:36 +08:00
}
2018-07-02 18:01:01 +08:00
}