-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.05 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
{
"name": "express-except",
"version": "2.0.0",
"description": "Skip middleware when a path matches",
"main": "index.js",
"typings": "types.d.ts",
"repository": "https://github.com/mhassan1/express-except",
"author": "mhassan1",
"license": "MIT",
"engines": {
"node": ">=18"
},
"files": [
"index.js",
"index.d.ts",
"types.d.ts"
],
"scripts": {
"prepack": "yarn build",
"build": "tsc",
"test": "eslint index.ts && yarn build && ava test/**/*.test.js"
},
"dependencies": {
"array-flatten": "^3.0.0",
"methods": "^1.1.2",
"router": "^2.0.0"
},
"peerDependencies": {
"express": "^5.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@types/express": "^5.0.3",
"@types/methods": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^8.60.0",
"@typescript-eslint/parser": "^8.60.0",
"ava": "^6.4.0",
"eslint": "^10.4.0",
"express": "^5.0.0",
"got": "^11.8.6",
"typescript": "~5.8.3"
},
"packageManager": "yarn@4.14.1"
}