-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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
{
"name": "sql-where-parser",
"version": "2.2.1",
"description": "Parses an SQL-like WHERE string into various forms.",
"main": "SqlWhereParser.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha --recursive",
"document": "./node_modules/mocha/bin/mocha --recursive --reporter=markdown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shaunpersad/sql-where-parser.git"
},
"keywords": [
"SQL",
"parser",
"WHERE",
"AST",
"abstract",
"syntax",
"tree",
"convert",
"mongo",
"elasticsearch"
],
"author": "Shaun Persad <[email protected]> (http://github.com/shaunpersad)",
"license": "MIT",
"bugs": {
"url": "https://github.com/shaunpersad/sql-where-parser/issues"
},
"homepage": "https://github.com/shaunpersad/sql-where-parser#readme",
"devDependencies": {
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-uglify": "^2.0.0",
"mocha": "^3.2.0",
"should": "^11.1.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"es6-symbol": "^3.1.0",
"tokenize-this": "^1.4.0"
}
}