forked from expressjs/express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (37 loc) · 1.08 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
{
"name": "express",
"description": "Sinatra inspired web development framework",
"version": "3.0.0alpha1",
"author": "TJ Holowaychuk <tj@vision-media.ca>",
"contributors": [
{ "name": "TJ Holowaychuk", "email": "tj@vision-media.ca" },
{ "name": "Aaron Heckmann", "email": "aaron.heckmann+github@gmail.com" },
{ "name": "Ciaran Jessup", "email": "ciaranj@gmail.com" },
{ "name": "Guillermo Rauch", "email": "rauchg@gmail.com" }
],
"dependencies": {
"connect": "2.1.2",
"commander": "0.5.2",
"mime": "1.2.5",
"mkdirp": "0.3.1",
"debug": "*"
},
"devDependencies": {
"ejs": "*",
"mocha": "*",
"jade": "*",
"stylus": "*",
"should": "*",
"connect-redis": "*",
"github-flavored-markdown": "*"
},
"keywords": ["express", "framework", "sinatra", "web", "rest", "restful", "router"],
"repository": "git://github.com/visionmedia/express",
"main": "index",
"bin": { "express": "./bin/express" },
"scripts": {
"prepublish" : "npm prune",
"test": "make test"
},
"engines": { "node":">= 0.5.0 < 0.7.0" }
}