Files
express/package.json

72 lines
1.4 KiB
JSON
Raw Normal View History

2010-03-16 08:31:33 -07:00
{
2010-06-15 13:50:17 -07:00
"name": "express",
2010-03-16 08:31:33 -07:00
"description": "Sinatra inspired web development framework",
2013-10-15 18:28:49 -07:00
"version": "3.4.1",
"author": "TJ Holowaychuk <tj@vision-media.ca>",
2012-11-21 08:46:36 -08:00
"contributors": [
2013-02-13 10:55:55 -08:00
{
"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"
}
2010-06-10 21:21:32 -04:00
],
2011-02-03 20:19:32 -08:00
"dependencies": {
2013-10-15 18:28:49 -07:00
"connect": "2.9.1",
"commander": "2.0.0",
2012-06-17 18:06:04 -07:00
"range-parser": "0.0.4",
"mkdirp": "0.3.5",
2013-05-01 15:25:14 -04:00
"cookie": "0.1.0",
2013-04-26 13:12:33 -07:00
"buffer-crc32": "0.2.1",
2013-08-11 07:49:15 +10:00
"fresh": "0.2.0",
2012-06-26 11:38:55 -07:00
"methods": "0.0.1",
2013-08-11 07:49:15 +10:00
"send": "0.1.4",
"cookie-signature": "1.0.1",
2013-05-07 07:58:54 -07:00
"debug": "*"
2011-02-03 20:19:32 -08:00
},
2011-05-20 08:28:02 -07:00
"devDependencies": {
2011-12-09 15:55:41 -08:00
"ejs": "*",
2011-11-23 10:39:02 -08:00
"mocha": "*",
2013-06-11 12:24:17 -07:00
"jade": "0.30.0",
"hjs": "*",
2011-12-09 15:55:41 -08:00
"stylus": "*",
2013-10-14 18:35:46 -07:00
"should": "2",
2012-02-18 13:54:36 -08:00
"connect-redis": "*",
"marked": "*",
2013-04-16 06:49:56 -07:00
"supertest": "0.6.0"
2011-05-20 08:35:11 -07:00
},
2012-07-13 09:00:26 -07:00
"keywords": [
"express",
"framework",
"sinatra",
"web",
"rest",
"restful",
"router",
"app",
"api"
],
2011-03-27 14:23:43 -07:00
"repository": "git://github.com/visionmedia/express",
2011-02-03 20:19:32 -08:00
"main": "index",
2013-02-13 10:55:55 -08:00
"bin": {
"express": "./bin/express"
},
2012-01-09 02:03:23 +01:00
"scripts": {
2013-02-13 10:55:55 -08:00
"prepublish": "npm prune",
2012-01-09 02:03:23 +01:00
"test": "make test"
},
2013-02-13 10:55:55 -08:00
"engines": {
"node": "*"
}
2012-01-09 02:03:23 +01:00
}