Due to naming conflicts with the original wp-liveticker plugin this one is now renamed to a unique identifier.
82 lines
1.7 KiB
JSON
82 lines
1.7 KiB
JSON
{
|
|
"name": "stklcode/wp-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.0"
|
|
},
|
|
"require-dev": {
|
|
"php": ">=5.2",
|
|
"consolidation/robo": "^1.0.0",
|
|
"phpunit/phpunit": "*",
|
|
"phpunit/php-code-coverage": "*",
|
|
"dealerdirect/phpcodesniffer-composer-installer": "^0.4",
|
|
"slowprog/composer-copy-file": "~0.2",
|
|
"squizlabs/php_codesniffer": "^3.1",
|
|
"wimg/php-compatibility": "^8.0",
|
|
"wp-coding-standards/wpcs": "~0.14",
|
|
"patchwork/jsqueeze": "^2.0.5",
|
|
"natxet/CssMin": "^3.0.5",
|
|
"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"
|
|
}
|
|
]
|
|
}
|