-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.74 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.74 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
55
56
57
58
59
{
"name": "hot-router",
"version": "2.0.0-beta.7",
"description": "A router for Express that lets you set up route classes to easily create routes. For development, it can also be set up to hot swap the code inside your route classes while your application is running.",
"homepage": "https://github.com/roncli/hot-router",
"bugs": {
"email": "roncli@roncli.com",
"url": "https://github.com/roncli/hot-router/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roncli/hot-router.git"
},
"main": "index.js",
"author": {
"email": "roncli@roncli.com",
"name": "Ronald M. Clifford",
"url": "http://roncli.com"
},
"license": "MIT",
"dependencies": {
"express": "5.2.1"
},
"peerDependencies": {
"@types/express": "^5.0.6",
"@types/ws": "^8.18.1",
"websocket-express": "^4.0.1",
"ws": "^8.19.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@stylistic/eslint-plugin": "5.10.0",
"@types/http-errors": "2.0.5",
"@types/jest": "30.0.0",
"@types/node": "25.6.0",
"@types/supertest": "7.2.0",
"eslint-plugin-jsdoc": "62.9.0",
"globals": "17.6.0",
"jest": "30.3.0",
"node-mocks-http": "1.17.2",
"supertest": "7.2.2"
},
"files": [
"index.js",
"router.js",
"routerBase.js",
"index.d.ts",
"router.d.ts",
"routerBase.d.ts",
"README.md"
],
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"scripts": {
"reinstall": "(if exist node_modules rmdir /s /q node_modules) & npm install",
"test": "jest --coverage"
}
}