forked from martintajur/node-mysql-activerecord
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.13 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
{
"name": "node-querybuilder",
"version": "2.1.0",
"author": "Kyle Farris <kyle@chomponllc.com>",
"description": "Modeled after Codeigniter's QueryBuilder. Build and execute queries in a safe and database-agnostic way.",
"keywords": [
"nodejs",
"node",
"mysql",
"active record",
"activerecord",
"querybuilder",
"query builder",
"codeigniter",
"postgres",
"mssql",
"mongo",
"sqlite",
"translator"
],
"bugs": "https://github.com/kylefarris/node-querybuilder/issues",
"scripts": {
"test": "make test"
},
"homepage": "http://kylefarris.github.io/node-querybuilder/",
"repository": {
"type": "git",
"url": "git@github.com:kylefarris/node-querybuilder.git"
},
"contributors": [
"Martin Tajur <martin@tajur.ee>",
"Daniel Bretoi <daniel@bretoi.com>",
"Daehyub Kim <lateau@gmail.com>"
],
"dependencies": {
"mysql": "^2.10.1",
"tedious": "^2.6.3",
"tedious-connection-pool": "^1.0.5",
"tsqlstring": "^1.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "*"
},
"main": "index.js",
"engines": {
"node": ">=8.0"
}
}