forked from fastify/fastify-static
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "fastify-static",
"version": "0.12.0",
"description": "Plugin for serving static files as fast as possible.",
"main": "index.js",
"scripts": {
"lint": "standard | snazzy",
"unit": "tap test",
"test": "npm run lint && npm run unit",
"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": {
"fastify-plugin": "^1.0.0",
"readable-stream": "^2.3.6",
"send": "^0.16.0"
},
"devDependencies": {
"coveralls": "^3.0.0",
"fastify": "^1.3.0",
"fastify-compress": "^0.6.0",
"pre-commit": "^1.2.2",
"proxyquire": "^2.0.0",
"simple-get": "^3.0.1",
"snazzy": "^7.0.0",
"standard": "^11.0.0",
"tap": "^12.0.0"
}
}