2019-11-15 23:26:29 +01:00
|
|
|
|
{
|
2021-04-27 08:32:47 +02:00
|
|
|
|
"name": "automattic/jetpack",
|
|
|
|
|
|
"description": "Jetpack supercharges your self‑hosted WordPress site with the awesome cloud power of WordPress.com",
|
|
|
|
|
|
"homepage": "https://jetpack.com/",
|
|
|
|
|
|
"type": "wordpress-plugin",
|
|
|
|
|
|
"license": "GPL-2.0-or-later",
|
|
|
|
|
|
"support": {
|
|
|
|
|
|
"issues": "https://github.com/Automattic/jetpack/issues"
|
|
|
|
|
|
},
|
|
|
|
|
|
"require": {
|
|
|
|
|
|
"ext-fileinfo": "*",
|
|
|
|
|
|
"ext-json": "*",
|
|
|
|
|
|
"ext-openssl": "*",
|
|
|
|
|
|
"automattic/jetpack-a8c-mc-stats": "^1.4",
|
|
|
|
|
|
"automattic/jetpack-abtest": "^1.9",
|
|
|
|
|
|
"automattic/jetpack-assets": "^1.11",
|
|
|
|
|
|
"automattic/jetpack-autoloader": "^2.10",
|
2021-07-23 11:58:50 +02:00
|
|
|
|
"automattic/jetpack-backup": "^1.1",
|
|
|
|
|
|
"automattic/jetpack-blocks": "^1.4",
|
2021-04-27 08:32:47 +02:00
|
|
|
|
"automattic/jetpack-compat": "^1.6",
|
|
|
|
|
|
"automattic/jetpack-config": "^1.4",
|
2021-07-23 11:58:50 +02:00
|
|
|
|
"automattic/jetpack-connection": "^1.30",
|
2021-08-17 08:33:07 +02:00
|
|
|
|
"automattic/jetpack-connection-ui": "^1.3",
|
2021-04-27 08:32:47 +02:00
|
|
|
|
"automattic/jetpack-constants": "^1.6",
|
|
|
|
|
|
"automattic/jetpack-device-detection": "^1.4",
|
|
|
|
|
|
"automattic/jetpack-error": "^1.3",
|
|
|
|
|
|
"automattic/jetpack-heartbeat": "^1.3",
|
2021-08-17 08:33:07 +02:00
|
|
|
|
"automattic/jetpack-identity-crisis": "^0.2.2",
|
2021-07-23 11:58:50 +02:00
|
|
|
|
"automattic/jetpack-jitm": "^1.16",
|
|
|
|
|
|
"automattic/jetpack-lazy-images": "^1.5",
|
2021-04-27 08:32:47 +02:00
|
|
|
|
"automattic/jetpack-licensing": "^1.4",
|
|
|
|
|
|
"automattic/jetpack-logo": "^1.5",
|
2021-07-23 11:58:50 +02:00
|
|
|
|
"automattic/jetpack-options": "^1.13",
|
|
|
|
|
|
"automattic/jetpack-partner": "^1.5",
|
|
|
|
|
|
"automattic/jetpack-redirect": "^1.7",
|
2021-04-27 08:32:47 +02:00
|
|
|
|
"automattic/jetpack-roles": "^1.4",
|
2021-07-23 11:58:50 +02:00
|
|
|
|
"automattic/jetpack-status": "^1.8",
|
2021-08-17 08:33:07 +02:00
|
|
|
|
"automattic/jetpack-sync": "^1.24",
|
2021-04-27 08:32:47 +02:00
|
|
|
|
"automattic/jetpack-terms-of-service": "^1.9",
|
|
|
|
|
|
"automattic/jetpack-tracking": "^1.13",
|
2021-07-23 11:58:50 +02:00
|
|
|
|
"nojimage/twitter-text-php": "3.1.2"
|
2021-04-27 08:32:47 +02:00
|
|
|
|
},
|
|
|
|
|
|
"require-dev": {
|
2021-07-23 11:58:50 +02:00
|
|
|
|
"automattic/jetpack-changelogger": "^1.2"
|
2021-04-27 08:32:47 +02:00
|
|
|
|
},
|
|
|
|
|
|
"scripts": {
|
|
|
|
|
|
"build-production": [
|
|
|
|
|
|
"Composer\\Config::disableProcessTimeout",
|
2021-07-23 11:58:50 +02:00
|
|
|
|
"pnpm run build-production-concurrently"
|
2021-04-27 08:32:47 +02:00
|
|
|
|
],
|
|
|
|
|
|
"build-development": [
|
|
|
|
|
|
"Composer\\Config::disableProcessTimeout",
|
2021-07-23 11:58:50 +02:00
|
|
|
|
"pnpm run build-concurrently"
|
2021-04-27 08:32:47 +02:00
|
|
|
|
],
|
|
|
|
|
|
"test-coverage": [
|
|
|
|
|
|
"Composer\\Config::disableProcessTimeout",
|
|
|
|
|
|
"@composer install",
|
2021-08-17 08:33:07 +02:00
|
|
|
|
"@php tools/build-module-headings-translations.php",
|
2021-04-27 08:32:47 +02:00
|
|
|
|
"tests/action-test-coverage.sh"
|
|
|
|
|
|
],
|
|
|
|
|
|
"test-js": [
|
|
|
|
|
|
"Composer\\Config::disableProcessTimeout",
|
2021-07-23 11:58:50 +02:00
|
|
|
|
"pnpm install",
|
|
|
|
|
|
"pnpx concurrently 'pnpm:test-adminpage' 'pnpm:test-extensions' 'pnpm:test-search'"
|
2021-04-27 08:32:47 +02:00
|
|
|
|
],
|
|
|
|
|
|
"test-php": [
|
|
|
|
|
|
"Composer\\Config::disableProcessTimeout",
|
|
|
|
|
|
"@composer install",
|
2021-08-17 08:33:07 +02:00
|
|
|
|
"@php tools/build-module-headings-translations.php",
|
2021-04-27 08:32:47 +02:00
|
|
|
|
"tests/action-test-php.sh"
|
|
|
|
|
|
],
|
|
|
|
|
|
"watch": [
|
|
|
|
|
|
"Composer\\Config::disableProcessTimeout",
|
2021-07-23 11:58:50 +02:00
|
|
|
|
"pnpm run watch"
|
2021-04-27 08:32:47 +02:00
|
|
|
|
]
|
|
|
|
|
|
},
|
|
|
|
|
|
"repositories": [],
|
|
|
|
|
|
"autoload": {
|
|
|
|
|
|
"classmap": [
|
|
|
|
|
|
"src"
|
|
|
|
|
|
]
|
|
|
|
|
|
},
|
|
|
|
|
|
"minimum-stability": "dev",
|
|
|
|
|
|
"prefer-stable": true,
|
|
|
|
|
|
"config": {
|
|
|
|
|
|
"sort-packages": true,
|
|
|
|
|
|
"platform": {
|
|
|
|
|
|
"ext-intl": "0.0.0"
|
|
|
|
|
|
},
|
2021-08-17 08:33:07 +02:00
|
|
|
|
"autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_0"
|
2021-04-27 08:32:47 +02:00
|
|
|
|
},
|
|
|
|
|
|
"extra": {
|
|
|
|
|
|
"mirror-repo": "Automattic/jetpack-production",
|
|
|
|
|
|
"release-branch-prefix": "jetpack",
|
|
|
|
|
|
"version-constants": {
|
|
|
|
|
|
"JETPACK__VERSION": "jetpack.php"
|
|
|
|
|
|
},
|
|
|
|
|
|
"wp-plugin-slug": "jetpack",
|
|
|
|
|
|
"changelogger": {
|
|
|
|
|
|
"versioning": "wordpress",
|
|
|
|
|
|
"types": {
|
|
|
|
|
|
"major": "Major Enhancements",
|
|
|
|
|
|
"enhancement": "Enhancements",
|
|
|
|
|
|
"compat": "Improved compatibility",
|
2021-07-23 11:58:50 +02:00
|
|
|
|
"bugfix": "Bug fixes",
|
|
|
|
|
|
"other": "Other changes <!-- Non-user-facing changes go here. This section will not be copied to readme.txt. -->"
|
2021-04-27 08:32:47 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2019-11-15 23:26:29 +01:00
|
|
|
|
}
|