-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
42 lines (42 loc) · 858 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
{
"name": "express-list-routes",
"version": "1.2.5",
"description": "List routes for Express",
"keywords": [
"express",
"express3",
"express4",
"express5",
"routes",
"list",
"log",
"paths"
],
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/labithiotis/express-list-routes.git"
},
"author": "Darren Labithiotis",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"jest": "^29",
"express3": "npm:express@^3",
"express4": "npm:express@^4",
"express5": "npm:express@^5",
"prettier": "^2"
},
"jest": {
"bail": true,
"clearMocks": true,
"testRegex": "\\.tests?\\.(js|ts)$",
"transformIgnorePatterns": [
"<rootDir>/node_modules"
]
}
}