forked from bjoshuanoah/express-spam-referral-blocker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 757 Bytes
/
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
{
"name": "express-spam-referral-blocker",
"description": "Express middleware that blocks referral spam, and sends a 404.",
"version": "1.2.0",
"author": {
"name": "Brian Noah",
"email": "[email protected]"
},
"scripts": {
"test": "mocha tests/**/*.spec.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bjoshuanoah/express-spam-referral-blocker"
},
"keywords": [
"express",
"middleware",
"spam",
"spam blocker"
],
"engines": {
"node": ">= 0.10.0"
},
"files": [
"Readme.md",
"index.js",
"lib/"
],
"dependencies": {
"mocha": "^2.2.5",
"request": "^2.61.0",
"top-domain": "^0.0.6",
"underscore-node": "^0.1.2"
}
}