forked from Serhioromano/node-sql-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·44 lines (44 loc) · 1.05 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
{
"name": "sql-builder",
"preferGlobal": "false",
"version": "0.0.4beta",
"author": {
"email": "[email protected]",
"name": "Sergey Romanov",
"url": "http://www.facebook.com/serhioromano"
},
"description": "Adapter based SQL query string builder. Get total control over constructing you SQL queries. Quickly create adapter for your favorit DB (MySQL adapter included). Set where condition, and delete it later if your app changed its mind :).",
"contributors": [
{
"name": "May be you?",
"email": "[email protected]"
}
],
"main": "./index",
"repository": {
"type": "git",
"url": "git://github.com/Serhioromano/node-sql-builder.git"
},
"keywords": [
"sql",
"mysql",
"query-string-builder",
"query-builder",
"sql-string-builder",
"sql-builder",
"sql-constructor",
"query-constructor"
],
"analyze": true,
"license": "MIT",
"engines": {
"node": "*"
},
"dependencies" : {
"underscore" : "1.4.x",
"colors" : "0.6.x"
},
"config": {
"adapter" : "mysql"
}
}