-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.36 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.36 KB
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
54
55
56
57
58
59
60
{
"name": "@florajs/sql-parser",
"version": "4.0.0",
"description": "Parse SQL (select) statements into abstract syntax tree (AST) and convert ASTs back to SQL.",
"main": "index.js",
"scripts": {
"prepare": "git config --local core.hooksPath .githooks",
"build": "mkdir -p dist && peggy -o dist/parser.js sql.pegjs",
"pretest": "npm run build",
"test": "node --test test/**/*.spec.js",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"prepack": "npm run build"
},
"keywords": [
"florajs",
"sql",
"parser",
"ast"
],
"author": {
"name": "stock3 AG",
"email": "it@stock3.com"
},
"contributors": [
{
"name": "Marco Baumgartl",
"email": "marco.baumgartl@stock3.com"
},
{
"name": "Nico Kaiser",
"email": "nico.kaiser@stock3.com"
},
{
"name": "Mark Plomer",
"email": "mark.plomer@stock3.com"
}
],
"files": [
"index.js",
"lib/",
"dist/parser.js"
],
"license": "GPL-2.0",
"repository": "florajs/sql-parser",
"homepage": "https://github.com/florajs/sql-parser",
"engines": {
"node": ">=20"
},
"dependencies": {
"@florajs/errors": "^4.0.0"
},
"devDependencies": {
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"peggy": "^5.0.6",
"prettier": "^3.6.2"
}
}