-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
53 lines (53 loc) · 1.26 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
52
53
{
"name": "express-list-endpoints",
"version": "7.1.1",
"description": "A express package to list all registered endpoints and its verbs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AlbertoFdzM/express-list-endpoints.git"
},
"engines": {
"node": ">=18"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"endpoint",
"endpoints",
"express",
"list",
"ls",
"methods",
"middlewares",
"paths",
"route",
"routes",
"verb",
"verbs"
],
"scripts": {
"build": "tsc",
"lint": "tsc --noEmit && eslint .",
"postversion": "git push --follow-tags",
"prebuild": "rimraf dist",
"preversion": "npm run lint && npm test",
"test": "mocha",
"version": "changelog-version && git add CHANGELOG.md"
},
"devDependencies": {
"@types/express": "^4.17.21",
"chai": "^4.3.4",
"changelog-version": "^2.0.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"express4-19-2": "npm:express@4.19.2",
"express": "^4.21.0",
"mocha": "^10.4.0",
"rimraf": "^5.0.5",
"typescript": "^5.4.4"
}
}