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

48 lines
1.2 KiB
JSON
Raw Normal View History

2018-07-02 18:01:01 +08:00
{
"name": "dt-sql-parser",
2022-12-30 17:42:50 +08:00
"version": "4.0.0-beta.3.1",
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",
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",
2021-01-05 18:47:50 +08:00
"test": "jest",
"release": "npm run build && 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": {
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",
2022-12-15 18:19:46 +08:00
"typescript": "^4.9.4",
"standard-version": "^9.1.0"
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": {
2020-11-25 19:50:57 +08:00
"@types/antlr4": "4.7.0",
"antlr4": "4.7.2"
2019-09-25 15:43:36 +08:00
}
2018-07-02 18:01:01 +08:00
}