Packages

Functions to publish and upload remote images into Ghost CMS

Current section

Files

Jump to
Raw

mix.exs

defmodule GhostPublisher.MixProject do
use Mix.Project
def project do
[
app: :ghost_publisher,
version: "0.1.2",
elixir: "~> 1.9",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
name: "Ghost Publisher",
description: "Functions to publish and upload remote images into Ghost CMS",
source_url: "https://github.com/alvarolizama/ghost-publisher",
]
end
defp package() do
[
# These are the default files included in the package
files: ~w(lib .formatter.exs mix.exs README*),
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/alvarolizama/ghost-publisher"}
]
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
[
{:earmark, "~> 1.4"},
{:joken, "~> 2.0"},
{:temp, "~> 0.4"},
{:httpoison, "~> 1.6"},
{:jason, "~> 1.1"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
end