Files
express/package.json

81 lines
2.2 KiB
JSON
Raw Normal View History

2010-03-16 08:31:33 -07:00
{
2010-06-15 13:50:17 -07:00
"name": "express",
"description": "Fast, unopinionated, minimalist web framework",
2014-07-12 22:11:48 -04:00
"version": "4.6.1",
"author": "TJ Holowaychuk <tj@vision-media.ca>",
2012-11-21 08:46:36 -08:00
"contributors": [
"Aaron Heckmann <aaron.heckmann+github@gmail.com>",
"Ciaran Jessup <ciaranj@gmail.com>",
"Douglas Christopher Wilson <doug@somethingdoug.com>",
"Guillermo Rauch <rauchg@gmail.com>",
"Jonathan Ong <me@jongleberry.com>",
"Roman Shtylman <shtylman+expressjs@gmail.com>",
"Young Jae Sim <hanul@hanul.me>"
2010-06-10 21:21:32 -04:00
],
2014-05-18 01:16:38 -04:00
"keywords": [
"express",
"framework",
"sinatra",
"web",
"rest",
"restful",
"router",
"app",
"api"
],
"repository": "visionmedia/express",
2014-05-18 01:16:38 -04:00
"license": "MIT",
2011-02-03 20:19:32 -08:00
"dependencies": {
2014-07-04 12:51:44 -04:00
"accepts": "~1.0.7",
2014-06-20 00:35:38 -04:00
"buffer-crc32": "0.2.3",
2014-07-16 20:44:17 -04:00
"debug": "1.0.4",
2014-07-22 23:52:44 -04:00
"depd": "0.4.2",
2014-06-03 00:37:32 -04:00
"escape-html": "1.0.1",
2014-07-16 20:47:24 -04:00
"finalhandler": "0.1.0",
"media-typer": "0.2.0",
2014-07-10 23:06:15 -04:00
"methods": "1.1.0",
2014-07-22 23:53:50 -04:00
"parseurl": "~1.2.0",
"path-to-regexp": "0.1.3",
2014-06-03 17:25:20 -04:00
"proxy-addr": "1.0.1",
"range-parser": "1.0.0",
2014-07-22 23:55:17 -04:00
"send": "0.7.0",
2014-07-23 14:56:27 -04:00
"serve-static": "~1.4.0",
2014-06-24 21:18:12 -04:00
"type-is": "~1.3.2",
"vary": "0.1.0",
2014-04-24 16:21:22 -04:00
"cookie": "0.1.2",
2014-02-19 15:29:39 -08:00
"fresh": "0.2.2",
2014-06-26 20:25:20 -04:00
"cookie-signature": "1.0.4",
2014-01-29 20:01:10 -05:00
"merge-descriptors": "0.0.2",
2014-02-04 10:10:56 -05:00
"qs": "0.6.6",
"utils-merge": "1.0.0"
2011-02-03 20:19:32 -08:00
},
2011-05-20 08:28:02 -07:00
"devDependencies": {
2014-05-18 16:33:11 -04:00
"after": "0.8.1",
2014-07-10 22:57:08 -04:00
"istanbul": "0.3.0",
2014-06-09 20:24:36 -04:00
"mocha": "~1.20.1",
"should": "~4.0.4",
2014-05-30 22:50:22 -04:00
"supertest": "~0.13.0",
2014-04-24 17:05:20 -04:00
"connect-redis": "~2.0.0",
"ejs": "~1.0.0",
"marked": "0.3.2",
"hjs": "~0.0.6",
2014-07-23 13:04:07 -04:00
"body-parser": "~1.5.0",
2014-06-20 16:43:04 -04:00
"cookie-parser": "~1.3.1",
2014-07-23 13:04:07 -04:00
"express-session": "~1.7.0",
2014-07-23 14:01:44 -04:00
"jade": "~1.5.0",
2014-07-11 22:46:25 -04:00
"method-override": "~2.1.1",
2014-07-23 13:04:07 -04:00
"morgan": "~1.2.0",
"multiparty": "~3.3.1",
2014-06-09 20:36:58 -04:00
"vhost": "2.0.0"
2011-05-20 08:35:11 -07:00
},
2013-02-13 10:55:55 -08:00
"engines": {
"node": ">= 0.10.0"
},
2012-01-09 02:03:23 +01:00
"scripts": {
2013-02-13 10:55:55 -08:00
"prepublish": "npm prune",
2014-05-18 01:13:12 -04:00
"test": "mocha --require test/support/env --reporter dot --check-leaks test/ test/acceptance/",
2014-05-18 01:20:39 -04:00
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/ test/acceptance/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/ test/acceptance/"
2014-05-18 01:16:38 -04:00
}
2012-01-09 02:03:23 +01:00
}