-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
62 lines (62 loc) · 1.45 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
{
"name": "@fastify/express",
"version": "4.0.1",
"description": "Express compatibility layer for Fastify",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "npm run test:unit && npm run test:typescript",
"test:unit": "tap",
"test:typescript": "tsd"
},
"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": {
"@fastify/formbody": "^8.0.0",
"@types/express": "^5.0.0",
"@types/node": "*",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"eslint": "^9.17.0",
"fastify": "^5.0.0",
"helmet": "^8.0.0",
"neostandard": "^0.12.0",
"passport": "^0.7.0",
"passport-http-bearer": "^1.0.1",
"serve-static": "^1.15.0",
"simple-get": "^4.0.1",
"tap": "^21.0.0",
"tsd": "^0.31.0"
},
"dependencies": {
"express": "^4.18.3",
"fastify-plugin": "^5.0.0"
},
"tsd": {
"directory": "test/types"
},
"publishConfig": {
"access": "public"
},
"tap": {
"disable-coverage": true
}
}