-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.19 KB
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
{
"name": "koa-autorouter",
"version": "2.0.0",
"description": "Modern Koa router based on folder/file hierarchy with async/await support",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"dev": "node example/app.js",
"lint": "eslint *.js example/**/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/korbai/koa-autorouter"
},
"keywords": [
"koa",
"koa2",
"route",
"router",
"autorouter",
"file-based-routing",
"async",
"await",
"modern"
],
"author": "Korbai, Zoltan <korbai.zoltan@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/korbai/koa-autorouter/issues"
},
"homepage": "https://github.com/korbai/koa-autorouter",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"debug": "^4.4.3",
"koa-compose": "^4.1.0",
"koa-router": "^14.0.0"
},
"devDependencies": {
"@types/koa": "^2.15.0",
"@types/koa-router": "^7.4.8",
"@types/node": "^20.0.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"koa": "^2.15.0",
"supertest": "^7.0.0"
},
"peerDependencies": {
"koa": "^2.0.0"
}
}