-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 869 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
{
"name": "yes-https",
"version": "0.0.0",
"description": "A simple utility to force https for connect based node.js apps.",
"type": "module",
"exports": "./lib/index.js",
"scripts": {
"test": "NODE_ENV=production c8 mocha",
"lint": "xo",
"fix": "xo --fix",
"coverage": "c8 report --reporter=json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JustinBeckwith/yes-https.git"
},
"keywords": [
"hsts",
"https"
],
"author": "Justin Beckwith",
"license": "MIT",
"bugs": {
"url": "https://github.com/JustinBeckwith/yes-https/issues"
},
"homepage": "https://github.com/JustinBeckwith/yes-https#readme",
"devDependencies": {
"c8": "^10.0.0",
"express": "^4.17.1",
"mocha": "^11.0.0",
"supertest": "^7.0.0",
"xo": "^0.58.0"
},
"engines": {
"node": ">=18"
}
}