-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 791 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "trains",
"version": "1.0.0",
"description": "Trains.today - Live Helsinki regional train station schedules",
"main": "index.html",
"scripts": {
"start": "elm-live src/Main.elm -- --output=elm.js",
"test": "elm-format . --validate && elm-test",
"serve": "python -m SimpleHTTPServer 8000",
"build": "elm make src/Main.elm --output=elm.js --optimize",
"build-dev": "elm make src/Main.elm --output=elm.js",
"build-debug": "elm make src/Main.elm --debug --output=elm.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ohanhi/trains.git"
},
"author": "ohanhi",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/ohanhi/trains/issues"
},
"homepage": "https://github.com/ohanhi/trains#readme"
}