2018-11-05 20:34:26 +03:00
{
"name" : "elm-lint" ,
"version" : "1.0.0" ,
"description" : "An [Elm](http://elm-lang.org/) linter written in Elm. Get your code from correct to better. You can learn about the API and the rules it provides on the [package documentation](http://package.elm-lang.org/packages/jfmengels/elm-lint)." ,
"main" : "index.js" ,
"directories" : {
"example" : "example" ,
"test" : "tests"
} ,
"scripts" : {
2019-08-01 10:20:21 +03:00
"test" : "elm make --docs=elm-stuff/docs.json && elm-format src/ --validate && elm-test && elm-xref" ,
2019-06-26 13:32:58 +03:00
"test:watch" : "npm run test -s -- --watch"
2018-11-05 20:34:26 +03:00
} ,
"repository" : {
"type" : "git" ,
"url" : "git+https://github.com/jfmengels/elm-lint.git"
} ,
"author" : "" ,
"license" : "ISC" ,
"bugs" : {
"url" : "https://github.com/jfmengels/elm-lint/issues"
} ,
"homepage" : "https://github.com/jfmengels/elm-lint#readme" ,
"dependencies" : {
2019-06-30 12:34:58 +03:00
"elm" : "^0.19.0-no-deps"
} ,
"devDependencies" : {
"elm-format" : "^0.8.1" ,
2019-07-24 20:27:25 +03:00
"elm-test" : "^0.19.0-rev6" ,
"elm-xref" : "^4.0.0"
2018-11-05 20:34:26 +03:00
}
}