forked from geddy/model
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 804 Bytes
/
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": "model",
"description": "Datastore-agnostic ORM in JavaScript",
"keywords": [
"model",
"orm",
"relation",
"data",
"mapper",
"validation",
"postgresql",
"postgres",
"mysql",
"riak",
"mongo",
"mongodb",
"leveldb",
"sqlite"
],
"version": "0.5.16",
"author": "Matthew Eernisse <[email protected]> (http://fleegix.org)",
"main": "./lib/index.js",
"scripts": {
"test": "jake test --trace"
},
"repository": {
"type": "git",
"url": "git://github.com/geddy/model.git"
},
"dependencies": {
"utilities": "0.0.x"
},
"devDependencies": {
"jake": "0.7.x",
"mongodb": "1.x",
"pg": "2.5.x",
"mysql": "2.0.x",
"level": "0.17.x",
"sqlite3": "2.1.x"
},
"engines": {
"node": "*"
}
}