-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 778 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 778 Bytes
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
{
"name": "sqlbox",
"version": "0.3.2",
"description": "Simple non-joining, non-ORM SQL (Postgres, MySQL) database interface. Still Alpha.",
"main": "./lib/sqlbox",
"repository": {
"type": "git",
"url": "git://github.com/raycmorgan/sqlbox.git"
},
"dependencies": {
"sql": "~0.26.0",
"underscore": "~1.5.1",
"validator": "~1.4.0",
"async": "~0.2.9",
"pluralize": "0.0.5"
},
"peerDependencies": {
"any-db": "~1.0.0"
},
"devDependencies": {
"nodemon": "~0.7.8",
"mocha": "~1.12.0",
"expect.js": "~0.2.0",
"any-db-postgres": "~1.0.0",
"any-db-mysql": "~1.0.0"
},
"scripts": {
"test": "make test"
},
"engines": {
"node": ""
},
"keywords": ["mysql", "postgres", "database", "SQL", "ORM"]
}