chore: prepare for netlify

This commit is contained in:
Julien Lengrand-Lambert
2019-07-20 11:37:20 +02:00
parent 93531f4d26
commit 1ecd7ea230
3 changed files with 14056 additions and 0 deletions

4
netlify.toml Normal file
View File

@@ -0,0 +1,4 @@
[[redirects]]
from = "/*"
to = "/index.html"
status = 200

14023
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

29
package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "elm-dungeon",
"version": "1.0.0",
"description": "Simple dungeon tile based game written in Elm ",
"main": "build/index.html",
"directories": {
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "elm-app build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jlengrand/elm-dungeon.git"
},
"keywords": [
"elm"
],
"author": "Julien Lengrand-Lambert <julien@lengrand.fr>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jlengrand/elm-dungeon/issues"
},
"homepage": "https://github.com/jlengrand/elm-dungeon#readme",
"devDependencies": {
"create-elm-app": "^3.2.1"
}
}