koa-lite/package.json

51 lines
985 B
JSON
Raw Normal View History

2013-08-17 07:15:57 +00:00
{
"name": "koa",
2014-05-12 03:51:11 +00:00
"version": "0.6.1",
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-01-17 16:43:54 +00:00
"repository": {
2014-01-17 06:55:10 +00:00
"type": "git",
"url": "https://github.com/koajs/koa"
},
2013-08-17 07:15:57 +00:00
"keywords": [
"web",
"app",
"http",
"application",
"framework",
"middleware",
"rack"
],
"license": "MIT",
"dependencies": {
2014-03-13 01:30:16 +00:00
"escape-html": "~1.0.1",
2014-03-13 01:29:14 +00:00
"statuses": "~1.0.1",
"accepts": "~1.0.0",
2014-05-12 03:51:11 +00:00
"type-is": "~1.2.0",
2014-04-27 08:53:07 +00:00
"set-type": "~1.0.0",
2014-01-17 06:33:02 +00:00
"finished": "~1.1.1",
2014-01-02 17:16:51 +00:00
"co": "~3.0.2",
2013-08-17 07:15:57 +00:00
"debug": "*",
2014-01-29 20:16:15 +00:00
"fresh": "~0.2.1",
2014-05-12 03:51:11 +00:00
"koa-compose": "~2.3.0",
2014-04-25 07:15:33 +00:00
"koa-is-json": "~1.0.0",
"cookies": "~0.4.0",
2014-03-11 18:01:33 +00:00
"delegates": "0.0.3",
"dethroy": "~1.0.0",
"error-inject": "~1.0.0",
2014-03-11 18:01:33 +00:00
"only": "0.0.2"
2013-08-17 07:15:57 +00:00
},
"devDependencies": {
2014-03-23 11:02:05 +00:00
"should": "^3.1.0",
"mocha": "^1.17.0",
"supertest": "~0.12.0",
"make-lint": "^1.0.1"
2013-08-17 07:15:57 +00:00
},
"engines": {
"node": ">= 0.11.9"
2013-08-17 07:15:57 +00:00
}
2014-01-17 16:43:54 +00:00
}