-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.51 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "clearsitedata",
"author": "Evan Hahn <[email protected]> (https://evanhahn.com)",
"description": "Middleware to set the Clear-Site-Data HTTP header",
"version": "0.2.0",
"license": "MIT",
"keywords": [
"security",
"express",
"connect",
"clear-site-data",
"cookies",
"privacy"
],
"homepage": "https://github.com/helmetjs/clearsitedata",
"repository": {
"type": "git",
"url": "git://github.com/helmetjs/clearsitedata.git"
},
"bugs": {
"url": "https://github.com/helmetjs/clearsitedata/issues",
"email": "[email protected]"
},
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"LICENSE",
"CHANGELOG.md",
"README.md",
"dist/index.js",
"dist/index.d.ts"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"pretest": "npm run lint",
"prepublishOnly": "npm run build",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"format": "prettier --write .",
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"test": "tsx --test test.ts"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/connect": "^3.4.38",
"@types/node": "^22.9.3",
"@types/supertest": "^6.0.2",
"connect": "^3.7.0",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0"
}
}