-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
executable file
·44 lines (44 loc) · 1.06 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
{
"name": "sql-builder",
"preferGlobal": "false",
"version": "0.0.5beta",
"author": {
"email": "serg4172@mail.ru",
"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": "Pavel Sapachev",
"email": "pavel@sapachev.com"
}
],
"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"
}
}