-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 1.24 KB
/
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
29
30
31
32
33
34
35
{
"name": "elm-ihatemoney",
"version": "1.0.0",
"description": "I Hate Money UI",
"scripts": {
"build": "npm run cleanup && npm run copy-assets && elm make src/Main.elm --output=build/app.js && npm run optimize",
"copy-assets": "rimraf build && mkdir build && cp -r public/* build",
"cleanup": "rimraf elm-stuff/",
"debug": "elm-live src/Main.elm --port=3000 --dir=public/ -- --output=public/app.js --debug",
"deploy": "npm run build && gh-pages --dist build/",
"live": "elm-live src/Main.elm --port=3000 --dir=public/ -- --output=public/app.js",
"test": "elm-test",
"optimize": "uglifyjs build/app.js -c $npm_package_uglify_params | uglifyjs -m --output=build/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spiral-project/elm-ihatemoney.git"
},
"bugs": {
"url": "https://github.com/spiral-project/elm-ihatemoney/issues"
},
"homepage": "https://github.com/spiral-project/elm-ihatemoney#readme",
"author": "spiral-project",
"license": "ISC",
"devDependencies": {
"elm": "^0.19.1-3",
"elm-analyse": "0.16.5",
"elm-format": "^0.8.1",
"elm-live": "^4.0.1",
"elm-test": "^0.19.1",
"gh-pages": "^2.0.1",
"rimraf": "^2.6.2",
"uglify-js": "^3.4.9"
}
}