forked from jaredhanson/locomotive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 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
{
"name": "locomotive",
"version": "0.3.5",
"description": "Powerful MVC web framework for Node.js.",
"author": { "name": "Jared Hanson", "email": "[email protected]", "url": "http://www.jaredhanson.net/" },
"homepage": "http://locomotivejs.org/",
"repository": {
"type": "git",
"url": "git://github.com/jaredhanson/locomotive.git"
},
"bugs": {
"url": "http://github.com/jaredhanson/locomotive/issues"
},
"main": "./lib/locomotive",
"bin" : { "lcm" : "./bin/lcm.js" },
"dependencies": {
"pkginfo": "0.2.x",
"commander": "1.x.x",
"mkdirp": "0.3.x",
"diveSync": "0.2.0",
"express": "3.x.x",
"methods": "0.0.1",
"async": "0.1.x",
"lingo": "0.0.x",
"debug": "0.7.x"
},
"devDependencies": {
"vows": "0.6.x"
},
"scripts": {
"test": "NODE_PATH=lib node_modules/.bin/vows test/*-test.js test/**/*-test.js test/**/**/*-test.js"
},
"engines": { "node": ">= 0.6.0" },
"licenses": [ {
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
} ],
"keywords": ["express", "connect", "web", "mvc", "rails"]
}