2013-08-17 07:15:57 +00:00
|
|
|
{
|
|
|
|
"name": "koa",
|
2017-06-20 17:01:10 +00:00
|
|
|
"version": "2.3.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": {
|
2017-05-11 03:30:32 +00:00
|
|
|
"test": "jest --forceExit",
|
|
|
|
"test-cov": "npm run test -- --coverage",
|
|
|
|
"lint": "eslint benchmarks lib test --fix",
|
|
|
|
"bench": "make -C benchmarks"
|
2013-08-17 07:15:57 +00:00
|
|
|
},
|
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",
|
2014-10-27 18:12:43 +00:00
|
|
|
"content-disposition": "~0.5.0",
|
2015-02-08 02:24:04 +00:00
|
|
|
"content-type": "^1.0.0",
|
2017-03-14 08:54:14 +00:00
|
|
|
"cookies": "~0.7.0",
|
2014-09-09 05:07:10 +00:00
|
|
|
"debug": "*",
|
2016-03-12 22:03:10 +00:00
|
|
|
"delegates": "^1.0.0",
|
2016-03-14 14:51:14 +00:00
|
|
|
"depd": "^1.1.0",
|
2014-09-29 04:24:08 +00:00
|
|
|
"destroy": "^1.0.3",
|
2014-04-09 16:02:13 +00:00
|
|
|
"error-inject": "~1.0.0",
|
2014-09-09 05:07:10 +00:00
|
|
|
"escape-html": "~1.0.1",
|
2017-03-14 08:54:14 +00:00
|
|
|
"fresh": "^0.5.0",
|
2015-01-29 04:39:52 +00:00
|
|
|
"http-assert": "^1.1.0",
|
|
|
|
"http-errors": "^1.2.8",
|
2015-10-14 00:45:18 +00:00
|
|
|
"is-generator-function": "^1.0.3",
|
2017-04-13 05:47:17 +00:00
|
|
|
"koa-compose": "^4.0.0",
|
2016-03-14 14:51:14 +00:00
|
|
|
"koa-convert": "^1.2.0",
|
2014-09-29 04:24:08 +00:00
|
|
|
"koa-is-json": "^1.0.0",
|
2015-01-29 04:39:52 +00:00
|
|
|
"mime-types": "^2.0.7",
|
2014-09-29 04:24:08 +00:00
|
|
|
"on-finished": "^2.1.0",
|
2014-09-09 05:07:10 +00:00
|
|
|
"only": "0.0.2",
|
2014-09-29 04:24:08 +00:00
|
|
|
"parseurl": "^1.3.0",
|
2015-01-29 04:39:52 +00:00
|
|
|
"statuses": "^1.2.0",
|
|
|
|
"type-is": "^1.5.5",
|
2014-09-29 04:24:08 +00:00
|
|
|
"vary": "^1.0.0"
|
2013-08-17 07:15:57 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-02-25 06:23:27 +00:00
|
|
|
"babel-eslint": "^7.1.1",
|
2017-03-14 08:54:14 +00:00
|
|
|
"eslint": "^3.17.1",
|
|
|
|
"eslint-config-standard": "^7.0.1",
|
|
|
|
"eslint-plugin-promise": "^3.5.0",
|
|
|
|
"eslint-plugin-standard": "^2.1.1",
|
2015-10-22 22:43:15 +00:00
|
|
|
"istanbul": "^0.4.0",
|
2017-05-11 03:30:32 +00:00
|
|
|
"jest": "^20.0.0",
|
|
|
|
"supertest": "^3.0.0"
|
2013-08-17 07:15:57 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
2017-03-14 08:46:45 +00:00
|
|
|
"node": ">= 6.0.0"
|
2014-09-08 08:40:44 +00:00
|
|
|
},
|
|
|
|
"files": [
|
2014-10-18 01:21:32 +00:00
|
|
|
"lib"
|
2017-05-11 03:30:32 +00:00
|
|
|
],
|
|
|
|
"jest": {
|
|
|
|
"testMatch": [
|
|
|
|
"**/test/!(helpers)/*.js"
|
|
|
|
],
|
|
|
|
"coverageReporters": [
|
|
|
|
"text-summary",
|
|
|
|
"lcov"
|
|
|
|
],
|
|
|
|
"bail": true,
|
|
|
|
"testEnvironment": "node"
|
|
|
|
}
|
2014-01-17 16:43:54 +00:00
|
|
|
}
|