forked from labithiotis/express-list-routes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 895 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
{
"name": "express-list-routes",
"version": "1.1.3",
"description": "List routes for Express 4",
"keywords": [
"express",
"express3",
"express4",
"routes",
"list",
"log",
"paths"
],
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "https://github.com/labithiotis/express-list-routes.git"
},
"author": "Darren Labithiotis",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"jest": "^26.6.3",
"express3": "npm:express@^3.13.0",
"express4": "npm:express@^4.17.0",
"express5": "npm:express@^5.0.0-alpha.8",
"prettier": "^2.2.1"
},
"jest": {
"bail": true,
"clearMocks": true,
"testRegex": "\\.tests?\\.(js|ts)$",
"transformIgnorePatterns": [
"<rootDir>/node_modules"
]
}
}