forked from rtfeldman/elm-spa-example
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 942 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
36
{
"name": "elm-realworld-example-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "elm make src/Main.elm --output=elm.js --optimize && elm-minify elm.js --overwrite",
"watch": "elm-live src/Main.elm -o -- --output=elm.js --debug",
"test": "elm-test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmy/elm-realworld-example-app.git"
},
"keywords": [
"elm",
"realworld",
"example",
"app"
],
"author": "Rémi Lefèvre",
"license": "MIT",
"bugs": {
"url": "https://github.com/dmy/elm-realworld-example-app/issues"
},
"homepage": "https://github.com/dmy/elm-realworld-example-app#readme",
"devDependencies": {
"elm": "^0.19.1-3",
"elm-analyse": "^0.16.5",
"elm-doc-preview": "^5.0.3",
"elm-live": "^4.0.2",
"elm-minify": "^2.0.4",
"elm-test": "^0.19.1-revision2",
"elm-xref": "^4.1.0"
}
}