-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.01 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.01 KB
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
{
"name": "yes-https",
"version": "4.0.3",
"description": "A simple utility to force https for connect based node.js apps.",
"type": "module",
"exports": "./lib/index.js",
"scripts": {
"test": "NODE_ENV=production node --test",
"lint": "biome check .",
"renovate-config": "renovate-config-validator --strict",
"fix": "biome check --write .",
"coverage": "NODE_ENV=production node --test --experimental-test-coverage --test-reporter=spec --test-reporter-destination=stdout --test-reporter=lcov --test-reporter-destination=lcov.info"
},
"repository": "JustinBeckwith/yes-https",
"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",
"express": "^5.0.0",
"renovate": "^43.110.16",
"supertest": "^7.0.0"
},
"engines": {
"node": ">=18"
}
}