forked from florajs/sql-parser
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.47 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.47 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
65
{
"name": "flora-sql-parser",
"version": "0.8.1",
"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",
"test": "npm run lint && mocha",
"lint": "npm run build && eslint .",
"prepublishOnly": "npm run build"
},
"pre-commit": "test",
"keywords": [
"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",
"README.md",
"LICENSE"
],
"license": "MIT",
"repository": "godmodelabs/flora-sql-parser",
"homepage": "https://github.com/godmodelabs/flora-sql-parser",
"engines": {
"node": ">=8"
},
"dependencies": {
"flora-errors": "^0.9.0",
"has": "^1.0.3"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"eslint": "^5.8.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.0",
"mocha": "^5.2.0",
"pegjs": "^0.10.0",
"pre-commit": "^1.2.2",
"prettier": "^1.15.2"
}
}