koa-lite/package.json

77 lines
1.7 KiB
JSON
Raw Normal View History

2013-08-17 07:15:57 +00:00
{
"name": "koa",
2019-01-28 08:51:37 +00:00
"version": "2.7.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-11-06 14:23:34 +00:00
"test": "jest",
2018-02-09 03:13:45 +00:00
"test-cov": "jest --coverage --runInBand --forceExit",
2017-11-06 14:23:34 +00:00
"lint": "eslint benchmarks lib test",
"bench": "make -C benchmarks",
"authors": "git log --format='%aN <%aE>' | sort -u > AUTHORS"
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": {
2018-07-12 06:14:25 +00:00
"accepts": "^1.3.5",
"cache-content-type": "^1.0.0",
2018-07-12 06:14:25 +00:00
"content-disposition": "~0.5.2",
"content-type": "^1.0.4",
"cookies": "~0.7.1",
"debug": "~3.1.0",
2016-03-12 22:03:10 +00:00
"delegates": "^1.0.0",
2018-07-12 06:14:25 +00:00
"depd": "^1.1.2",
"destroy": "^1.0.4",
"error-inject": "^1.0.0",
"escape-html": "^1.0.3",
"fresh": "~0.5.2",
"http-assert": "^1.3.0",
"http-errors": "^1.6.3",
"is-generator-function": "^1.0.7",
"koa-compose": "^4.1.0",
"koa-convert": "^1.2.0",
"koa-is-json": "^1.0.0",
2018-07-12 06:14:25 +00:00
"on-finished": "^2.3.0",
"only": "~0.0.2",
"parseurl": "^1.3.2",
"statuses": "^1.5.0",
"type-is": "^1.6.16",
"vary": "^1.1.2"
2013-08-17 07:15:57 +00:00
},
"devDependencies": {
2017-03-14 08:54:14 +00:00
"eslint": "^3.17.1",
2017-12-24 07:01:01 +00:00
"eslint-config-koa": "^2.0.0",
2017-03-14 08:54:14 +00:00
"eslint-config-standard": "^7.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
2017-11-06 14:23:34 +00:00
"jest": "^20.0.0",
2018-07-12 06:14:25 +00:00
"supertest": "^3.1.0"
2013-08-17 07:15:57 +00:00
},
"engines": {
2017-11-06 14:23:34 +00:00
"node": "^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4"
2014-09-08 08:40:44 +00:00
},
"files": [
2014-10-18 01:21:32 +00:00
"lib"
2017-11-06 14:23:34 +00:00
],
"jest": {
"testMatch": [
"**/test/!(helpers)/*.js"
],
"coverageReporters": [
"text-summary",
"lcov"
],
"bail": true,
"testEnvironment": "node"
}
2014-01-17 16:43:54 +00:00
}