blob: 67d40455f89a5e7fd270a7ab1a82e6c5152561e8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
local Pkg = require "mason-core.package"
local npm = require "mason-core.managers.npm"
return Pkg.new {
name = "alex",
desc = [[Catch insensitive, inconsiderate writing]],
homepage = "https://github.com/get-alex/alex",
languages = { Pkg.Lang.Markdown },
categories = { Pkg.Cat.Linter },
install = npm.packages { "alex", bin = { "alex" } },
}
|