-
-
Notifications
You must be signed in to change notification settings - Fork 197
Expand file tree
/
Copy pathcookiecutter.json
More file actions
23 lines (23 loc) · 792 Bytes
/
cookiecutter.json
File metadata and controls
23 lines (23 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"project_name": "my dash component",
"project_shortname": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_') }}",
"component_name": "{{ cookiecutter.project_shortname.split('_')|map('capitalize')|join('') }}",
"jl_prefix": "",
"r_prefix": "",
"author_name": "Enter your first and last name (For package.json)",
"author_email": "Enter your email (For package.json)",
"github_org": "",
"description": "Project Description",
"use_async": ["False", "True"],
"component_type": ["Function Component", "Class Component"],
"license": [
"MIT License",
"BSD License",
"ISC License",
"Apache Software License 2.0",
"GNU General Public License v3",
"Not open source"
],
"publish_on_npm": true,
"install_dependencies": true
}