2018-09-21 13:32:42 +00:00
|
|
|
{
|
|
|
|
"name": "woocommerce/wc-admin",
|
|
|
|
"description": "A modern, javascript-driven WooCommerce Admin experience.",
|
|
|
|
"homepage": "https://github.com/woocommerce/wc-admin",
|
|
|
|
"type": "wordpress-plugin",
|
|
|
|
"license": "GPL-3.0-or-later",
|
|
|
|
"prefer-stable": true,
|
|
|
|
"minimum-stability": "dev",
|
|
|
|
"require": {
|
2018-10-23 15:12:17 +00:00
|
|
|
"composer/installers": "~1.6"
|
2018-09-21 13:32:42 +00:00
|
|
|
},
|
|
|
|
"require-dev": {
|
|
|
|
"squizlabs/php_codesniffer": "*",
|
2018-10-19 20:10:13 +00:00
|
|
|
"wp-coding-standards/wpcs": "1.1.0",
|
2018-10-23 18:08:12 +00:00
|
|
|
"phpunit/phpunit": "7.4.3",
|
2018-09-21 13:32:42 +00:00
|
|
|
"woocommerce/woocommerce-sniffs": "*",
|
2018-10-19 20:42:45 +00:00
|
|
|
"wimg/php-compatibility": "9.0.0",
|
2018-10-29 15:33:32 +00:00
|
|
|
"dealerdirect/phpcodesniffer-composer-installer": "0.5.0"
|
2018-09-21 13:32:42 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"test": [
|
|
|
|
"phpunit"
|
|
|
|
],
|
|
|
|
"phpcs": [
|
|
|
|
"phpcs -s -p"
|
|
|
|
],
|
|
|
|
"phpcbf": [
|
|
|
|
"phpcbf -p"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"extra": {
|
|
|
|
"scripts-description": {
|
|
|
|
"test": "Run unit tests",
|
|
|
|
"phpcs": "Analyze code against the WordPress coding standards with PHP_CodeSniffer",
|
|
|
|
"phpcbf": "Fix coding standards warnings/errors automatically with PHP Code Beautifier"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|