forked from huawis/socket-anti-spam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "socket-anti-spam",
"version": "2.0.0",
"description": "This module prevents socket.emit spams by clients via ip bans",
"main": "antispam.js",
"scripts": {
"test": "mocha",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*",
"coveralls": "npm bin /istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/* && node node_modules/coveralls/bin/coveralls.js < coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "https://github.com/michaeldegroot/socket-anti-spam"
},
"keywords": [
"socket.io",
"antispam",
"anti",
"spam",
"socket"
],
"author": {
"name": "michaeldegroot"
},
"license": "MIT",
"dependencies": {
"moment": "^2.21.0"
},
"devDependencies": {
"assert": "^1.3.0",
"assert-plus": "^1.0.0",
"coveralls": "^2.11.4",
"express": "^4.13.3",
"istanbul": "^0.4.1",
"mocha": "^3.0.2",
"mocha-lcov-reporter": "^1.2.0",
"node-static": "^0.7.8",
"redis": "^2.8.0",
"request": "^2.67.0",
"socket.io": "^2.0.1",
"socket.io-client": "^2.0.1"
}
}