scaffold-command/templates/plugin-packages.mustache
Julian Weiland 0f230568e0
Scripts added to plugin package.json
1. `start` This represents the default grunt task in Gruntfile.js
2. `readme` This script represents the Grunt Task for Readme.md generation
3. `i18n` This script represents the Grund Task for .pot generation
2019-04-26 15:53:42 +02:00

17 lines
350 B
Text

{
"name": "{{plugin_slug}}",
"version": "0.1.0",
"main": "Gruntfile.js",
"author": "{{plugin_author}}",
"scripts" : {
"start" : "grunt default" ,
"readme" : "grunt readme",
"i18n" : "grunt i18n"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-wp-i18n": "~0.5.0",
"grunt-wp-readme-to-markdown": "~1.0.0"
}
}