UNPKG

koa

Version:

Koa web app framework

74 lines (73 loc) 1.71 kB
{ "name": "koa", "version": "3.0.3", "description": "Koa web app framework", "main": "lib/application.js", "exports": { ".": { "require": "./lib/application.js", "import": "./dist/koa.mjs", "default": "./dist/koa.mjs" }, "./*": "./*.js", "./*.js": "./*.js", "./package": "./package.json", "./package.json": "./package.json" }, "scripts": { "test": "node --test", "test:coverage": "c8 --reporter=lcov --reporter=text-summary node --test", "lint": "standard", "lint:fix": "standard --fix", "lint:pretty": "standard | snazzy", "authors": "git log --format='%aN <%aE>' | sort -u > AUTHORS", "build": "gen-esm-wrapper . ./dist/koa.mjs", "prepare": "npm run build" }, "repository": "koajs/koa", "keywords": [ "web", "app", "http", "application", "framework", "middleware", "rack" ], "license": "MIT", "dependencies": { "accepts": "^1.3.8", "content-disposition": "~0.5.4", "content-type": "^1.0.5", "cookies": "~0.9.1", "delegates": "^1.0.0", "destroy": "^1.2.0", "encodeurl": "^2.0.0", "escape-html": "^1.0.3", "fresh": "~0.5.2", "http-assert": "^1.5.0", "http-errors": "^2.0.0", "koa-compose": "^4.1.0", "mime-types": "^3.0.1", "on-finished": "^2.4.1", "parseurl": "^1.3.3", "statuses": "^2.0.1", "type-is": "^2.0.1", "vary": "^1.1.2" }, "devDependencies": { "c8": "^10.1.3", "gen-esm-wrapper": "^1.1.3", "snazzy": "^9.0.0", "standard": "^17.1.2", "supertest": "^7.1.1" }, "engines": { "node": ">= 18" }, "files": [ "dist", "lib" ], "homepage": "https://koajs.com" }