mirror of
https://github.com/jfmengels/elm-review.git
synced 2024-11-24 15:54:02 +03:00
33 lines
950 B
JSON
33 lines
950 B
JSON
{
|
|
"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": {
|
|
"test": "elm make && elm-test && elm-xref",
|
|
"test:watch": "npm run test -s -- --watch"
|
|
},
|
|
"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": {
|
|
"elm": "^0.19.0-no-deps"
|
|
},
|
|
"devDependencies": {
|
|
"elm-format": "^0.8.1",
|
|
"elm-test": "^0.19.0-rev6",
|
|
"elm-xref": "^4.0.0"
|
|
}
|
|
}
|