forked from helmetjs/helmet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.37 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
{
"name": "helmet",
"author": "Adam Baldwin <[email protected]> (http://andyet.net/team/baldwin)",
"contributors": [
"Evan Hahn <[email protected]> (https://evanhahn.com)"
],
"description": "help secure Express/Connect apps with various HTTP headers",
"version": "3.8.1",
"keywords": [
"security",
"headers",
"express",
"connect",
"x-frame-options",
"x-powered-by",
"csp",
"hsts",
"clickjack"
],
"homepage": "https://helmetjs.github.io/",
"bugs": "https://github.com/helmetjs/helmet/issues",
"repository": {
"type": "git",
"url": "git://github.com/helmetjs/helmet.git"
},
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"connect": "3.6.2",
"dns-prefetch-control": "0.1.0",
"dont-sniff-mimetype": "1.0.0",
"expect-ct": "0.1.0",
"frameguard": "3.0.0",
"helmet-csp": "2.5.1",
"hide-powered-by": "1.0.0",
"hpkp": "2.0.0",
"hsts": "2.1.0",
"ienoopen": "1.0.0",
"nocache": "2.0.0",
"referrer-policy": "1.1.0",
"x-xss-protection": "1.0.0"
},
"devDependencies": {
"mocha": "^3.2.0",
"sinon": "^2.2.0",
"standard": "^10.0.2"
},
"scripts": {
"pretest": "standard --fix",
"test": "mocha"
},
"license": "MIT",
"main": "index",
"standard": {
"globals": [
"describe",
"it",
"beforeEach",
"afterEach"
]
}
}