-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
74 lines (74 loc) · 1.75 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "feature-policy",
"author": "Evan Hahn <[email protected]> (https://evanhahn.com)",
"description": "Middleware to set the Feature-Policy HTTP header",
"version": "0.6.0",
"license": "MIT",
"keywords": [
"helmet",
"security",
"express",
"connect",
"feature-policy"
],
"homepage": "https://github.com/helmetjs/feature-policy",
"repository": {
"type": "git",
"url": "git://github.com/helmetjs/feature-policy.git"
},
"bugs": {
"url": "https://github.com/helmetjs/feature-policy/issues",
"email": "[email protected]"
},
"scripts": {
"pretest": "npm run lint",
"prepublishOnly": "npm run build",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint \"**/*.ts\"",
"lint:prettier": "prettier --check .",
"format": "prettier --write .",
"build": "tsup",
"test": "tsx test.ts"
},
"engines": {
"node": ">=18.0.0"
},
"type": "module",
"exports": {
".": {
"import": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"require": {
"default": "./dist/index.cjs",
"types": "./dist/index.d.cts"
}
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"dist"
],
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/connect": "^3.4.38",
"@types/dashify": "^1.0.3",
"@types/node": "^22.7.5",
"@types/supertest": "^6.0.2",
"connect": "^3.7.0",
"dashify": "^2.0.0",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0"
}
}