UNPKG

generator-themeplate

Version:

A Yeoman Generator to kickstart WordPress theme development

42 lines (41 loc) 1.01 kB
{ "name": "<%= opts.projectSlug %>/<%= opts.projectSlug %>", "description": "<%= opts.description %>", "type": "wordpress-theme", "keywords": [ "generator-themeplate", "wordpress", "theme" ], "license": "<%= opts.license %>", "authors": [ { "name": "<%= opts.authorName %>", "email": "<%= opts.authorEmail %>", "homepage": "<%= opts.authorURI %>" } ], "config": { "optimize-autoloader": true, "preferred-install": "dist", "sort-packages": true, "allow-plugins": { "dealerdirect/phpcodesniffer-composer-installer": true } }, "minimum-stability": "dev", "prefer-stable": true, "require": { "php": "^7.4|^8.0" }, "require-dev": { "dealerdirect/phpcodesniffer-composer-installer": "^1.0", "wp-coding-standards/wpcs": "^3.0", "squizlabs/php_codesniffer": "^3.5", "phpcompatibility/phpcompatibility-wp": "^2.1" }, "scripts": { "lint": "phpcs --colors -p -s -v", "fix": "phpcbf -p -v" } }