forked from fastify/fastify-static
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.57 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
{
"name": "fastify-static",
"version": "2.3.0",
"description": "Plugin for serving static files as fast as possible.",
"main": "index.js",
"scripts": {
"lint": "npm run lint:standard && npm run lint:typescript",
"lint:standard": "standard | snazzy",
"lint:typescript": "standard --parser typescript-eslint-parser --plugin typescript test/types/*.ts",
"unit": "tap test/*.test.js",
"typescript": "tsc --project ./test/types/tsconfig.json",
"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": {
"fastify-plugin": "^1.4.0",
"glob": "^7.1.3",
"readable-stream": "^3.1.1",
"send": "^0.16.0"
},
"devDependencies": {
"@types/node": "^10.12.21",
"coveralls": "^3.0.2",
"eslint-plugin-typescript": "^0.14.0",
"fastify": "^2.0.0-rc.6",
"fastify-compress": "^0.8.0",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.0",
"simple-get": "^3.0.3",
"snazzy": "^8.0.0",
"standard": "^12.0.0",
"tap": "^12.5.1",
"typescript": "^3.3.1",
"typescript-eslint-parser": "^22.0.0"
}
}