| 1 |
{ |
| 2 |
"name": "plugin-check", |
| 3 |
"version": "0.2.0", |
| 4 |
"description": "WordPress.org Plugin Check", |
| 5 |
"directories": { |
| 6 |
"test": "tests" |
| 7 |
}, |
| 8 |
"private": true, |
| 9 |
"scripts": { |
| 10 |
"wp-env": "wp-env", |
| 11 |
"setup:tools": "npm run wp-env run composer install", |
| 12 |
"setup:readme-parser": "curl -so readme-parser.php https://meta.svn.wordpress.org/sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/readme/class-parser.php", |
| 13 |
"test": "npm run wp-env run phpunit 'phpunit -c /var/www/html/wp-content/plugins/plugin-check/phpunit.xml.dist'" |
| 14 |
}, |
| 15 |
"repository": { |
| 16 |
"type": "git", |
| 17 |
"url": "git+https://github.com/WordPress/plugin-check.git" |
| 18 |
}, |
| 19 |
"author": "", |
| 20 |
"license": "GPL-2.0-or-later", |
| 21 |
"bugs": { |
| 22 |
"url": "https://github.com/WordPress/plugin-check/issues" |
| 23 |
}, |
| 24 |
"homepage": "https://github.com/WordPress/plugin-check#readme", |
| 25 |
"dependencies": { |
| 26 |
"@wordpress/env": "^5.13.0" |
| 27 |
} |
| 28 |
} |
| 29 |
|