lex_luthor/mix.exs
James Harton f2664f6f99
All checks were successful
continuous-integration/drone/push Build is passing
chore: Update package links and docs.
2024-03-06 20:26:06 +13:00

58 lines
1.6 KiB
Elixir

defmodule LexLuthor.Mixfile do
use Mix.Project
@version "0.1.2"
def project do
[
app: :lex_luthor,
version: @version,
elixir: "~> 1.11",
description:
"LexLuthor is a Lexer in Elixir (say that 10 times fast) which uses macros to generate a reusable lexers. Good times.",
source_url: "https://harton.dev/james/lex_luthor",
package: [
maintainers: ["James Harton <james@harton.nz>"],
licenses: ["MIT"],
links: %{
"Source" => "https://harton.dev/james/lex_luthor",
"GitHub" => "https://github.com/jimsynz/lex_luthor",
"Changelog" => "https://docs.harton.nz/james/lex_luthor/changelog.html",
"Sponsor" => "https://github.com/sponsors/jimsynz"
}
],
deps: deps(),
docs: [
main: "readme",
extras: ["README.md", "CHANGELOG.md"]
]
]
end
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
[extra_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
[
{:credo, "~> 1.5", only: ~w[dev test]a},
{:ex_check, "~> 0.16.0", only: ~w[dev test]a},
{:ex_doc, ">= 0.0.0", only: ~w[dev test]a},
{:git_ops, "~> 2.4", only: ~w[dev test]a, runtime: false},
{:mix_audit, "~> 2.1", only: ~w[dev test]a}
]
end
end