-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
35 lines (35 loc) · 873 Bytes
/
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
{
"name": "elm-monocle",
"version": "1.6.0",
"description": "Library providing purely functional abstractions to manipulate records",
"scripts": {
"compile": "elm make ./src/**/*.elm --output monocle.js",
"install-with-elm": "yarn install && elm make",
"test": "elm-test",
"test-and-watch": "elm-test --watch",
"bump": "elm bump",
"publish": "elm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arturopala/elm-monocle.git"
},
"keywords": [
"monocle",
"lens",
"iso",
"prism",
"optional",
"record"
],
"author": "Artur Opala",
"license": "MIT",
"bugs": {
"url": "https://github.com/arturopala/elm-monocle/issues"
},
"homepage": "https://github.com/arturopala/elm-monocle#readme",
"devDependencies": {
"elm": "^0.19.0",
"elm-test": "0.19.0-beta9"
}
}