-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
62 lines (62 loc) · 1.38 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
54
55
56
57
58
59
60
61
62
{
"name": "@florajs/sql-parser",
"version": "3.0.0",
"description": "Parse SQL (select) statements into abstract syntax tree (AST) and convert ASTs back to SQL.",
"main": "index.js",
"scripts": {
"build": "mkdir -p build && pegjs -o build/pegjs-parser.js sql.pegjs",
"pretest": "npm run build",
"test": "node --test test/**/*.spec.js",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"prepack": "npm run build"
},
"pre-commit": "test",
"keywords": [
"florajs",
"sql",
"parser",
"ast"
],
"author": {
"name": "stock3 AG",
"email": "[email protected]"
},
"contributors": [
{
"name": "Marco Baumgartl",
"email": "[email protected]"
},
{
"name": "Nico Kaiser",
"email": "[email protected]"
},
{
"name": "Mark Plomer",
"email": "[email protected]"
}
],
"files": [
"index.js",
"lib/",
"build/pegjs-parser.js"
],
"license": "GPL-2.0",
"repository": "florajs/sql-parser",
"homepage": "https://github.com/florajs/sql-parser",
"engines": {
"node": ">=18"
},
"dependencies": {
"@florajs/errors": "^4.0.0",
"has": "^1.0.3"
},
"devDependencies": {
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.0.0",
"pegjs": "^0.10.0",
"pre-commit": "^1.2.2",
"prettier": "^3.0.1"
}
}