defmodule ESTree.Mixfile do use Mix.Project def project do [app: :estree, version: "2.6.1", elixir: "~> 1.0", deps: deps(), description: description(), package: package(), source_url: "https://github.com/bryanjos/elixir-estree"] end def application do [extra_applications: [:logger]] end defp deps do [ {:ex_doc, "~> 0.15.1", only: :dev}, {:dialyze, "~> 0.2", only: :dev}, {:shouldi, "~> 0.3.2", only: :test}, {:poison, "~> 3.0", only: :test}, ] end defp description do """ Represents the JavaScript AST from the ESTree spec. Includes tools for building an AST and generating code from it. """ end defp package do [ # These are the default files included in the package files: ["lib", "mix.exs", "README.md", "CHANGELOG.md"], maintainers: ["Bryan Joseph"], licenses: ["MIT"], links: %{ "GitHub" => "https://github.com/bryanjos/elixir-estree" } ] end end