Files
zulip-desktop/package.json
akashnimare e5a60cc077 📦 v0.5.2-Beta
2016-12-14 01:53:00 +05:30

118 lines
2.5 KiB
JSON

{
"name": "zulip",
"productName": "Zulip",
"version": "0.5.2",
"description": "Zulip Desktop App",
"license": "Apache-2.0",
"email":"<svnitakash@gmail.com>",
"copyright": "©2016 Kandra Labs, Inc.",
"author": {
"name": "Akash Nimare",
"email": "svnitakash@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/zulip/zulip-electron.git"
},
"bugs": {
"url": "https://github.com/zulip/zulip-electron/issues"
},
"scripts": {
"start": "electron ./app/main",
"postinstall": "install-app-deps",
"test": "gulp test && xo",
"dev": "gulp dev",
"pack": "build --dir",
"dist": "build",
"travis": "cd ./scripts && ./travis-build-test.sh"
},
"build": {
"appId": "org.zulip.zulip-electron",
"asar": "true",
"files": [
"**/*",
"!node_modules/@paulcbetts/cld/deps/cld${/*}"
],
"copyright": "©2016 Kandra Labs, Inc.",
"mac": {
"category": "public.app-category.productivity"
},
"linux" : {
"synopsis": "Zulip Desktop App",
"category": "",
"packageCategory": "GNOME;GTK;Network;InstantMessaging",
"description": "Zulip Desktop Client for Linux",
"target" : ["deb", "AppImage"],
"version" : "0.5.1",
"title" : "Zulip",
"license": "Apache-2.0",
"maintainer": "Akash Nimare <svnitakash@gmail.com>"
},
"dmg": {
"background": "build/appdmg.png",
"icon": "build/icon.icns",
"iconSize": 128,
"contents": [
{
"x": 380,
"y": 240,
"type": "link",
"path": "/Applications"
},
{
"x": 122,
"y": 240,
"type": "file"
}
]
},
"win": {
"target": "nsis",
"icon": "build/icon.ico"
}
},
"keywords": [
"Zulip",
"Group Chat app",
"electron-app",
"electron",
"Desktop app",
"InstantMessaging"
],
"devDependencies": {
"assert": "^1.4.1",
"devtron": "^1.1.0",
"electron-builder": "*",
"electron": "1.4.7",
"electron-connect": "^0.4.6",
"gulp": "^3.9.1",
"gulp-mocha": "^3.0.1",
"spectron": "^3.3.0",
"xo": "*"
},
"xo": {
"esnext": true,
"overrides": [
{
"files": "app/main/*.js",
"rules": {
"max-lines": [
"warn",
350
],
"no-warning-comments": 0,
"no-else-return": 0
}
}
],
"ignore": [
"tests/*.js"
],
"envs": [
"node",
"browser",
"mocha"
]
}
}