lex_luthor/mix.exs

45 lines
1.1 KiB
Elixir
Raw Normal View History

2015-03-06 11:22:23 +13:00
defmodule LexLuthor.Mixfile do
use Mix.Project
def project do
2021-01-27 10:20:18 +13:00
[
app: :lex_luthor,
2021-01-28 08:51:37 +13:00
version: "0.1.2",
2021-01-27 10:20:18 +13:00
elixir: "~> 1.0",
description:
"LexLuthor is a Lexer in Elixir (say that 10 times fast) which uses macros to generate a reusable lexers. Good times.",
2021-01-28 08:57:47 +13:00
source_url: "https://github.com/jimsynz/lex_luthor",
2021-01-27 10:20:18 +13:00
preferred_cli_env: [inch: :docs],
package: [
contributors: ["James Harton"],
licenses: ["MIT"],
2021-01-28 08:57:47 +13:00
links: %{"Source" => "https://github.com/jimsynz/lex_luthor"}
2021-01-27 10:20:18 +13:00
],
deps: deps()
]
2015-03-06 11:22:23 +13:00
end
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
[applications: [:logger]]
end
# Dependencies can be Hex packages:
#
# {:mydep, "~> 0.3.0"}
#
# Or git/path repositories:
#
# {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"}
#
# Type `mix help deps` for more examples and options
defp deps do
2016-09-05 19:37:26 +12:00
[
2017-04-27 08:01:56 +12:00
{:ex_doc, ">= 0.0.0", only: :dev},
2021-01-27 10:20:18 +13:00
{:credo, "~> 1.5", only: ~w(dev test)a}
2016-09-05 19:37:26 +12:00
]
2015-03-06 11:22:23 +13:00
end
end