vue-cli-template-library
Version:
Template for developing open-source vue.js libraries
32 lines • 791 B
JavaScript
module.exports = {
prompts: {
name: {
type: "string",
required: true,
label: "Project name (kebab-case only)"
},
description: {
type: "string",
required: true,
label: "Project description",
default: "A Vue.js 2.0 library project"
},
author: {
type: "string",
label: "Author"
},
email: {
type: "string",
required: true,
label: "Email"
},
repos: {
type: "string",
required: true,
label: "Github repository URL",
default: "user/repository"
}
},
"skipInterpolation": "src/**/*.{html,vue}",
"completeMessage": "To get started and/or setup your automatic deployment, please read the contributing documentation: {{destDirName}}/.github/CONTRIBUTING.md"
}