minor fixes to package.json and Makefile...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2014-09-08 17:50:11 +04:00
parent c8e9bbc006
commit 13499c80b7
2 changed files with 24 additions and 18 deletions

View File

@ -111,9 +111,9 @@ zip: $(APP_ZIP)
#**********************************************************************
# dev env...
# see: package.json for a list...
node-deps:
npm install fs.extra
# npm install exif
npm install
dev: $(CSS_FILES)
#unzip -uj $(wildcard targets/node-webkit/node-webkit-*-win-ia32.zip) -d .

View File

@ -1,20 +1,26 @@
{
"name": "ImageGrid.Viewer",
"main": "index.html",
"version": "0.0.1",
"name": "ImageGrid.Viewer",
"main": "index.html",
"version": "0.0.1",
"window": {
"title": "ImageGrid.Viewer",
"position": "center",
"width": 900,
"height": 700,
"min_width": 400,
"min_height": 400,
"frame": false,
"toolbar": false
},
"window": {
"title": "ImageGrid.Viewer",
"position": "center",
"width": 900,
"height": 700,
"min_width": 400,
"min_height": 400,
"frame": false,
"toolbar": false
},
"webkit": {
"page-cache": true
}
"webkit": {
"page-cache": true
}
"dependencies": {
"requirejs": "*",
"fs.extra": "*"
}
}