elm-review/package.json

32 lines
900 B
JSON
Raw Normal View History

{
"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-06-26 13:32:58 +03:00
"test": "elm-test",
"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": {
2019-06-30 12:34:58 +03:00
"elm": "^0.19.0-no-deps"
},
"devDependencies": {
"elm-format": "^0.8.1",
"elm-test": "^0.19.0-rev6"
}
}