-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
38 lines (38 loc) · 1.14 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
{
"name": "host-validation",
"version": "2.0.1",
"description": "Node.js middleware to validate Host and Referer headers in HTTP requests and protect against DNS rebinding attacks.",
"main": "index.js",
"scripts": {
"test": "node test.js",
"coverage": "nyc --reporter=html --reporter=text node test.js && rm -rf .nyc_output/",
"coveralls": "istanbul cover test.js -x test.js --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brannondorsey/host-validation.git"
},
"keywords": [
"express",
"middleware",
"headers",
"host",
"header",
"dns",
"rebind",
"validation"
],
"author": "Brannon Dorsey <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/brannondorsey/host-validation/issues"
},
"homepage": "https://github.com/brannondorsey/host-validation#readme",
"devDependencies": {
"coveralls": "^3.0.2",
"express": "^4.16.3",
"istanbul": "^0.4.5",
"nyc": "^13.0.1",
"request": "^2.85.0"
}
}