forked from erlandsona/elm-accessors
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"author": "Austin Erlandson",
"name": "elm-accessors",
"description": "Describe how to reach a structure's content to [map](Reach#over)/[`view`](Reach#view) arbitrary content more easily",
"version": "1.0.0",
"license": "MIT",
"homepage": "https://github.com/erlandsona/elm-accessors#README",
"repository": {
"type": "git",
"url": "git+https://github.com/erlandsona/elm-accessors.git"
},
"bugs": {
"url": "https://github.com/erlandsona/elm-accessors/issues"
},
"scripts": {
"test": "run-s elm:doctest elm:test",
"test:watch": "npm-watch test",
"elm:test": "elm-test",
"elm:doctest": "elm-verify-examples -r"
},
"watch": {
"test": {
"patterns": [
"src",
"tests/Laws",
"tests/Spec"
],
"extensions": "elm",
"ignore": "tests/VerifyExamples"
}
},
"devDependencies": {
"elm": "^0.19.1-5",
"elm-review": "^2.7.6",
"elm-test": "^0.19.1-revision10",
"elm-verify-examples": "^5.2.0",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.11.0"
}
}