forked from codeschool/sqlite-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.29 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.29 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
{
"name": "sqlite-parser",
"description": "JavaScript implentation of SQLite 3 query parser",
"author": "Code School (http://codeschool.com)",
"version": "0.12.3",
"contributors": [
"Nick Wronski <nick@javascript.com>"
],
"keywords": [
"sql",
"sqlite",
"parser",
"syntax",
"ast"
],
"main": "index.js",
"license": "MIT",
"files": [
"lib/",
"LICENSE",
"CHANGELOG.md",
"README.md",
"index.js"
],
"repository": "git@github.com:codeschool/sqlite-parser.git",
"bugs": {
"url": "https://github.com/codeschool/sqlite-parser/issues"
},
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"chai": "^3.4.1",
"codemirror": "^5.9.0",
"grunt": "^0.4.5",
"grunt-banner": "^0.6.0",
"grunt-browserify": "^4.0.1",
"grunt-contrib-clean": "^0.7.0",
"grunt-contrib-connect": "^0.11.2",
"grunt-contrib-copy": "^0.8.2",
"grunt-contrib-cssmin": "^0.14.0",
"grunt-contrib-uglify": "^0.11.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-replace": "^0.11.0",
"grunt-shell": "^1.1.2",
"load-grunt-tasks": "^3.3.0",
"lodash": "^3.10.1",
"mocha": "^2.3.4",
"pegjs": "git+https://github.com/dmajda/pegjs.git#master",
"prettyjson": "^1.1.3",
"promise": "^7.0.4"
},
"dependencies": {}
}