-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathelm.json
More file actions
23 lines (23 loc) · 772 Bytes
/
elm.json
File metadata and controls
23 lines (23 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"type": "package",
"name": "jfmengels/elm-review-code-style",
"summary": "Provide elm-review rules to follow some of my personal code style preferences",
"license": "BSD-3-Clause",
"version": "1.2.0",
"exposed-modules": [
"NoRedundantlyQualifiedType",
"NoSimpleLetBody",
"NoUnnecessaryTrailingUnderscore"
],
"elm-version": "0.19.0 <= v < 0.20.0",
"dependencies": {
"elm/core": "1.0.5 <= v < 2.0.0",
"jfmengels/elm-review": "2.13.0 <= v < 3.0.0",
"stil4m/elm-syntax": "7.2.9 <= v < 8.0.0"
},
"test-dependencies": {
"elm/json": "1.1.3 <= v < 2.0.0",
"elm/project-metadata-utils": "1.0.2 <= v < 2.0.0",
"elm-explorations/test": "2.1.1 <= v < 3.0.0"
}
}