lex_luthor/mix.exs

49 lines
1.3 KiB
Elixir
Raw Normal View History

2015-03-06 11:22:23 +13:00
defmodule LexLuthor.Mixfile do
use Mix.Project
2023-07-25 15:10:13 +12:00
@version "0.1.2"
2015-03-06 11:22:23 +13:00
def project do
2021-01-27 10:20:18 +13:00
[
app: :lex_luthor,
2023-07-25 15:10:13 +12:00
version: @version,
elixir: "~> 1.11",
2021-01-27 10:20:18 +13:00
description:
"LexLuthor is a Lexer in Elixir (say that 10 times fast) which uses macros to generate a reusable lexers. Good times.",
2023-07-25 15:10:13 +12:00
source_url: "https://code.harton.nz/james/lex_luthor",
2021-01-27 10:20:18 +13:00
package: [
2023-07-25 15:10:13 +12:00
maintainers: ["James Harton <james@harton.nz>"],
2021-01-27 10:20:18 +13:00
licenses: ["MIT"],
2023-07-25 15:10:13 +12:00
links: %{"Source" => "https://code.harton.nz/james/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
2023-07-25 15:10:13 +12:00
[extra_applications: [:logger]]
2015-03-06 11:22:23 +13:00
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
[
2023-07-25 15:10:13 +12:00
{:credo, "~> 1.5", only: ~w[dev test]a},
{:ex_check, "~> 0.15.0", only: ~w[dev test]a},
{:ex_doc, ">= 0.0.0", only: ~w[dev test]a},
2023-07-25 16:16:03 +12:00
{:git_ops, "~> 2.4", only: ~w[dev test]a, runtime: false},
{:mix_audit, "~> 2.1", only: ~w[dev test]a}
2016-09-05 19:37:26 +12:00
]
2015-03-06 11:22:23 +13:00
end
end