mirror of
https://gh.wpcy.net/https://github.com/wp-cli/scaffold-command.git
synced 2026-04-27 10:26:26 +08:00
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
17 lines
350 B
Text
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"
|
|
}
|
|
}
|