-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 892 Bytes
/
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
{
"name": "@hackolade/sql-select-statement-parser",
"version": "0.0.21",
"description": "",
"main": "index.js",
"author": "Hackolade",
"license": "ISC",
"dependencies": {
"antlr4": "4.9.2"
},
"devDependencies": {
"eslint": "9.2.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"globals": "^15.2.0",
"lint-staged": "14.0.1",
"mocha": "^10.4.0",
"prettier": "3.2.5",
"simple-git-hooks": "2.11.1"
},
"scripts": {
"lint": "eslint . --max-warnings=0",
"test": "mocha",
"build:grammar": "antlr4 -Dlanguage=JavaScript -lib grammars -o parser -no-visitor -listener -Xexact-output-dir grammars/SQLSelectParser.g4 grammars/SQLSelectLexer.g4"
},
"lint-staged": {
"*.{js,json}": "prettier --write"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"pre-push": "npx eslint ."
}
}