-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
49 lines (49 loc) · 963 Bytes
/
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
{
"name": "koa-tree-router",
"version": "0.12.1",
"description": "A high performance koa router",
"main": "router.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steambap/koa-tree-router.git"
},
"engines": {
"node": ">=12.0"
},
"files": [
"*.js",
"index.d.ts"
],
"keywords": [
"koa",
"router",
"middleware",
"fast",
"radix",
"tree"
],
"author": "Weilin Shi <934587911@qq.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/steambap/koa-tree-router/issues"
},
"homepage": "https://github.com/steambap/koa-tree-router#readme",
"typings": "index.d.ts",
"devDependencies": {
"jest": "^29.7.0",
"koa": "^2.15.3",
"supertest": "^6.3.4"
},
"dependencies": {
"@types/koa": "^2.15.0",
"koa-compose": "^4.1.0"
},
"pnpm": {
"overrides": {
"formidable@<3.2.4": ">=3.2.4"
}
}
}