forked from codeschool/sqlite-parser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.76 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "sqlite-parser",
"description": "JavaScript implentation of SQLite 3 query parser",
"author": "Code School (http://codeschool.com)",
"version": "1.0.1",
"contributors": [
"Nick Wronski <[email protected]>"
],
"keywords": [
"sql",
"sqlite",
"parser",
"syntax",
"ast"
],
"main": "lib/index.js",
"bin": {
"sqlite-parser": "bin/sqlite-parser"
},
"map": {
"./lib/streaming.js": {
"browser": "./lib/streaming-shim.js"
}
},
"browser": "dist/sqlite-parser.js",
"scripts": {
"test": "grunt test",
"build": "grunt release"
},
"engines": {
"node": ">=4"
},
"license": "MIT",
"files": [
"dist/",
"bin/",
"lib/",
"LICENSE",
"CHANGELOG.md",
"README.md"
],
"repository": "[email protected]:codeschool/sqlite-parser.git",
"bugs": {
"url": "https://github.com/codeschool/sqlite-parser/issues"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.16.0",
"bluebird": "^3.4.6",
"chai": "^3.5.0",
"codemirror": "^5.19.0",
"glob": "^7.1.0",
"grunt": "^1.3.0",
"grunt-babel": "^6.0.0",
"grunt-banner": "^0.6.0",
"grunt-browserify": "^5.0.0",
"grunt-cli": "^1.2.0",
"grunt-concurrent": "^2.3.1",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-connect": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^1.0.2",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-replace": "^1.0.1",
"grunt-shell": "^2.0.0",
"load-grunt-tasks": "^3.5.2",
"lodash": "^4.16.2",
"mocha": "^3.1.0",
"pegjs": "git+https://github.com/nwronski/pegjs.git#master",
"prettyjson": "^1.1.3"
}
}