Files
express/package.json

73 lines
1.5 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-12-10 23:57:39 -08:00
"version": "3.4.7",
"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-12-10 23:54:07 -08:00
"connect": "2.12.0",
2013-10-17 12:57:39 -07:00
"commander": "1.3.2",
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",
2013-10-28 12:02:24 -07:00
"methods": "0.1.0",
2013-08-11 07:49:15 +10:00
"send": "0.1.4",
"cookie-signature": "1.0.1",
"merge-descriptors": "0.0.1",
"debug": ">= 0.7.3 < 1"
2011-02-03 20:19:32 -08:00
},
2011-05-20 08:28:02 -07:00
"devDependencies": {
"ejs": "~0.8.4",
2013-12-10 23:54:07 -08:00
"mocha": "~1.15.1",
"jade": "~0.30.0",
"hjs": "~0.0.6",
"stylus": "~0.40.0",
2013-12-10 23:54:07 -08:00
"should": "~2.1.1",
"connect-redis": "~1.4.5",
"marked": "0.2.10",
"supertest": "~0.8.1"
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": ">= 0.8.0"
2013-02-13 10:55:55 -08:00
}
2012-01-09 02:03:23 +01:00
}