-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "sql-surveyor",
"version": "1.4.1",
"description": "High-level SQL parser. Identify tables, columns, aliases and more from your SQL script in one easy to consume object. Supports PostgreSQL, MySQL, SQL Server and Oracle (PL/SQL) dialects.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --build --clean && tsc",
"parsetest": "npx ts-node parse.ts",
"test": "npx jest",
"cleantest": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/modeldba/sql-surveyor.git"
},
"keywords": [
"sql",
"parser",
"database",
"postgresql",
"mysql",
"sqlserver",
"oracle",
"plpgsql",
"plsql",
"tsql"
],
"author": "modelDBA",
"license": "MIT",
"bugs": {
"url": "https://github.com/modeldba/sql-surveyor/issues"
},
"homepage": "https://modeldba.com/sql-surveyor",
"dependencies": {
"antlr4ts-sql": "^1.1.0"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}