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",
2010-03-16 08:31:33 -07:00
"description": "Sinatra inspired web development framework",
2015-07-06 00:53:25 -04:00
"version": "3.21.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"
2010-06-10 21:21:32 -04:00
],
"license": "MIT",
"repository": "strongloop/express",
"homepage": "http://expressjs.com/",
2014-05-18 01:16:38 -04:00
"keywords": [
"express",
"framework",
"sinatra",
"web",
"rest",
"restful",
"router",
"app",
"api"
],
2011-02-03 20:19:32 -08:00
"dependencies": {
2015-07-06 00:39:42 -04:00
"basic-auth": "~1.0.3",
2015-07-06 00:38:10 -04:00
"connect": "2.30.1",
2014-10-17 21:08:05 -04:00
"content-disposition": "0.5.0",
"content-type": "~1.0.1",
2015-01-08 22:23:04 -05:00
"commander": "2.6.0",
2015-06-18 20:35:56 -04:00
"cookie": "0.1.3",
2015-02-17 22:40:51 -05:00
"cookie-signature": "1.0.6",
2015-05-17 23:54:59 -04:00
"debug": "~2.2.0",
2015-05-17 23:38:35 -04:00
"depd": "~1.0.1",
2015-06-18 20:36:48 -04:00
"escape-html": "1.0.2",
2015-06-18 20:54:26 -04:00
"etag": "~1.7.0",
2015-06-18 20:56:48 -04:00
"fresh": "0.3.0",
2015-03-17 00:23:23 -04:00
"merge-descriptors": "1.0.0",
2015-01-08 21:31:32 -05:00
"methods": "~1.1.1",
2015-06-17 01:21:20 -04:00
"mkdirp": "0.5.1",
2014-08-10 22:19:10 -04:00
"parseurl": "~1.3.0",
2015-05-17 21:04:02 -04:00
"proxy-addr": "~1.0.8",
2014-09-08 22:47:54 -04:00
"range-parser": "~1.0.2",
2015-06-18 20:56:03 -04:00
"send": "0.13.0",
"utils-merge": "1.0.0",
2015-03-17 00:23:23 -04:00
"vary": "~1.0.0"
2011-02-03 20:19:32 -08:00
},
2011-05-20 08:28:02 -07:00
"devDependencies": {
2014-08-06 01:39:12 -04:00
"connect-redis": "~1.5.0",
2015-07-06 00:39:06 -04:00
"ejs": "2.3.2",
2015-05-17 20:58:21 -04:00
"istanbul": "0.3.9",
2015-02-01 14:58:19 -05:00
"marked": "0.3.3",
2015-05-17 20:59:02 -04:00
"mocha": "2.2.5",
2015-07-27 22:09:34 -04:00
"should": "7.0.2",
2015-05-17 23:44:09 -04:00
"supertest": "1.0.1"
2011-05-20 08:35:11 -07:00
},
2014-05-18 01:16:38 -04:00
"engines": {
"node": ">= 0.8.0"
},
2013-02-13 10:55:55 -08:00
"bin": {
"express": "./bin/express"
},
"files": [
"LICENSE",
"History.md",
"Readme.md",
"index.js",
"bin/",
"lib/"
],
2012-01-09 02:03:23 +01:00
"scripts": {
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-tap": "mocha --require test/support/env --reporter tap --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
}