-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.14 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": "warehousejs",
"version": "0.3.0",
"description": "Warehouse.js is a data storage layer node.js and browser providing unified API for many supported storage engines (MongoDB, MySQL, SQLite, in-memory and others). You can create REST server or client with only few lines of code.",
"keywords": [
"database",
"db",
"storage",
"mongodb",
"mysql",
"sqlite",
"rest",
"rql"
],
"homepage": "http://github.com/dundalek/warehouse",
"author": "Jakub Dundalek <dundalek@gmail.com> (http://dundalek.com/)",
"repository": {
"type": "git",
"url": "http://github.com/dundalek/warehouse.git"
},
"dependencies": {
"q": "~0.9.7",
"underscore": "~1.5.2",
"express": "~3.4.0",
"underscore-data": "git://github.com/dundalek/underscore-data.git"
},
"devDependencies": {
"qunit": "~0.5.16",
"shelljs": "~0.2.6",
"jsdoc": "~3.2.1"
},
"optionalDependencies": {
"request": "~2.27.0",
"mongodb": "~1.3.19",
"persist": "~0.2.7",
"mysql": "~0.9.6",
"sqlite3": "~2.1.17",
"nedb": "~0.8.9"
},
"directories": {
"lib": "./lib"
},
"main": "./lib/index.js"
}