-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 788 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 788 Bytes
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
{
"name": "sqljs",
"version": "0.0.0-6",
"description": "SQL parser",
"keywords": [
"database",
"sql"
],
"author": "Pavel Lang <langpavel@phpskelet.org> (https://github.com/sqljs)",
"homepage": "https://github.com/sqljs/node-sqljs",
"repository": {
"type": "git",
"url": "https://github.com/sqljs/node-sqljs.git"
},
"bugs": {
"url": "https://github.com/sqljs/node-sqljs/issues"
},
"main": "./lib/sqljs",
"bin": {
"sqljs": "./bin/sqljs"
},
"scripts": {
"test": "make test"
},
"dependencies": {
"colors": "^1.0.3",
"commander": "^2.7.1"
},
"devDependencies": {
"browserify": "^10.2.4",
"nodeunit": "^0.9.1",
"pegjs": "^0.7.0"
},
"optionalDependencies": {},
"engines": {
"node": ">=0.6.0"
}
}