-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
59 lines (59 loc) · 1.48 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
56
57
58
59
{
"name": "@fastify/static",
"version": "8.0.2",
"description": "Plugin for serving static files as fast as possible.",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"scripts": {
"coverage": "npm run test:unit -- --coverage-report=html",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "npm run test:unit && npm run test:typescript",
"test:typescript": "tsd",
"test:unit": "tap",
"example": "node example/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-static.git"
},
"keywords": [
"fastify",
"static"
],
"author": "Tommaso Allevi - @allevo",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-static/issues"
},
"homepage": "https://github.com/fastify/fastify-static",
"dependencies": {
"@fastify/accept-negotiator": "^2.0.0",
"@fastify/send": "^3.1.0",
"content-disposition": "^0.5.4",
"fastify-plugin": "^5.0.0",
"fastq": "^1.17.1",
"glob": "^11.0.0"
},
"devDependencies": {
"@fastify/compress": "^8.0.0",
"@fastify/pre-commit": "^2.1.0",
"@types/node": "^22.0.0",
"concat-stream": "^2.0.0",
"eslint": "^9.9.0",
"fastify": "^5.1.0",
"neostandard": "^0.11.3",
"pino": "^9.1.0",
"proxyquire": "^2.1.3",
"simple-get": "^4.0.1",
"tap": "^18.7.1",
"tsd": "^0.31.0"
},
"tsd": {
"directory": "test/types"
},
"publishConfig": {
"access": "public"
}
}