SymphonyElectron/package.json
2017-03-01 16:32:21 -08:00

69 lines
1.6 KiB
JSON

{
"name": "Symphony",
"productName": "Symphony",
"version": "1.0.1",
"description": "Symphony desktop app (Foundation ODP)",
"author": "Symphony",
"main": "js/main.js",
"scripts": {
"dev:mac": "ELECTRON_DEV=true npm run start",
"dev:win": "SET ELECTRON_DEV=true && npm run start",
"start": "electron .",
"dist-mac": "build --mac",
"dist-win": "build --win --x64",
"dist-win-x86": "build --win --ia32",
"unpacked-win": "build --win --x64 --dir",
"unpacked-win-x86": "build --win --ia32 --dir",
"test": "jest --coverage"
},
"build": {
"files": [ "!installer/*", "!tests/*" ],
"extraFiles": "config/Symphony.config",
"appId": "symphony-electron-desktop",
"mac": {
"target": "dmg",
"category": "public.app-category.business"
},
"dmg": {
"contents": [
{
"x": 140,
"y": 184
},
{
"x": 412,
"y": 184,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": "squirrel"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/SymphonyOSS/SymphonyElectron.git"
},
"keywords": [
"Symphony",
"start"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://support.symphony.com"
},
"devDependencies": {
"electron": "1.5.1",
"electron-builder": "^13.9.0",
"electron-builder-squirrel-windows": "^12.3.0",
"electron-packager": "^8.5.2",
"jest": "^19.0.2"
},
"dependencies": {
"electron-squirrel-startup": "^1.0.0",
"keymirror": "0.1.1"
}
}