Add the standard package and git files.

This commit is contained in:
Danila Fedorin 2018-05-25 12:15:22 -07:00
parent f9c7edf717
commit 74d844b60f
2 changed files with 29 additions and 0 deletions

11
.gitignore vendored Normal file
View File

@ -0,0 +1,11 @@
# Created by https://www.gitignore.io/api/elm
### Elm ###
# elm-package generated files
elm-stuff
# elm-repl generated files
repl-temp-*
# End of https://www.gitignore.io/api/elm

18
elm-package.json Normal file
View File

@ -0,0 +1,18 @@
{
"version": "1.0.0",
"summary": "helpful summary of your project, less than 80 characters",
"repository": "https://github.com/user/project.git",
"license": "BSD3",
"source-directories": [
"."
],
"exposed-modules": [],
"dependencies": {
"NoRedInk/elm-decode-pipeline": "3.0.0 <= v < 4.0.0",
"elm-lang/core": "5.1.1 <= v < 6.0.0",
"elm-lang/html": "2.0.0 <= v < 3.0.0",
"elm-lang/http": "1.0.0 <= v < 2.0.0",
"elm-lang/websocket": "1.0.2 <= v < 2.0.0"
},
"elm-version": "0.18.0 <= v < 0.19.0"
}