blob: d07b8f9e559092916e828e039f9535043617a5bb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
local Pkg = require "mason-core.package"
local npm = require "mason-core.managers.npm"
return Pkg.new {
name = "jsonlint",
desc = [[A pure JavaScript version of the service provided at jsonlint.com.]],
homepage = "https://github.com/zaach/jsonlint",
languages = {
Pkg.Lang.JSON,
},
categories = { Pkg.Cat.Linter },
install = npm.packages { "jsonlint", bin = { "jsonlint" } },
}
|