pubspec.yaml 883 Bytes
Newer Older
1 2
name: flutter_tools
version: 0.0.38
3 4 5
description: Tools for building Flutter applications
homepage: http://flutter.io
author: Flutter Authors <flutter-dev@googlegroups.com>
6 7

environment:
8
  sdk: '>=1.12.0 <2.0.0'
9

10
dependencies:
11
  analyzer: '>=0.26.1+17' # see note below
12
  archive: ^1.0.20
13
  args: ^0.13.0
Devon Carew's avatar
Devon Carew committed
14
  crypto: ^0.9.1
Devon Carew's avatar
Devon Carew committed
15
  mustache4dart: ^1.0.0
16
  path: ^1.3.0
17
  stack_trace: ^1.4.0
Devon Carew's avatar
Devon Carew committed
18
  test: ^0.12.5
19
  yaml: ^2.1.3
20

21 22 23
  flx:
    path: ../flx

Hixie's avatar
Hixie committed
24 25 26 27 28 29 30 31
# 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

Ian Fischer's avatar
Ian Fischer committed
32
dev_dependencies:
33
  mockito: ^0.10.1