-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.17 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
{
"name": "fastify-https-redirect",
"version": "1.0.4",
"description": "Plugin for fastify to forward http requests to https",
"main": "plugin.js",
"types": "plugin.d.ts",
"scripts": {
"test": "tap test/*.test.js && npm run typescript",
"test-ci": "tap --cov test/*.test.js && npm run typescript",
"lint": "standard | snazzy",
"lint-ci": "standard --fix",
"typescript": "tsc --project ./tsconfig.json"
},
"precommit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/tomsvogel/fastify-https-redirect.git"
},
"keywords": [
"fastify",
"https",
"redirect"
],
"author": "Thomas Vogel<[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tomsvogel/fastify-https-redirect/issues"
},
"homepage": "https://github.com/tomsvogel/fastify-https-redirect#readme",
"devDependencies": {
"@types/node": "^12.0.6",
"fastify": "^2.0.0",
"pre-commit": "^1.2.2",
"request": "^2.83.0",
"snazzy": "^8.0.0",
"standard": "^14.0.2",
"tap": "^12.6.6",
"typescript": "^3.3.1"
},
"dependencies": {
"fastify-plugin": "^1.4.0"
}
}