forked from fponticelli/dice.run
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.32 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": "dice.run",
"version": "1.0.0",
"main": "index.js",
"directories": {
"debug": "debug",
"deploy": "deploy"
},
"dependencies": {},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"stylus-watch": "stylus -w styl/index.styl -o debug",
"stylus": "stylus styl/index.styl -o debug",
"closure": "closure-compiler --js_output_file deploy/index.js debug/index.js && closure-compiler --js_output_file deploy/worker.js debug/worker.js",
"minifycss": "minify --output deploy/index.css debug/index.css",
"minifyhtml": "html-minifier --output deploy/index.html debug/index.html",
"haxe": "haxe build.hxml",
"assets": "cp -r assets debug & cp -r assets deploy",
"syncs3": "aws s3 sync deploy s3://dice.run --profile personal",
"build": "npm run haxe && npm run stylus && npm run closure && npm run minifycss && npm run minifyhtml && npm run assets",
"deploy": "npm run build && npm run syncs3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fponticelli/dice.run.git"
},
"author": "Franco Ponticelli <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/fponticelli/dice.run/issues"
},
"homepage": "https://github.com/fponticelli/dice.run#readme",
"description": ""
}