2014-10-30 01:32:29 +00:00
|
|
|
{
|
2016-01-01 22:23:44 +00:00
|
|
|
"name": "signal-desktop",
|
2017-03-08 00:55:24 +00:00
|
|
|
"description": "Private messaging from your desktop",
|
2016-01-01 22:23:44 +00:00
|
|
|
"repository": "https://github.com/WhisperSystems/Signal-Desktop.git",
|
2017-03-08 00:55:24 +00:00
|
|
|
"version": "1.0.0",
|
|
|
|
"license": "GPL-3.0",
|
|
|
|
"author": {
|
|
|
|
"name": "Open Whisper Systems",
|
|
|
|
"email": "support@whispersystems.org"
|
|
|
|
},
|
2017-03-02 22:04:38 +00:00
|
|
|
"main": "main.js",
|
2014-10-30 01:32:29 +00:00
|
|
|
"devDependencies": {
|
2014-11-07 08:32:32 +00:00
|
|
|
"bower": "^1.3.12",
|
2017-03-08 00:55:31 +00:00
|
|
|
"electron": "^1.6.1",
|
|
|
|
"electron-builder": "^16.4.2",
|
2014-10-30 01:32:29 +00:00
|
|
|
"grunt": "^0.4.5",
|
2014-11-23 03:36:52 +00:00
|
|
|
"grunt-cli": "^0.1.13",
|
2014-10-30 01:32:29 +00:00
|
|
|
"grunt-contrib-concat": "^0.5.0",
|
2014-11-23 03:36:52 +00:00
|
|
|
"grunt-contrib-connect": "^0.9.0",
|
2015-03-19 23:46:58 +00:00
|
|
|
"grunt-contrib-copy": "^0.8.0",
|
2017-04-18 23:46:02 +00:00
|
|
|
"grunt-contrib-jshint": "^1.1.0",
|
2014-11-07 08:32:32 +00:00
|
|
|
"grunt-contrib-sass": "^0.8.1",
|
2014-11-23 03:36:52 +00:00
|
|
|
"grunt-contrib-watch": "^0.6.1",
|
2016-01-23 10:28:43 +00:00
|
|
|
"grunt-exec": "^0.4.6",
|
2016-04-04 02:34:34 +00:00
|
|
|
"grunt-gitinfo": "^0.1.7",
|
2015-03-19 23:46:58 +00:00
|
|
|
"grunt-jscs": "^1.1.0",
|
2014-11-23 03:36:52 +00:00
|
|
|
"grunt-preen": "^1.0.0",
|
2015-03-19 23:46:58 +00:00
|
|
|
"grunt-saucelabs": "^8.3.3"
|
2014-11-23 03:36:52 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"test": "grunt test",
|
2017-03-02 22:04:38 +00:00
|
|
|
"lint": "grunt jshint",
|
2017-03-10 18:35:58 +00:00
|
|
|
"start": "electron .",
|
|
|
|
"pack": "build --dir",
|
|
|
|
"dist": "build",
|
|
|
|
"release": "build"
|
|
|
|
},
|
|
|
|
"build": {
|
|
|
|
"appId": "org.whispersystems.signal-desktop",
|
|
|
|
"mac": {
|
|
|
|
"category": "public.app-category.social-networking"
|
|
|
|
},
|
|
|
|
"linux": {
|
|
|
|
"target": [
|
|
|
|
"deb"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"win": {},
|
|
|
|
"files": [
|
|
|
|
"main.js",
|
|
|
|
"background.html",
|
|
|
|
"index.html",
|
|
|
|
"options.html",
|
|
|
|
"_locales/**",
|
|
|
|
"protos/*",
|
|
|
|
"js/**",
|
|
|
|
"!js/register.js",
|
|
|
|
"stylesheets/*.css",
|
|
|
|
"audio/**",
|
|
|
|
"images/**",
|
|
|
|
"fonts/*"
|
|
|
|
],
|
|
|
|
"directories": {
|
|
|
|
"output": "pack"
|
|
|
|
},
|
|
|
|
"publish": [
|
|
|
|
"github"
|
|
|
|
]
|
2017-03-30 18:43:58 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"electron-updater": "^1.11.2"
|
2014-10-30 01:32:29 +00:00
|
|
|
}
|
|
|
|
}
|