OLD | NEW |
1 name: dev_compiler | 1 name: dev_compiler |
2 version: 0.1.5 | 2 version: 0.1.5 |
3 description: > | 3 description: > |
4 Experimental Dart to JavaScript compiler designed to create idiomatic, | 4 Experimental Dart to JavaScript compiler designed to create idiomatic, |
5 readable JavaScript output. | 5 readable JavaScript output. |
6 author: Dart Dev Compiler team <dev-compiler@dartlang.org> | 6 author: Dart Dev Compiler team <dev-compiler@dartlang.org> |
7 homepage: https://github.com/dart-lang/dev_compiler | 7 homepage: https://github.com/dart-lang/dev_compiler |
8 dependencies: | 8 dependencies: |
9 analyzer: ^0.26.0-alpha.0 | 9 analyzer: ^0.26.0-alpha.0 |
10 args: ^0.13.0 | 10 args: ^0.13.0 |
11 cli_util: ^0.0.1 | 11 cli_util: ^0.0.1 |
12 crypto: ^0.9.0 | 12 crypto: ^0.9.0 |
13 html: ^0.12.0 | 13 html: ^0.12.0 |
14 logging: ">=0.9.2 <0.12.0" | 14 logging: ">=0.9.2 <0.12.0" |
15 path: ^1.3.0 | 15 path: ^1.3.0 |
16 shelf: ">=0.5.6 <0.7.0" | 16 shelf: ">=0.5.6 <0.7.0" |
17 shelf_static: ^0.2.1 | 17 shelf_static: ^0.2.1 |
18 source_maps: ^0.10.0 | 18 source_maps: ^0.10.0 |
19 source_span: ^1.0.2 | 19 source_span: ^1.0.2 |
20 yaml: ^2.1.2 | 20 yaml: ^2.1.2 |
21 dev_dependencies: | 21 dev_dependencies: |
22 # We pin a specific version to ensure everyone is formatting the code exactly | 22 # We pin a specific version to ensure everyone is formatting the code exactly |
23 # the same way. This is because any change in dart_style, even non-breaking | 23 # the same way. This is because any change in dart_style, even non-breaking |
24 # changes, may change the output format. | 24 # changes, may change the output format. |
25 dart_style: 0.2.0-rc.3 | 25 dart_style: 0.2.0 |
26 pub_semver: ^1.1.0 | 26 pub_semver: ^1.1.0 |
27 test: ^0.12.0 | 27 test: ^0.12.0 |
28 environment: | 28 environment: |
29 sdk: ">=1.12.0-dev.1.1 <2.0.0" | 29 sdk: ">=1.12.0-dev.1.1 <2.0.0" |
30 executables: | 30 executables: |
31 # Similar to "analyzer.dart" and its command line "dartanalyzer", we use | 31 # Similar to "analyzer.dart" and its command line "dartanalyzer", we use |
32 # "dartdevc" and "devc.dart" | 32 # "dartdevc" and "devc.dart" |
33 dartdevc: devc | 33 dartdevc: devc |
34 # Similar to dartdevc, but runs the (single) entry point with iojs (requires | 34 # Similar to dartdevc, but runs the (single) entry point with iojs (requires |
35 # a very recent iojs next-nightly version). | 35 # a very recent iojs next-nightly version). |
36 dartdevrun: devrun | 36 dartdevrun: devrun |
OLD | NEW |