flutter/packages/flutter_tools/pubspec.yaml
yjbanov a2b1bd4673 "flutter drive" command
Runs a test app and a driver test simultaneously, then stops the app.

Usage:

```
flutter drive --target=/path/to/test/app.dart
```

This command will look for `/path/to/test/app_test.dart` by
convention. We will expand into other ways of discovering tests in the
future.
2016-02-19 18:11:53 -08:00

44 lines
1.2 KiB
YAML

name: flutter_tools
version: 0.0.38
description: Tools for building Flutter applications
homepage: http://flutter.io
author: Flutter Authors <flutter-dev@googlegroups.com>
environment:
sdk: '>=1.12.0 <2.0.0'
dependencies:
analyzer: '>=0.26.1+17' # see note below
archive: ^1.0.20
args: ^0.13.2+1
crypto: ^0.9.1
den_api: ^0.1.0
file: ^0.1.0
mustache4dart: ^1.0.0
path: ^1.3.0
pub_semver: ^1.0.0
stack_trace: ^1.4.0
test: 0.12.6+1 # see note below
yaml: ^2.1.3
xml: ^2.4.1
flx:
path: ../flx
# A note about 'test':
# We depend on very specific internal implementation details of the
# 'test' package, which change between versions, so here we pin it
# precisely. This is also pinned in the 'flutter' package.
# See also https://github.com/dart-lang/test/pull/320
# A note about 'analyzer':
# We don't actually depend on 'analyzer', but 'test' does. We aren't
# compatible with some older versions of 'analyzer'. We lie here,
# saying we do depend on it, so that we constrain the version that
# 'test' will get to a version that we'll probably be ok with. (This
# is why there's no upper bound on our dependency.)
# See also https://github.com/dart-lang/pub/issues/1356
dev_dependencies:
mockito: ^0.10.1