Add elm-test stuff.

This commit is contained in:
Richard Feldman
2016-03-04 03:52:41 -08:00
parent 145aa8414f
commit 3460867e6a
2 changed files with 6 additions and 3 deletions

View File

@@ -4,14 +4,17 @@
"repository": "https://github.com/evancz/start-app.git",
"license": "BSD-3-Clause",
"source-directories": [
"src"
"src",
"test"
],
"exposed-modules": [],
"dependencies": {
"elm-lang/core": "3.0.0 <= v < 4.0.0",
"evancz/elm-effects": "2.0.0 <= v < 3.0.0",
"evancz/elm-html": "4.0.0 <= v < 5.0.0",
"evancz/start-app": "2.0.0 <= v < 3.0.0"
"evancz/start-app": "2.0.0 <= v < 3.0.0",
"deadfoxygrandpa/elm-test": "3.1.1 <= v < 4.0.0",
"laszlopandy/elm-console": "1.0.3 <= v < 2.0.0"
},
"elm-version": "0.16.0 <= v < 0.17.0"
}

View File

@@ -5,7 +5,7 @@
"scripts": {
"build": "elm-make src/FunkHub.elm --output elm.js",
"watch": "elm-live src/FunkHub.elm --open -- --output=elm.js",
"test": "elm-test TestRunner.elm",
"test": "elm-test test/TestRunner.elm",
"install": "elm-package install --yes && npm run build"
},
"repository": {