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
61 lines (61 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.46 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
{
"name": "flora-sql-parser",
"version": "0.7.3",
"description": "Parse SQL (select) statements into abstract syntax tree (AST) and convert ASTs back to SQL.",
"main": "index.js",
"scripts": {
"install": "./node_modules/.bin/pegjs -o pegjs-parser.js sql.pegjs",
"test": "./node_modules/.bin/grunt test",
"lint": "grunt lint"
},
"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"
}
],
"license": "MIT",
"repository": "godmodelabs/flora-sql-parser",
"homepage": "https://github.com/godmodelabs/flora-sql-parser",
"engines": {
"node": ">=6"
},
"dependencies": {
"flora-errors": "^0.7.0",
"has": "^1.0.1",
"pegjs": "^0.10.0"
},
"devDependencies": {
"chai": "^3.4.1",
"eslint": "^3.11.1",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-eslint": "^19.0.0",
"grunt-exec": "^1.0.0",
"grunt-mocha-istanbul": "^5.0.1",
"grunt-mocha-test": "^0.13.2",
"istanbul": "^0.4.2",
"load-grunt-tasks": "^3.4.0",
"mocha": "^3.0.0",
"mocha-bamboo-reporter": "^1.1.0"
}
}