-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
53 lines (53 loc) · 1.78 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "antlr4ts-sql",
"version": "1.1.0",
"description": "Pre-built ANTL4 lexers and parsers for SQL: PostgreSQL, MySQL, SQL Server and Oracle (PL/SQL)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"antlr4ts-all": "npm run antlr4ts-mysql && npm run antlr4ts-plsql && npm run antlr4ts-tsql",
"antlr4ts-mysql": "antlr4ts -Xexact-output-dir -o src/grammar-output/mysql -package parsers src/grammars/mysql/MySQLLexer.g4 src/grammars/mysql/MultiQueryMySQLParser.g4",
"antlr4ts-plsql": "antlr4ts -Xexact-output-dir -o src/grammar-output/plsql -package parsers src/grammars/plsql/PlSqlLexer.g4 src/grammars/plsql/PlSqlParser.g4",
"antlr4ts-plpgsql": "antlr4ts -Xexact-output-dir -o src/grammar-output/plpgsql -package parsers src/grammars/plpgsql/PLpgSQLLexer.g4 src/grammars/plpgsql/PLpgSQLParser.g4",
"antlr4ts-tsql": "antlr4ts -Xexact-output-dir -o src/grammar-output/tsql -package parsers src/grammars/tsql/TSqlLexer.g4 src/grammars/tsql/TSqlParser.g4",
"build": "tsc --build --clean && tsc",
"test": "npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/modeldba/antlr4ts-sql.git"
},
"keywords": [
"sql",
"antlr4",
"parser",
"lexer",
"postgresql",
"mysql",
"sqlserver",
"oracle",
"database",
"plpgsql",
"plsql",
"tsql"
],
"author": "modelDBA",
"license": "MIT",
"bugs": {
"url": "https://github.com/modeldba/antlr4ts-sql/issues"
},
"homepage": "https://modeldba.com/antlr4ts-sql/",
"dependencies": {
"antlr4ts": "^0.5.0-alpha.4"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"antlr4ts-cli": "^0.5.0-alpha.4",
"jest": "^26.6.3",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3"
}
}