forked from fastify/fastify-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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-express",
"version": "0.1.0",
"description": "Express compatibility layer for Fastify",
"main": "index.js",
"scripts": {
"test": "standard && tap --no-coverage test/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-express.git"
},
"keywords": [
"fastify",
"express",
"middlewares",
"use",
"compatibility"
],
"author": "Tomas Della Vedova - @delvedor (http://delved.org)",
"license": " MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-express/issues"
},
"homepage": "https://github.com/fastify/fastify-express#readme",
"devDependencies": {
"cors": "^2.8.5",
"fastify": "^3.0.0",
"helmet": "^3.21.2",
"passport": "^0.4.1",
"passport-http-bearer": "^1.0.1",
"serve-static": "^1.14.1",
"simple-get": "^3.1.0",
"standard": "^14.3.1",
"tap": "^14.10.5"
},
"dependencies": {
"express": "^4.17.1",
"fastify-plugin": "^2.0.0"
},
"engines": {
"node": ">=10.0.0"
}
}