-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 756 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 756 Bytes
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
{
"name": "list_end_points",
"version": "2.0.6",
"description": "A utility to list all registered endpoints in an Express.js application",
"main": "dist/index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"prepare": "husky install"
},
"dependencies": {
"colors": "^1.4.0",
"express": "^4.18.2"
},
"repository": {
"type": "git",
"url": "https://github.com/emmanuelByte/list_end_points.git"
},
"keywords": [
"express",
"endpoints",
"routes",
"listing",
"utility"
],
"author": "Mechie Emmanuel Ifeanyi",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.17",
"husky": "^8.0.0",
"typescript": "^4.5.5"
}
}