83 lines
2.0 KiB
JSON
83 lines
2.0 KiB
JSON
{
|
|
"name": "stklcode/stklcode-liveticker",
|
|
"version": "1.1.0-alpha",
|
|
"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.6",
|
|
"composer/installers": "~1.7"
|
|
},
|
|
"require-dev": {
|
|
"php": ">=7",
|
|
"consolidation/robo": "^2",
|
|
"phpunit/phpunit": "^8",
|
|
"phpunit/php-code-coverage": "^7",
|
|
"dealerdirect/phpcodesniffer-composer-installer": "^0.6",
|
|
"slowprog/composer-copy-file": "~0.3",
|
|
"squizlabs/php_codesniffer": "^3.5",
|
|
"phpcompatibility/php-compatibility": "^9.3",
|
|
"wp-coding-standards/wpcs": "^2.2",
|
|
"patchwork/jsqueeze": "^2.0",
|
|
"natxet/cssmin": "^3.0",
|
|
"matthiasmullie/minify": "^1.3"
|
|
},
|
|
"scripts": {
|
|
"post-install-cmd": [
|
|
"@minify"
|
|
],
|
|
"post-update-cmd": [
|
|
"@minify"
|
|
],
|
|
"build": [
|
|
"@minify",
|
|
"robo build"
|
|
],
|
|
"package": [
|
|
"@minify",
|
|
"robo package"
|
|
],
|
|
"deploy": [
|
|
"@minify",
|
|
"robo deploy:all"
|
|
],
|
|
"test": [
|
|
"phpunit"
|
|
],
|
|
"lint-all": [
|
|
"@lint-php",
|
|
"@lint-css",
|
|
"@lint-js"
|
|
],
|
|
"lint-php": [
|
|
"phpcs --standard=phpcs.xml -s"
|
|
],
|
|
"lint-css": [
|
|
"./node_modules/stylelint/bin/stylelint.js styles/block.css",
|
|
"./node_modules/stylelint/bin/stylelint.js styles/liveticker.css"
|
|
],
|
|
"lint-js": [
|
|
"./node_modules/eslint/bin/eslint.js scripts/block.js",
|
|
"./node_modules/eslint/bin/eslint.js scripts/liveticker.js"
|
|
],
|
|
"minify": [
|
|
"minifycss styles/block.css > styles/block.min.css",
|
|
"minifycss styles/liveticker.css > styles/liveticker.min.css",
|
|
"minifyjs scripts/block.js > scripts/block.min.js",
|
|
"minifyjs scripts/liveticker.js > scripts/liveticker.min.js"
|
|
]
|
|
}
|
|
}
|