-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.08 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
{
"name": "koa2-router",
"version": "2.0.1",
"description": "A express-liked router component for koa2",
"main": "index.js",
"types": "types.d.ts",
"repository": "xinpianchang/koa2-router",
"author": "Tang Ye <[email protected]>",
"license": "MIT",
"keywords": [
"koa",
"framework",
"router",
"koa2-router"
],
"engines": {
"node": "^7.10.1 || >= 8.1.4"
},
"dependencies": {
"array-flatten": "^3.0.0",
"debug": "^4.1.1",
"delegates": "^1.0.0",
"depd": "^2.0.0",
"koa-compose": "^4.1.0",
"methods": "^1.1.2",
"parseurl": "^1.3.3",
"path-to-regexp": "^6.1.0",
"setprototypeof": "^1.1.1",
"utils-merge": "^1.0.1"
},
"devDependencies": {
"@types/koa": "^2.11.2",
"delay": "^4.3.0",
"koa": "^2.11.0",
"koa-morgan": "^1.0.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"files": [
"LICENSE",
"index.js",
"lib/",
"types.d.ts"
],
"peerDependencies": {
"@types/koa": "^2.11.2",
"http-errors": "^1.7.3",
"koa": "^2.11.0",
"koa-morgan": "^1.0.1"
}
}