UNPKG

1.71 kBJSONView Raw
1{
2 "name": "helmet",
3 "author": "Adam Baldwin <adam@npmjs.com> (https://evilpacket.net)",
4 "contributors": [
5 "Evan Hahn <me@evanhahn.com> (https://evanhahn.com)"
6 ],
7 "description": "help secure Express/Connect apps with various HTTP headers",
8 "version": "3.22.0",
9 "keywords": [
10 "security",
11 "headers",
12 "express",
13 "connect",
14 "x-frame-options",
15 "x-powered-by",
16 "csp",
17 "hsts",
18 "clickjack"
19 ],
20 "homepage": "https://helmetjs.github.io/",
21 "bugs": {
22 "url": "https://github.com/helmetjs/helmet/issues",
23 "email": "me@evanhahn.com"
24 },
25 "repository": {
26 "type": "git",
27 "url": "git://github.com/helmetjs/helmet.git"
28 },
29 "engines": {
30 "node": ">=4.0.0"
31 },
32 "files": [
33 "CHANGELOG.md",
34 "CODE_OF_CONDUCT.md",
35 "CONTRIBUTING.md",
36 "LICENSE",
37 "README.md",
38 "SECURITY.md",
39 "index.js"
40 ],
41 "dependencies": {
42 "depd": "2.0.0",
43 "dns-prefetch-control": "0.2.0",
44 "dont-sniff-mimetype": "1.1.0",
45 "expect-ct": "0.2.0",
46 "feature-policy": "0.3.0",
47 "frameguard": "3.1.0",
48 "helmet-crossdomain": "0.4.0",
49 "helmet-csp": "2.10.0",
50 "hide-powered-by": "1.1.0",
51 "hpkp": "2.0.0",
52 "hsts": "2.2.0",
53 "ienoopen": "1.1.0",
54 "nocache": "2.1.0",
55 "referrer-policy": "1.2.0",
56 "x-xss-protection": "1.3.0"
57 },
58 "devDependencies": {
59 "connect": "^3.7.0",
60 "mocha": "^7.1.1",
61 "sinon": "^9.0.1",
62 "standard": "^14.3.3",
63 "supertest": "^4.0.2"
64 },
65 "scripts": {
66 "pretest": "standard --fix",
67 "test": "mocha"
68 },
69 "license": "MIT",
70 "main": "index",
71 "standard": {
72 "globals": [
73 "describe",
74 "it",
75 "beforeEach",
76 "afterEach"
77 ]
78 }
79}