Files
express/package.json

73 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-05-07 07:55:06 -07:00
"version": "3.2.3",
"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-05-07 07:54:48 -07:00
"connect": "2.7.9",
2012-06-01 12:24:17 -07:00
"commander": "0.6.1",
2012-06-17 18:06:04 -07:00
"range-parser": "0.0.4",
2013-04-26 13:12:33 -07:00
"mkdirp": "0.3.4",
2012-11-13 09:12:32 -08:00
"cookie": "0.0.5",
2013-04-26 13:12:33 -07:00
"buffer-crc32": "0.2.1",
2012-06-15 16:07:27 -07:00
"fresh": "0.1.0",
2012-06-26 11:38:55 -07:00
"methods": "0.0.1",
2012-09-19 11:37:46 -07:00
"send": "0.1.0",
"cookie-signature": "1.0.1",
2013-04-26 13:12:33 -07:00
"debug": "*",
2013-05-07 07:54:48 -07:00
"qs": "0.6.4"
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": "*",
2011-12-09 15:55:41 -08:00
"jade": "*",
"hjs": "*",
2011-12-09 15:55:41 -08:00
"stylus": "*",
"should": "*",
2012-02-18 13:54:36 -08:00
"connect-redis": "*",
2012-06-26 17:14:07 -07:00
"github-flavored-markdown": "*",
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
}