-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 965 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
{
"name": "serve-static-callback",
"version": "1.0.2",
"description": "Work exactly like Express static middleware, but add a callback function.",
"main": "dist/index.js",
"types": "dist/index.d.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://git.chevro.fr/cestoliv/serve-static-callback.git"
},
"homepage": "https://git.chevro.fr/cestoliv/serve-static-callback",
"keywords": ["express", "typescript", "express-middleware", "expressjs", "serve-static"],
"author": "cestoliv",
"license": "MIT",
"dependencies": {
"@types/encodeurl": "^1.0.0",
"@types/escape-html": "^1.0.2",
"@types/express": "^4.17.13",
"@types/on-finished": "^2.3.1",
"@types/parseurl": "^1.3.1",
"@types/send": "^0.17.1",
"encodeurl": "^1.0.2",
"escape-html": "^1.0.3",
"express": "^4.18.1",
"on-finished": "^2.4.1",
"parseurl": "^1.3.3",
"send": "^0.18.0"
}
}