-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 903 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 903 Bytes
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": "4.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": "biome check .",
"fix": "biome check --write .",
"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": {
"@biomejs/biome": "^2.2.6",
"c8": "^11.0.0",
"express": "^5.0.0",
"mocha": "^11.0.0",
"supertest": "^7.0.0"
},
"engines": {
"node": ">=18"
}
}