forked from florajs/sql-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.42 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.42 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
61
62
63
64
{
"name": "@florajs/sql-parser",
"version": "2.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": "mocha --recursive",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"prepack": "npm run build"
},
"pre-commit": "test",
"keywords": [
"florajs",
"sql",
"parser",
"ast"
],
"author": {
"name": "BörseGo AG",
"email": "it@boerse-go.de"
},
"contributors": [
{
"name": "Marco Baumgartl",
"email": "marco.baumgartl@boerse-go.de"
},
{
"name": "Nico Kaiser",
"email": "nico.kaiser@boerse-go.de"
},
{
"name": "Mark Plomer",
"email": "mark.plomer@boerse-go.de"
}
],
"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": ">=12"
},
"dependencies": {
"@florajs/errors": "^3.0.0",
"has": "^1.0.3"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.3",
"pegjs": "^0.10.0",
"pre-commit": "^1.2.2",
"prettier": "^2.5.1"
}
}