2016-12-21 20:34:04 +00:00
|
|
|
name: angel
|
|
|
|
description: An easily-extensible web server framework in Dart.
|
2017-06-10 15:24:36 +00:00
|
|
|
publish_to: none # Ensure we don't accidentally publish our private code! ;)
|
2016-12-21 20:34:04 +00:00
|
|
|
environment:
|
2018-06-05 23:51:20 +00:00
|
|
|
sdk: '>=2.0.0-dev <3.0.0'
|
2016-12-21 20:34:04 +00:00
|
|
|
homepage: https://github.com/angel-dart/angel
|
2017-10-19 21:53:33 +00:00
|
|
|
dependencies:
|
2018-03-29 23:55:28 +00:00
|
|
|
angel_auth: ^1.1.0 # Supports stateless authentication via JWT
|
2018-07-14 22:58:12 +00:00
|
|
|
angel_configuration: ^1.2.0 # Loads application configuration, along with support for .env files.
|
2017-10-19 21:53:33 +00:00
|
|
|
angel_cors: ^1.0.0 # CORS support
|
2018-03-29 23:55:28 +00:00
|
|
|
angel_framework: ^1.1.0 # The core server library.
|
|
|
|
angel_jael: ^1.0.0 # Server-side templating engine
|
|
|
|
angel_static: ^1.3.0 # Static file server
|
2017-10-19 21:59:45 +00:00
|
|
|
angel_validate: ^1.0.0 # Allows for validation of input data
|
2018-06-05 23:51:20 +00:00
|
|
|
dart2_constant: ^1.0.0 # For backwards compatibility.
|
2017-02-28 22:59:39 +00:00
|
|
|
dev_dependencies:
|
2018-06-05 23:51:20 +00:00
|
|
|
angel_hot: ^1.1.0 # Hot-reloading support. :)
|
2018-03-29 23:55:28 +00:00
|
|
|
angel_test: ^1.1.0 # Utilities for testing Angel servers.
|
2018-07-09 17:43:11 +00:00
|
|
|
console: ^3.0.0
|
|
|
|
test: ^0.12.13
|