forked from loafle/openapi-generator-original
* Add Dart configuration flag to set new generator * Change templates to add json_serializable generator * Fix dart tests * Add custom serialization for standard generator * this change opens us a way to allow adding more than 2 generators * Add sample project for json_serializer * Use basename for json field name * Update samples with basename as json key * Update dart generator docs * Create AbstractDartCodegen class * Update docs, dart-dio and dart-jaguar dont get json_serializable yet * Deduplicate method calls * Dix dart-dio generation * Revert formatting change in dart mustache * Fix formatting changes again * Improve dart serialization documentation specify default serializer * Better name for cli option * Rename default dart generator to 'native' * Another attempt to reduce whitespace noise * Fix api-client and api-helper * Rename default serialization mode to include word serialization * Remove trailing whitespace in enums
24 lines
543 B
Plaintext
Vendored
24 lines
543 B
Plaintext
Vendored
#
|
|
# AUTO-GENERATED FILE, DO NOT MODIFY!
|
|
#
|
|
|
|
name: '{{{pubName}}}'
|
|
version: '{{{pubVersion}}}'
|
|
description: '{{{pubDescription}}}'
|
|
authors:
|
|
- '{{{pubAuthor}}} <{{{pubAuthorEmail}}}>'
|
|
homepage: '{{{pubHomepage}}}'
|
|
environment:
|
|
sdk: '>=2.0.0 <3.0.0'
|
|
dependencies:
|
|
http: '>=0.12.0 <0.13.0'
|
|
intl: '^0.16.1'
|
|
meta: '^1.1.8'
|
|
{{#json_serializable}}
|
|
json_annotation: '^3.1.1'{{/json_serializable}}
|
|
dev_dependencies:
|
|
test: '>=1.3.0 <1.16.0'
|
|
{{#json_serializable}}
|
|
build_runner: '^1.0.0'
|
|
json_serializable: '^3.5.1'{{/json_serializable}}
|