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-pre",
"author": "TJ Holowaychuk <[email protected]>",
"contributors": [
{ "name": "TJ Holowaychuk", "email": "[email protected]" },
{ "name": "Aaron Heckmann", "email": "[email protected]" },
{ "name": "Ciaran Jessup", "email": "[email protected]" },
{ "name": "Guillermo Rauch", "email": "[email protected]" }
],
"dependencies": {
"connect": "2.0.3",
"commander": "0.5.2",
"mime": "1.2.5",
"mkdirp": "0.3.0",
"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" }
}