Bumps [encodeurl](https://github.com/pillarjs/encodeurl) from 1.0.2 to 2.0.0. - [Release notes](https://github.com/pillarjs/encodeurl/releases) - [Commits](https://github.com/pillarjs/encodeurl/compare/v1.0.2...v2.0.0) --- updated-dependencies: - dependency-name: encodeurl dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
83 lines
1.7 KiB
JSON
83 lines
1.7 KiB
JSON
{
|
|
"name": "koa",
|
|
"version": "3.0.0-alpha.1",
|
|
"publishConfig": {
|
|
"tag": "experimental"
|
|
},
|
|
"description": "Koa web app framework",
|
|
"main": "lib/application.js",
|
|
"exports": {
|
|
".": {
|
|
"require": "./lib/application.js",
|
|
"import": "./dist/koa.mjs"
|
|
},
|
|
"./*": "./*.js",
|
|
"./*.js": "./*.js",
|
|
"./package": "./package.json",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"scripts": {
|
|
"test": "jest --forceExit",
|
|
"lint": "standard",
|
|
"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.5",
|
|
"cache-content-type": "^1.0.0",
|
|
"content-disposition": "~0.5.2",
|
|
"content-type": "^1.0.4",
|
|
"cookies": "~0.8.0",
|
|
"debug": "^4.3.2",
|
|
"delegates": "^1.0.0",
|
|
"destroy": "^1.0.4",
|
|
"encodeurl": "^2.0.0",
|
|
"escape-html": "^1.0.3",
|
|
"fresh": "~0.5.2",
|
|
"http-assert": "^1.3.0",
|
|
"http-errors": "^1.6.3",
|
|
"koa-compose": "^4.1.0",
|
|
"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"
|
|
},
|
|
"devDependencies": {
|
|
"gen-esm-wrapper": "^1.0.6",
|
|
"jest": "^28.1.2",
|
|
"snazzy": "^9.0.0",
|
|
"standard": "^17.1.0",
|
|
"supertest": "^6.2.4"
|
|
},
|
|
"engines": {
|
|
"node": ">= 12.17.0"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"lib"
|
|
],
|
|
"standard": {
|
|
"env": [
|
|
"jest"
|
|
]
|
|
},
|
|
"jest": {
|
|
"testEnvironment": "node"
|
|
}
|
|
}
|