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

68 lines
1.9 KiB
JSON
Raw Normal View History

2018-07-02 18:01:01 +08:00
{
"name": "dt-sql-parser",
2023-12-13 11:45:39 +08:00
"version": "4.0.0-beta.4.9",
"authors": "DTStack Corporation",
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": {
"prepare": "husky install",
2023-11-20 09:58:11 +08:00
"prepublishOnly": "npm run build",
2023-10-09 17:43:41 +08:00
"antlr4": "node ./scripts/antlr4.js",
2020-12-17 19:03:25 +08:00
"build": "rm -rf dist && tsc",
"check-types": "tsc -p ./tsconfig.check.json",
2023-05-04 10:13:05 +08:00
"test": "NODE_OPTIONS=--max_old_space_size=4096 && jest",
2023-11-20 09:58:11 +08:00
"release": "node ./scripts/release.js",
"lint": "prettier --check '**/*.ts' --config ./.prettierrc",
"lint-fix": "prettier --write '**/*.ts' --config ./.prettierrc",
"format-g4": "antlr-format -c ./antlr.format.json -v ./src/grammar/**/*.g4",
"cleanComment": "node ./scripts/cleanCommentCli.js"
2018-07-03 11:33:53 +08:00
},
2021-01-04 14:42:22 +08:00
"license": "MIT",
2018-07-03 11:33:53 +08:00
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@commitlint/cz-commitlint": "^17.7.2",
"@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",
"antlr-format-cli": "^1.2.1",
"antlr4ts-cli": "^0.5.0-alpha.4",
2023-10-09 17:43:41 +08:00
"chalk": "4.1.2",
"commitizen": "^4.3.0",
"glob": "^10.3.10",
"husky": "^8.0.3",
2023-08-31 13:21:41 +08:00
"inquirer": "^8.2.2",
2023-05-04 10:13:05 +08:00
"jest": "^29.5.0",
"lint-staged": "12.5.0",
"prettier": "^3.0.3",
2023-05-04 10:13:05 +08:00
"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.1.1",
"antlr4ts": "0.5.0-alpha.4"
},
"sideEffects": false
2018-07-02 18:01:01 +08:00
}