-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
package.json
74 lines (74 loc) · 1.66 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"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",
"default": "./dist/koa.mjs"
},
"./*": "./*.js",
"./*.js": "./*.js",
"./package": "./package.json",
"./package.json": "./package.json"
},
"scripts": {
"test": "node --test",
"test:coverage": "node --test --experimental-test-coverage",
"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.9.1",
"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",
"parseurl": "^1.3.2",
"statuses": "^2.0.1",
"type-is": "^1.6.16",
"vary": "^1.1.2"
},
"devDependencies": {
"gen-esm-wrapper": "^1.0.6",
"snazzy": "^9.0.0",
"standard": "^17.1.0",
"supertest": "^7.0.0"
},
"engines": {
"node": ">= 18"
},
"files": [
"dist",
"lib"
]
}