-
Notifications
You must be signed in to change notification settings - Fork 7
/
meta.json
45 lines (45 loc) · 1.1 KB
/
meta.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"prompts": {
"name": {
"type": "string",
"required": true,
"label": "Project name, single word, no space or punctuations"
},
"description": {
"type": "string",
"required": true,
"label": "Project description",
"default": "A Vue.js project"
},
"author": {
"type": "string",
"label": "Author"
},
"license": {
"type": "string",
"label": "License",
"default": "MIT"
},
"host": {
"type": "string",
"required": true,
"label": "Web site host name, like 'google'"
},
"port": {
"type": "number",
"required": true,
"default": 8080,
"label": "dev server port"
},
"useproxy": {
"type": "confirm",
"label": "Do you want to enable proxy table?"
},
"sitemap": {
"type": "confirm",
"label": "Do you want to use a sitemap?"
}
},
"skipInterpolation": "src/js/lib/*.js",
"completeMessage": "{{#inPlace}}To get started:\n\n npm install\n npm start{{else}}To get started:\n\n cd {{destDirName}}\n npm install\n npm start{{/inPlace}}"
}