forked from fastify/fastify-static
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.78 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
60
61
62
63
64
65
66
67
{
"name": "fastify-static",
"version": "4.2.3",
"description": "Plugin for serving static files as fast as possible.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "standard | snazzy",
"lint:fix": "standard --fix",
"unit": "tap test/*.test.js",
"typescript": "tsd",
"test": "npm run lint && npm run unit && npm run typescript",
"example": "node example/server.js",
"coverage": "tap --cov --coverage-report=html test",
"coveralls": "tap test/*test.js test/*/*.test.js --cov"
},
"repository": {
"type": "git",
"url": "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": {
"content-disposition": "^0.5.3",
"encoding-negotiator": "^2.0.1",
"fastify-plugin": "^3.0.0",
"glob": "^7.1.4",
"readable-stream": "^3.4.0",
"send": "^0.17.1"
},
"devDependencies": {
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"concat-stream": "^2.0.0",
"coveralls": "^3.0.4",
"eslint-plugin-typescript": "^0.14.0",
"fastify": "^3.7.0",
"fastify-compress": "^3.3.1",
"handlebars": "^4.7.6",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.0",
"simple-get": "^4.0.0",
"snazzy": "^9.0.0",
"standard": "^16.0.2",
"tap": "^15.0.0",
"tsd": "^0.17.0",
"typescript": "^4.0.2"
},
"tsd": {
"directory": "test/types"
},
"eslintConfig": {
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error"
}
}
}