koa-lite/package.json

54 lines
1.0 KiB
JSON
Raw Normal View History

2013-08-17 07:15:57 +00:00
{
"name": "koa",
2013-12-30 18:56:30 +00:00
"version": "0.2.1",
2013-08-17 07:15:57 +00:00
"description": "Koa web app framework",
"main": "index.js",
"scripts": {
"test": "make test"
},
2014-01-17 06:55:10 +00:00
"repository":{
"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": {
"accepts": "~1.0.0",
2013-12-28 02:53:19 +00:00
"type-is": "~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": "*",
"mime": "~1.2.11",
"fresh": "~0.2.0",
2013-12-22 16:54:46 +00:00
"koa-compose": "~2.1.0",
2013-11-16 01:07:45 +00:00
"cookies": "~0.3.7",
2014-01-13 14:36:10 +00:00
"keygrip": "~1.0.0",
"delegates": "0.0.3"
2013-08-17 07:15:57 +00:00
},
"devDependencies": {
2013-11-12 22:33:06 +00:00
"bytes": "~0.2.1",
2013-11-16 01:07:45 +00:00
"should": "~2.1.0",
2014-01-17 06:33:02 +00:00
"mocha": "~1.17.0",
2013-11-16 01:07:45 +00:00
"supertest": "~0.8.1",
2013-11-12 22:33:06 +00:00
"co-fs": "~1.1",
"co-views": "~0.1.0",
2013-11-28 04:44:17 +00:00
"ejs": "~0.8.4",
2013-12-22 00:10:50 +00:00
"koa-logger": "~1.1.0",
"koa-static": "~1.4.0",
2013-12-20 05:10:50 +00:00
"co-busboy": "~0.1.0",
2013-11-28 05:40:00 +00:00
"koa-route": "~1.0.2",
2013-12-20 05:10:50 +00:00
"swig": "~1.2.0",
2013-11-28 07:03:15 +00:00
"co-body": "0.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 06:55:10 +00:00
}