-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
63 lines (63 loc) · 1.39 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": "nodebb-plugin-spam-be-gone",
"version": "2.2.2",
"description": "anti spam using both Google Recaptcha, Akismet.com, StopForumSpam.com & ProjectHoneyPot.com",
"main": "library.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/akhoury/nodebb-plugin-spam-be-gone"
},
"keywords": [
"nodebb",
"plugin",
"spam",
"recaptcha",
"stopforumspam",
"akismet",
"honeypot",
"projecthoneypot",
"antispam"
],
"author": {
"name": "Aziz khoury",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/akhoury/nodebb-plugin-spam-be-gone"
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"akismet": "^1.0.0",
"async": "^3.2.0",
"hcaptcha": "^0.0.1",
"project-honeypot": "~0.0.0",
"stopforumspam": "^1.3.8"
},
"nbbpm": {
"compatibility": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-angular": "^8.3.4",
"eslint": "8.10.0",
"eslint-config-nodebb": "0.1.1",
"eslint-plugin-import": "2.25.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.2"
}
}