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
62 lines (62 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.62 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
{
"name": "sqlite-parser",
"description": "JavaScript implentation of SQLite 3 query parser",
"author": "Code School (http://codeschool.com)",
"version": "0.14.3",
"contributors": [
"Nick Wronski <nick@javascript.com>"
],
"keywords": [
"sql",
"sqlite",
"parser",
"syntax",
"ast"
],
"main": "dist/sqlite-parser-min.js",
"license": "MIT",
"files": [
"dist/",
"LICENSE",
"CHANGELOG.md",
"README.md"
],
"repository": "git@github.com:codeschool/sqlite-parser.git",
"bugs": {
"url": "https://github.com/codeschool/sqlite-parser/issues"
},
"scripts": {
"test": "grunt test",
"build": "grunt dist",
"preversion": "npm test",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"bluebird": "^3.3.4",
"chai": "^3.5.0",
"codemirror": "^5.12.0",
"grunt": "^0.4.5",
"grunt-banner": "^0.6.0",
"grunt-browserify": "^5.0.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.0",
"grunt-contrib-connect": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^1.0.0",
"grunt-contrib-uglify": "^1.0.0",
"pegjs": "git+https://github.com/nwronski/pegjs.git#master",
"grunt-contrib-watch": "^0.6.1",
"grunt-replace": "^0.11.0",
"grunt-shell": "^1.2.1",
"load-grunt-tasks": "^3.4.1",
"lodash": "^4.6.1",
"mocha": "^2.4.5",
"prettyjson": "^1.1.3"
},
"dependencies": {}
}