-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.4 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.4 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "clearsitedata",
"version": "0.2.0",
"description": "Middleware to set the Clear-Site-Data HTTP header",
"keywords": [
"clear-site-data",
"connect",
"cookies",
"express",
"privacy",
"security"
],
"homepage": "https://github.com/helmetjs/clearsitedata",
"bugs": {
"url": "https://github.com/helmetjs/clearsitedata/issues",
"email": "me@evanhahn.com"
},
"license": "MIT",
"author": "Evan Hahn <me@evanhahn.com> (https://evanhahn.com)",
"repository": {
"type": "git",
"url": "git://github.com/helmetjs/clearsitedata.git"
},
"files": [
"LICENSE",
"CHANGELOG.md",
"README.md",
"dist/index.js",
"dist/index.d.ts"
],
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"pretest": "npm run lint",
"prepublishOnly": "npm run build",
"lint": "npm run lint:oxlint && npm run lint:oxfmt",
"lint:oxlint": "oxlint",
"lint:oxfmt": "oxfmt --check .",
"format": "oxfmt --write .",
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"test": "tsx --test test.ts"
},
"devDependencies": {
"@types/connect": "^3.4.38",
"@types/node": "^25.5.0",
"@types/supertest": "^7.2.0",
"connect": "^3.7.0",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"supertest": "^7.2.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"engines": {
"node": ">=18.0.0"
}
}