-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 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
{
"author": "Nathan A Sculli <nathan.sculli@kapinko.com> (nathansculli.com)",
"name": "ExpressMVC",
"description": "An MVC framework that should be familiar tenough to PHP developers to allow them to get up and running very quickly.\"",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "git://github.com/Kapinko/ExpressMVC.git"
},
"keywords": [
"mvc",
"framework"
],
"main": "lib/mvc.js",
"engines": {
"node": "0.6.x"
},
"dependencies": {
"async": ">= 0.1.15",
"log": ">= 1.2.0",
"redis": ">= 0.7.1",
"express": ">= 2.5.6",
"express-namespace": ">= 0.0.4",
"express-validator": ">= 0.1.1",
"express-form": ">= 0.6.2",
"connect-redis": ">= 1.2.0",
"generic-pool": ">= 1.0.7",
"db-mysql": ">= 0.7.5",
"pg": ">= 0.6.7",
"mongodb": ">= 0.9.7",
"underscore": ">= 1.2.1",
"underscore.string": ">= 1.1.6",
"moment": ">= 1.1.0",
"xml2js": ">= 0.1.11",
"hbs": ">= 1.0.0",
"uquery": ">= 0.0.1",
"winston": ">= 0.5.9",
"request": ">= 2.9.3"
},
"devDependencies": {
"mocha": ">= 0.9.0",
"should": ">= 0.5.0"
}
}