SymphonyElectron/package.json

155 lines
4.8 KiB
JSON
Raw Normal View History

2016-09-26 21:39:43 -05:00
{
"name": "Symphony",
"productName": "Symphony",
2019-05-07 02:00:00 -05:00
"version": "3.8.0",
Merge TS context isolation branch onto Typescript master branch (#598) * Typescript 🎉 * Typescript 🎉 (logger, get-guid, string-format and throttle) * Refactor typescript code * consolidate all the utility functions to one file * refactor protocol handler feature * Typescript: Add code documentation Add pre-commit hooks * Typescript: Fix logger formatting * Typescript: Add support for react * Typescript: Completed about app * Typescript: Completed about app * Typescript: Completed about app * Typescript - Fix issues with about-app and add login to convert less to css * Typescript - Fix loading screen * Typescript - Add custom title bar * Typescript - Add method to get locale * Typescript - Add logic to clean up old logs * Typescript - Add set badge count api * Typescript - Complete application menu * Typescript - Add logic to translate menu items * Typescript - freeze window.ssf api * Typescript - Handle popup menu on alt key press * Typescript - Completed activity detection * Typescript - Completed screen snippet * Typescript - Add login to close screen snippet * Typescript - Completed window actions & snackbar, Updated i18n module * Typescript - Completed native crypto implementation & fixed bugs * Typescript - Completed Desktop capturer & screen picker implementation * Typescript - Optimize window actions * Typescript - Add support for child window * Typescript - fix pop url validation issue & browserify preload * Typescript - Completed context menu implementation and fixed screen snippet * Typescript - Completed screen sharing indicator and fixed i18n usage issue * Typescript - Fix i18n locale setting issue * Typescript - Completed download manager * Typescript - Completed Basic auth * Typescript - Network connectivity dialog * Typescript - Handle certificate error * Typescript - Add translation for certificate error dialog buttons * Typescript - Add gulp tasks to compile less, typescript and copy files * Typescript - Fix some issues with custom title bar, loading screen & screen snippet * Typescript - Remove ES2015 lib * :typescript: - Do not inject custom title bar for mac * :typescript: - Fix screen sharing indicator text and format string * Typescript - Fix esc to full screen * Typescript - handle multiple/single instance of the client and add safety checks * Typescript - Refactor code base * Typescript - Optimize window validation and fix screen picker issue * Typescript - Optimize protocol handler * typescript: logger unit test * typescript: activityDetection unit test (#560) * ELECTRON-1022 - Create app bridge that communicates between renderer and preload via postMessage * ELECTRON-1024 - Add support for screen share and screen sharing indicator * config unit test (#566) * ELECTRON-1024 - Fix screen sharing indicator close issue * ELECTRON-1022 - Bump Symphony version to 5.0.0 (1.55) * fixing jest coverage output report (#575) * protocol handle unit test (#576) * Typescript - Remove unwanted checks in protocol handler and add test cases * added more tests to increase coverage to 100 for protocol handler * Typescript download manager unit test (#579) * adding enzyme * download manager unit test * Typescript - Completed notification workflow * about app unit test * Typescript - Fix notification styles * fixing Compiler error: Generic type ReactElement<P, T> (#583) * fix app path on windows (#580) * basic auth unit test (#582) * screen picker unit test (#587) * screen picker unit test * screen sharing indicator unit test * loading screen unit test (#588) * improving snapshot using snapshotSerializers to remove unnecessary things (#596) * Typescript - Enforce braces for if/for/do/while statements. * Typescript - Fix Lint issues and Unit test * Typescript - Enable eofline (Ensure the file ends with a newline.) * Typescript - Update logger logic and format * Typescript - Provide option for user to set custom log path * Typescript - Fix eofline in css files * Typescript - ignore spec from compiling and remove unwanted rebuild command
2019-03-19 05:52:39 -05:00
"clientVersion": "1.55",
2018-05-23 05:29:11 -05:00
"buildNumber": "0",
"description": "Symphony desktop app (Foundation ODP)",
2016-11-07 14:31:39 -06:00
"author": "Symphony",
2019-01-16 12:00:59 -06:00
"main": "lib/src/app/main.js",
"types": "lib/src/app/main.d.ts",
2016-09-26 21:39:43 -05:00
"scripts": {
"compile": "npm run lint && gulp build",
2018-10-05 07:04:19 -05:00
"lint": "tslint --project tsconfig.json",
"start": "npm run compile && npm run browserify-preload && cross-env ELECTRON_DEV=true electron .",
"prebuild": "npm run compile && npm run rebuild && npm run browserify-preload",
"browserify-preload": "browserify -o lib/src/renderer/_preload-main.js -x electron --insert-global-vars=__filename,__dirname lib/src/renderer/preload-main.js",
"rebuild": "electron-rebuild -f",
2018-06-25 04:43:38 -05:00
"dev": "npm run prebuild && cross-env ELECTRON_DEV=true electron .",
Merge TS context isolation branch onto Typescript master branch (#598) * Typescript 🎉 * Typescript 🎉 (logger, get-guid, string-format and throttle) * Refactor typescript code * consolidate all the utility functions to one file * refactor protocol handler feature * Typescript: Add code documentation Add pre-commit hooks * Typescript: Fix logger formatting * Typescript: Add support for react * Typescript: Completed about app * Typescript: Completed about app * Typescript: Completed about app * Typescript - Fix issues with about-app and add login to convert less to css * Typescript - Fix loading screen * Typescript - Add custom title bar * Typescript - Add method to get locale * Typescript - Add logic to clean up old logs * Typescript - Add set badge count api * Typescript - Complete application menu * Typescript - Add logic to translate menu items * Typescript - freeze window.ssf api * Typescript - Handle popup menu on alt key press * Typescript - Completed activity detection * Typescript - Completed screen snippet * Typescript - Add login to close screen snippet * Typescript - Completed window actions & snackbar, Updated i18n module * Typescript - Completed native crypto implementation & fixed bugs * Typescript - Completed Desktop capturer & screen picker implementation * Typescript - Optimize window actions * Typescript - Add support for child window * Typescript - fix pop url validation issue & browserify preload * Typescript - Completed context menu implementation and fixed screen snippet * Typescript - Completed screen sharing indicator and fixed i18n usage issue * Typescript - Fix i18n locale setting issue * Typescript - Completed download manager * Typescript - Completed Basic auth * Typescript - Network connectivity dialog * Typescript - Handle certificate error * Typescript - Add translation for certificate error dialog buttons * Typescript - Add gulp tasks to compile less, typescript and copy files * Typescript - Fix some issues with custom title bar, loading screen & screen snippet * Typescript - Remove ES2015 lib * :typescript: - Do not inject custom title bar for mac * :typescript: - Fix screen sharing indicator text and format string * Typescript - Fix esc to full screen * Typescript - handle multiple/single instance of the client and add safety checks * Typescript - Refactor code base * Typescript - Optimize window validation and fix screen picker issue * Typescript - Optimize protocol handler * typescript: logger unit test * typescript: activityDetection unit test (#560) * ELECTRON-1022 - Create app bridge that communicates between renderer and preload via postMessage * ELECTRON-1024 - Add support for screen share and screen sharing indicator * config unit test (#566) * ELECTRON-1024 - Fix screen sharing indicator close issue * ELECTRON-1022 - Bump Symphony version to 5.0.0 (1.55) * fixing jest coverage output report (#575) * protocol handle unit test (#576) * Typescript - Remove unwanted checks in protocol handler and add test cases * added more tests to increase coverage to 100 for protocol handler * Typescript download manager unit test (#579) * adding enzyme * download manager unit test * Typescript - Completed notification workflow * about app unit test * Typescript - Fix notification styles * fixing Compiler error: Generic type ReactElement<P, T> (#583) * fix app path on windows (#580) * basic auth unit test (#582) * screen picker unit test (#587) * screen picker unit test * screen sharing indicator unit test * loading screen unit test (#588) * improving snapshot using snapshotSerializers to remove unnecessary things (#596) * Typescript - Enforce braces for if/for/do/while statements. * Typescript - Fix Lint issues and Unit test * Typescript - Enable eofline (Ensure the file ends with a newline.) * Typescript - Update logger logic and format * Typescript - Provide option for user to set custom log path * Typescript - Fix eofline in css files * Typescript - ignore spec from compiling and remove unwanted rebuild command
2019-03-19 05:52:39 -05:00
"test": "npm run lint && cross-env ELECTRON_QA=true jest --config jest.unit.config.json --runInBand",
"demo-win": "npm run prebuild && cross-env ELECTRON_DEV=true electron . --url=file:///demo/index.html",
"demo-mac": "npm run prebuild && cross-env ELECTRON_DEV=true electron . --url=file://$(pwd)/demo/index.html",
"unpacked-mac": "npm run prebuild && npm run test && build --mac --dir",
"packed-mac": "npm run unpacked-mac && packagesbuild -v installer/mac/symphony-mac-packager.pkgproj",
"unpacked-win": "npm run prebuild && npm run test && build --win --x64 --dir",
"unpacked-win-x86": "npm run prebuild && npm run test && build --win --ia32 --dir"
2016-11-07 14:31:39 -06:00
},
"build": {
"asarUnpack": [
"node_modules/@nornagon/cld/build/Release/cld.node"
],
2017-03-03 18:07:48 -06:00
"files": [
2017-03-21 13:50:26 -05:00
"!coverage/*",
"!installer/*",
"!tests/*",
"!node_modules/@nornagon/cld/deps/cld${/*}",
"!node_modules/@nornagon/cld/build/deps${/*}",
"!node_modules/@nornagon/spellchecker/vendor${/*}"
2017-03-03 18:07:48 -06:00
],
"extraFiles": [
"config/Symphony.config",
"config/titleBarStyles.css",
"dictionaries/**",
"library/libsymphonysearch.dylib",
"library/cryptoLib.dylib",
"library/lz4.exec"
],
"appId": "com.symphony.electron-desktop",
2016-11-07 14:31:39 -06:00
"mac": {
2017-02-26 19:58:48 -06:00
"target": "dmg",
"category": "public.app-category.business"
2016-11-07 14:31:39 -06:00
},
2017-02-13 18:31:42 -06:00
"dmg": {
2017-02-26 19:58:48 -06:00
"contents": [
{
"x": 140,
"y": 184
},
{
"x": 412,
"y": 184,
"type": "link",
"path": "/Applications"
}
]
2017-02-13 18:31:42 -06:00
},
2016-11-07 14:31:39 -06:00
"win": {
2017-02-26 19:58:48 -06:00
"target": "squirrel"
2016-11-07 14:31:39 -06:00
}
2016-09-26 21:39:43 -05:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/SymphonyOSS/SymphonyElectron.git"
2016-09-26 21:39:43 -05:00
},
"keywords": [
"Symphony",
2016-11-07 14:31:39 -06:00
"start"
2016-09-26 21:39:43 -05:00
],
"license": "Apache-2.0",
2016-09-26 21:39:43 -05:00
"bugs": {
2016-11-07 14:31:39 -06:00
"url": "https://support.symphony.com"
2016-09-26 21:39:43 -05:00
},
"devDependencies": {
2019-05-07 02:00:00 -05:00
"@types/enzyme": "3.9.0",
"@types/ffi-napi": "2.4.1",
"@types/ref-napi": "1.4.0",
2019-01-22 09:12:16 -06:00
"@types/jest": "23.3.12",
2019-05-07 02:00:00 -05:00
"@types/lodash.omit": "4.5.4",
2018-10-05 07:04:19 -05:00
"@types/node": "10.11.4",
"@types/react": "16.8.3",
2018-10-29 13:52:58 -05:00
"@types/react-dom": "16.0.9",
"bluebird": "3.5.3",
"browserify": "16.2.3",
"chromedriver": "2.45.0",
"cross-env": "5.2.0",
2019-01-22 09:12:16 -06:00
"del": "3.0.0",
2019-05-07 02:00:00 -05:00
"electron": "3.1.9",
"electron-builder": "20.38.4",
"electron-builder-squirrel-windows": "20.38.3",
"electron-chromedriver": "4.0.0-beta.1",
"electron-packager": "13.0.1",
"electron-rebuild": "1.8.2",
2019-05-07 02:00:00 -05:00
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.10.0",
"eslint": "5.6.1",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "7.11.0",
"glob": "7.1.3",
"gulp": "4.0.0",
"gulp-less": "4.0.1",
"gulp-sourcemaps": "2.6.4",
2019-05-07 02:00:00 -05:00
"gulp-tsc": "1.3.2",
"jest": "23.6.0",
"jest-html-reporter": "2.4.2",
"less": "3.8.1",
"ncp": "2.0.0",
"robotjs": "0.5.1",
"selenium-webdriver": "3.6.0",
2018-10-05 07:04:19 -05:00
"spectron": "5.0.0",
2019-01-22 09:12:16 -06:00
"ts-jest": "23.10.5",
2018-10-05 07:04:19 -05:00
"tslint": "5.11.0",
"typescript": "3.1.1",
2019-01-22 09:12:16 -06:00
"wdio-selenium-standalone-service": "0.0.12"
2016-11-07 14:31:39 -06:00
},
"dependencies": {
"archiver": "3.0.0",
"async.map": "0.5.2",
"async.mapseries": "0.5.2",
"classnames": "2.2.6",
"electron-dl": "1.12.0",
"electron-fetch": "1.3.0",
"electron-log": "2.2.17",
"electron-spellchecker": "git+https://github.com/symphonyoss/electron-spellchecker.git#v2.0.1",
"ffi-napi": "2.4.5",
"filesize": "3.6.1",
"jimp": "0.6.0",
2017-07-25 03:57:57 -05:00
"keymirror": "0.1.1",
"lodash.difference": "4.5.0",
"lodash.isequal": "4.5.0",
"lodash.omit": "4.5.0",
"lodash.pick": "4.4.0",
2018-09-05 23:51:05 -05:00
"node-osascript": "2.1.0",
"react": "16.6.3",
2019-05-07 02:00:00 -05:00
"react-dom": "16.6.0",
"ref-napi": "1.4.1",
"shell-path": "2.1.0",
"winreg": "1.2.4"
},
"optionalDependencies": {
"screen-snippet": "git+https://github.com/symphonyoss/ScreenSnippet.git#v1.0.5",
"swift-search": "5.0.0-beta.2"
2016-09-26 21:39:43 -05:00
}
}