Current section

Files

Jump to
Raw

mix.exs

defmodule WebsocketMock.MixProject do
use Mix.Project
def project do
[
app: :websocket_mock,
description: "A lightweight WebSocket mock server for testing",
version: "0.1.0",
elixir: "~> 1.18",
deps: deps(),
package: package()
]
end
def application do
[]
end
defp deps do
[
{:plug, "~> 1.18"},
{:bandit, "~> 1.7"},
{:websock_adapter, "~> 0.5"},
{:websockex, "~> 0.5", only: :test, hex: :websockex_wt},
{:ex_doc, "~> 0.31", only: :dev, runtime: false}
]
end
defp package do
[
licenses: ["MIT"],
maintainers: ["Pascal Pfeiffer"],
links: %{
"GitHub" => "https://github.com/pascal736/websocket_mock"
}
]
end
end