-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
28 lines (28 loc) · 896 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
{
"name": "elm-pong",
"version": "1.0.0",
"description": "A tutorial on how to make a pong game in elm. Follow-along blog post: http://mathieu.agopian.info/blog/making-a-pong-game-in-elm.html",
"main": "index.js",
"scripts": {
"build": "elm make src/Main.elm --optimize --output=app.js",
"deploy": "npm run build && gh-pages --dist ./",
"debug": "elm-live src/Main.elm -- --debug --output=app.js",
"live": "elm-live src/Main.elm -- --output=app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/magopian/elm-pong.git"
},
"bugs": {
"url": "https://github.com/magopian/elm-pong/issues"
},
"homepage": "https://github.com/magopian/elm-pong#readme",
"author": "Magopian",
"license": "ISC",
"devDependencies": {
"elm": "^0.19.0-nodeps",
"elm-format": "^0.8.1",
"elm-live": "^3.0.6",
"gh-pages": "^2.0.0"
}
}