Packages

Publish static files to static file hoster (Netlify or S3)

Current section

Files

Jump to
publishex mix.exs
Raw

mix.exs

defmodule Publishex.MixProject do
use Mix.Project
@url "https://github.com/maartenvanvliet/publishex"
def project do
[
app: :publishex,
version: "1.0.1",
elixir: "~> 1.9",
start_permanent: Mix.env() == :prod,
deps: deps(),
source_url: @url,
homepage_url: @url,
name: "Publishex",
description: "Publish static files to static file hoster (e.g. Netlify)",
package: [
maintainers: ["Maarten van Vliet"],
licenses: ["MIT"],
links: %{"GitHub" => @url},
files: ~w(LICENSE README.md lib mix.exs)
],
docs: [
main: "Publishex",
canonical: "http://hexdocs.pm/publishex",
source_url: @url
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:httpoison, "~> 1.5"},
{:jason, "~> 1.1"},
{:ex_doc, "~> 0.21", only: :dev},
{:mox, "~> 0.5", only: :test},
{:credo, ">= 0.0.0", only: :dev, runtime: false}
]
end
end