wp-liveticker/composer.json

82 lines
1.7 KiB
JSON

{
"name": "stklcode/stklcode-liveticker",
"version": "1.0.0",
"description": "A simple Liveticker for Wordpress.",
"keywords": [
"wordpress",
"plugin",
"liveticker"
],
"license": "GPL-2.0+",
"authors": [
{
"name": "Stefan Kalscheuer",
"email": "stefan@stklcode.de",
"homepage": "https://www.stklcode.de"
}
],
"type": "wordpress-plugin",
"require": {
"php": ">=5.2",
"composer/installers": "~1.7"
},
"require-dev": {
"php": ">=5.2",
"consolidation/robo": "^1.4",
"phpunit/phpunit": "*",
"phpunit/php-code-coverage": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5",
"slowprog/composer-copy-file": "~0.3",
"squizlabs/php_codesniffer": "^3.4",
"phpcompatibility/php-compatibility": "^9.2",
"wp-coding-standards/wpcs": "^2.1",
"patchwork/jsqueeze": "^2.0",
"natxet/cssmin": "^3.0",
"matthiasmullie/minify": "^1.3",
"npm-asset/eslint-config-wordpress": "^2.0"
},
"scripts": {
"post-install-cmd": [
"@minify"
],
"post-update-cmd": [
"@minify"
],
"build": [
"@minify",
"robo build"
],
"package": [
"@minify",
"robo package"
],
"deploy": [
"@minify",
"robo deploy:all"
],
"test-all": [
"@test",
"@test-cs"
],
"test": [
"phpunit"
],
"test-cs": [
"phpcs --standard=phpcs.xml -s"
],
"fix-cs": [
"phpcbf --standard=phpcs.xml"
],
"minify": [
"minifycss styles/liveticker.css > styles/liveticker.min.css",
"minifyjs scripts/liveticker.js > scripts/liveticker.min.js"
]
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}