forked from olivierphi/Node-DBI
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.09 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
50
51
{
"name": "node-dbi",
"description": "A Database abstraction layer for Node.js, bundled with several DB engines adapters",
"version": "0.7.1",
"homepage": "https://github.com/DrBenton/Node-DBI",
"repository": {
"type": "git",
"url": "git://github.com/DrBenton/Node-DBI.git"
},
"authors": [
"Olivier Philippon (http://github.com/DrBenton)",
"Michael Dwyer (http://github.com/kalifg)",
"David Schoen <[email protected]>",
"Fabian Bornhofen (http://fabianbornhofen.blogspot.com)"
],
"main": "dbWrapper.js",
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {
"async": "",
"lodash": "~2.4.1"
},
"devDependencies": {
"mocha": "~1.17.0",
"chai": "~1.8.1",
"sqlite3": "~2.1.19",
"mysql": "~2.0.0",
"mysql-libmysqlclient": "~1.5.2",
"pg": "~2.11.0"
},
"scripts": {
"test": "mocha"
},
"keywords": [
"database",
"SQL",
"abstraction",
"common",
"mysql",
"sqlite",
"pg",
"postgres",
"postgresql"
],
"engines": {
"node": ">= 0.8"
},
"# vim: ts=2 sw=2 et ": null
}