-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1003 Bytes
/
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
{
"name": "fastify-https-always",
"version": "1.0.0",
"description": "A fastify plugin to redirect http requests to https.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "ts-node test/test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattbishop/fastify-https-always.git"
},
"keywords": [
"fastify",
"fastify-plugin",
"https",
"redirect",
"TLS",
"SSL",
"secure"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattbishop/fastify-https-always/issues"
},
"homepage": "https://github.com/mattbishop/fastify-https-always#readme",
"dependencies": {
"@fastify/error": "^3.0.0",
"fastify-plugin": "^3.0.1"
},
"devDependencies": {
"@types/tape": "^4.13.2",
"fastify": "^3.3.0",
"tape": "^5.5.3",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"undici": "^5.8.2"
}
}