-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.15 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
54
55
{
"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 && ava"
},
"dependencies": {
"array-flatten": "^3.0.0",
"methods": "^1.1.2",
"router": "^2.0.0"
},
"peerDependencies": {
"express": "^5.0.0"
},
"devDependencies": {
"@ava/typescript": "^4.1.0",
"@types/express": "^4.17.17",
"@types/methods": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"ava": "^5.3.1",
"eslint": "^8.44.0",
"express": "^5.0.0",
"got": "^11.8.6",
"typescript": "~5.1.6"
},
"ava": {
"typescript": {
"rewritePaths": {
"/": "/"
},
"compile": "tsc"
},
"files": [
"test/**/*.test.ts"
]
},
"packageManager": "yarn@4.0.0"
}