forked from expressjs/express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (55 loc) · 1.3 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "express",
"description": "Sinatra inspired web development framework",
"version": "3.0.0rc1",
"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.4.2",
"commander": "0.6.1",
"range-parser": "0.0.4",
"mkdirp": "0.3.3",
"cookie": "0.0.4",
"crc": "0.2.0",
"fresh": "0.1.0",
"methods": "0.0.1",
"send": "0.0.3",
"debug": "*"
},
"devDependencies": {
"ejs": "*",
"mocha": "*",
"jade": "*",
"hjs": "*",
"stylus": "*",
"should": "*",
"connect-redis": "*",
"github-flavored-markdown": "*",
"supertest": "0.0.1"
},
"keywords": [
"express",
"framework",
"sinatra",
"web",
"rest",
"restful",
"router",
"app",
"api"
],
"publishConfig": { "tag": "3.0" },
"repository": "git://github.com/visionmedia/express",
"main": "index",
"bin": { "express": "./bin/express" },
"scripts": {
"prepublish" : "npm prune",
"test": "make test"
},
"engines": { "node": "*" }
}