-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
91 lines (91 loc) · 2.37 KB
/
composer.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "pluginkollektiv/antispam-bee",
"description": "Antispam Bee blocks spam comments and trackbacks effectively and without captchas.",
"keywords": [
"WordPress",
"antispam",
"honeypot"
],
"homepage": "https://antispambee.pluginkollektiv.org/",
"authors": [
{
"name": "pluginkollektiv",
"homepage": "https://pluginkollektiv.org/",
"role": "Maintainer"
}
],
"support": {
"issues": "https://github.com/pluginkollektiv/antispam-bee/issues",
"source": "https://github.com/pluginkollektiv/antispam-bee",
"docs": "https://antispambee.pluginkollektiv.org/documentation/"
},
"type": "wordpress-plugin",
"license": "GPL-v2",
"require-dev": {
"behat/mink": "1.9.0",
"behat/mink-goutte-driver": "^1.3",
"brain/monkey": "^1.5",
"composer/package-versions-deprecated": "^1.11",
"dmore/behat-chrome-extension": "^1.4",
"dealerdirect/phpcodesniffer-composer-installer": "^v1.0.0",
"friends-of-behat/mink-extension": "^2.5",
"matthiasmullie/minify": "^1.3",
"paulgibbs/behat-wordpress-extension": "^v3.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpunit/phpunit": "^4",
"wp-cli/wp-cli-bundle": "@stable",
"wp-coding-standards/wpcs": "^3.0"
},
"autoload-dev": {
"classmap": [
"antispam_bee.php",
"inc/"
],
"psr-4": {
"AntispamBee\\Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"@build"
],
"post-update-cmd": [
"@build"
],
"build": [
"@minify"
],
"cs": [
"@lint-php"
],
"csfix": [
"phpcbf --standard=phpcs.xml"
],
"lint-all": [
"@lint-js",
"@lint-css"
],
"lint-css": [
"npx stylelint css/dashboard.css css/styles.css"
],
"lint-js": [
"npx eslint js/dashboard.js js/raphael.helper.js js/scripts.js"
],
"lint-php": [
"phpcs --standard=phpcs.xml -s"
],
"minify": [
"minifycss css/dashboard.css > css/dashboard.min.css",
"minifycss css/styles.css > css/styles.min.css",
"minifyjs js/dashboard.js > js/dashboard.min.js",
"minifyjs js/raphael.helper.js > js/raphael.helper.min.js",
"minifyjs js/scripts.js > js/scripts.min.js"
]
},
"config": {
"allow-plugins": {
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}