-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
35 lines (35 loc) · 907 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
{
"name": "next-ssl-redirect-middleware",
"version": "0.1.5",
"description": "Nextjs Middleware to redirect http to https",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx tsc",
"watch": "npx tsc --watch",
"prepublish": "npx tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChuckJonas/next-ssl-redirect-middleware.git"
},
"keywords": [
"nextjs",
"ssl",
"redirect",
"heroku"
],
"author": "Charlie Jonas",
"license": "MIT",
"bugs": {
"url": "https://github.com/ChuckJonas/next-ssl-redirect-middleware/issues"
},
"homepage": "https://github.com/ChuckJonas/next-ssl-redirect-middleware#readme",
"devDependencies": {
"@types/node": "^16.11.12",
"next": ">=12.x",
"typescript": "^4.5.3"
},
"dependencies": {}
}