7c75164449
* docs: change authours field * docs: upgrade docs
66 lines
1.8 KiB
JSON
66 lines
1.8 KiB
JSON
{
|
|
"name": "dt-sql-parser",
|
|
"version": "4.0.0-beta.4.7",
|
|
"authors": "DTStack Corporation",
|
|
"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": {
|
|
"prepare": "husky install",
|
|
"prepublishOnly": "npm run build",
|
|
"antlr4": "node ./scripts/antlr4.js",
|
|
"build": "rm -rf dist && tsc",
|
|
"check-types": "tsc -p ./tsconfig.check.json",
|
|
"test": "NODE_OPTIONS=--max_old_space_size=4096 && jest",
|
|
"release": "node ./scripts/release.js",
|
|
"lint": "prettier --check '**/*.ts' --config ./.prettierrc",
|
|
"lint-fix": "prettier --write '**/*.ts' --config ./.prettierrc",
|
|
"cleanComment": "node ./scripts/cleanCommentCli.js"
|
|
},
|
|
"license": "MIT",
|
|
"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",
|
|
"@types/jest": "^29.5.1",
|
|
"@types/node": "^18.15.11",
|
|
"antlr4ts-cli": "^0.5.0-alpha.4",
|
|
"chalk": "4.1.2",
|
|
"commitizen": "^4.3.0",
|
|
"glob": "^10.3.10",
|
|
"husky": "^8.0.3",
|
|
"inquirer": "^8.2.2",
|
|
"jest": "^29.5.0",
|
|
"lint-staged": "12.5.0",
|
|
"prettier": "^3.0.3",
|
|
"standard-version": "^9.5.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-c3": "3.1.1",
|
|
"antlr4ts": "0.5.0-alpha.4"
|
|
},
|
|
"sideEffects": false
|
|
}
|