-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 1.13 KB
/
package.json
File metadata and controls
22 lines (22 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"title": "CodeXplorer WordPress Plugin Deploy Helper",
"name": "cx-wp-plugin-deploy-helper",
"version": "1.0.0",
"description": "File to easily zip all files and folders to be ready for plugin install. Also for extraction to wordpress-org folder(or any folder of your choice) for auto deploy :)",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/Preciousomonze/cx-wp-plugin-deploy-helper"
},
"bugs": {
"url": "https://github.com/Preciousomonze/cx-wp-plugin-deploy-helper/issues"
},
"author": "Preciousomonze",
"scripts": {
"compress-zip": "php cx-wp-plugin-deploy-helper.php --plugin_name=woo-phone-validator --ignore_file_path=.git,.wordpress-org,node_modules,vendor,.sh --delete_files_in_zip=wp-plugin-deploy-helper.php,README.md,package-lock.json,composer.lock,.eslintrc.json,.distignore",
"offload-zip": "php cx-wp-plugin-deploy-helper.php --plugin_name=woo-phone-validator --offload=true",
"delete-zip": "sh compress-zip-offload.sh -dz",
"deploy": "npm run compress-zip && npm run offload-zip",
"deploy-ignore-zip": "npm run compress-zip && npm run offload-zip && npm run delete-zip"
}
}