-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
51 lines (51 loc) · 1.05 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": "route-list",
"version": "1.3.5",
"description": "Beautifully shows Express/Koa/Hapi/Fastify routes in CLI.",
"bin": "./src/cli.js",
"main": "./lib/main.js",
"types": "./main.d.ts",
"type": "module",
"engines": {
"node": ">=16"
},
"engineStrict": true,
"scripts": {
"test": "node --test"
},
"keywords": [
"express",
"koa",
"hapi",
"fastify",
"paths",
"routes",
"endpoints",
"list"
],
"author": "Vladimir Mikulic",
"license": "MIT",
"files": [
"src",
"lib",
"main.d.ts"
],
"funding": "https://ko-fi.com/vladimirmikulic",
"homepage": "https://github.com/VladimirMikulic/route-list#readme",
"repository": {
"type": "git",
"url": "https://github.com/VladimirMikulic/route-list.git"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"express-list-endpoints": "^7.1.0"
},
"devDependencies": {
"@hapi/hapi": "^21.3.11",
"@koa/router": "^13.1.0",
"express": "^4.21.1",
"fastify": "^5.0.0",
"koa": "^2.15.3"
}
}