Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

Add new deployments to package.json - Closes #455 #457

Merged
merged 2 commits into from
Jul 10, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"test": "grunt eslint && export NODE_ENV=test && karma start",
"test-live": "export NODE_ENV=test && export LIVE=true && karma start",
"start": "electron app",
"dist:win": "build --win",
"dist:win": "build --win --ia32 --x64",
"dist:mac": "build --mac",
"dist:linux": "build --linux"
"dist:linux": "build --linux --ia32 --x64 --armv7l"
},
"author": "Lisk Foundation <[email protected]>, lightcurve GmbH <[email protected]>",
"license": "GPL-3.0",
Expand Down Expand Up @@ -128,6 +128,15 @@
"build": {
"appId": "io.lisk.nano",
"productName": "Lisk Nano",
"artifactName": "lisk-nano-${os}-${arch}-${version}.${ext}",
"linux": {
"target": [
"AppImage",
"deb",
"rpm",
"tar.gz"
]
},
"win": {
"target": "nsis"
}
Expand Down