koa-lite/package.json

60 lines
1.2 KiB
JSON
Raw Normal View History

2013-08-17 07:15:57 +00:00
{
"name": "koa",
2015-02-06 08:01:35 +00:00
"version": "0.17.0",
2013-08-17 07:15:57 +00:00
"description": "Koa web app framework",
2014-03-23 11:03:17 +00:00
"main": "lib/application.js",
2013-08-17 07:15:57 +00:00
"scripts": {
"test": "make test"
},
2014-09-08 08:40:44 +00:00
"repository": "koajs/koa",
2013-08-17 07:15:57 +00:00
"keywords": [
"web",
"app",
"http",
"application",
"framework",
"middleware",
"rack"
],
"license": "MIT",
"dependencies": {
2015-01-29 04:39:52 +00:00
"accepts": "^1.2.2",
"co": "^4.1.0",
2014-10-27 18:12:43 +00:00
"content-disposition": "~0.5.0",
2014-07-31 04:38:48 +00:00
"cookies": "~0.5.0",
"debug": "*",
2014-11-18 02:44:28 +00:00
"delegates": "0.1.0",
"destroy": "^1.0.3",
"error-inject": "~1.0.0",
"escape-html": "~1.0.1",
2015-01-29 04:39:52 +00:00
"fresh": "~0.2.4",
"http-assert": "^1.1.0",
"http-errors": "^1.2.8",
"koa-compose": "^2.3.0",
"koa-is-json": "^1.0.0",
"media-typer": "~0.3.0",
2015-01-29 04:39:52 +00:00
"mime-types": "^2.0.7",
"on-finished": "^2.1.0",
"only": "0.0.2",
"parseurl": "^1.3.0",
2015-01-29 04:39:52 +00:00
"statuses": "^1.2.0",
"type-is": "^1.5.5",
"vary": "^1.0.0"
2013-08-17 07:15:57 +00:00
},
"devDependencies": {
2014-09-08 22:53:46 +00:00
"istanbul-harmony": "~0.3.0",
"make-lint": "^1.0.1",
2014-11-16 13:54:29 +00:00
"mocha": "^2.0.1",
2014-09-08 22:53:46 +00:00
"should": "^3.1.0",
2014-11-18 02:44:28 +00:00
"supertest": "~0.15.0",
2014-09-08 22:53:46 +00:00
"test-console": "^0.7.1"
2013-08-17 07:15:57 +00:00
},
"engines": {
2015-02-02 00:35:17 +00:00
"node": ">= 0.11.16",
"iojs": ">= 1.0.0"
2014-09-08 08:40:44 +00:00
},
"files": [
2014-10-18 01:21:32 +00:00
"lib"
2014-09-08 08:40:44 +00:00
]
2014-01-17 16:43:54 +00:00
}