lava-oushudb-dt-sql-parser/package.json
2023-05-11 18:13:42 +08:00

52 lines
1.3 KiB
JSON

{
"name": "dt-sql-parser",
"version": "4.0.0-beta.3.2",
"description": "SQL Parsers for BigData, built with antlr4",
"keywords": [
"sql",
"parser",
"monaco-editor",
"hive",
"spark",
"flink",
"bigdata"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"antlr4": "node build/antlr4.js",
"build": "rm -rf dist && tsc",
"eslint": "eslint ./src/**/*.ts",
"check-types": "tsc --skipLibCheck",
"test": "NODE_OPTIONS=--max_old_space_size=4096 && jest",
"release": "npm run build && standard-version --infile CHANGELOG.md"
},
"author": "dt-insight-front",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"jest": "^29.5.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4",
"yargs-parser": "^21.1.1"
},
"git repository": "https://github.com/DTStack/dt-sql-parser",
"repository": "https://github.com/DTStack/dt-sql-parser",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"antlr4": "^4.12.0"
}
}