Files
SymphonyElectron/package.json
T

198 lines
6.6 KiB
JSON
Raw Normal View History

2016-09-26 19:39:43 -07:00
{
2019-05-22 12:11:08 +05:30
"name": "symphony",
"productName": "Symphony",
2021-02-17 08:36:40 +01:00
"version": "9.3.0",
2019-07-31 17:30:27 +05:30
"clientVersion": "2.0.1",
2019-08-29 11:26:54 +05:30
"buildNumber": "0",
"searchAPIVersion": "1.55.3",
2019-11-06 14:49:23 +01:00
"sfeVersion": "0",
2020-11-30 12:14:09 +01:00
"sfeClientType": "1.5",
2017-02-17 18:53:25 -08:00
"description": "Symphony desktop app (Foundation ODP)",
"author": "Symphony OSS <help@finos.org>",
"main": "lib/src/app/init.js",
"types": "lib/src/app/init.d.ts",
2016-09-26 19:39:43 -07:00
"scripts": {
2020-03-18 11:15:00 +05:30
"browserify": "run-s browserify-*",
"browserify-preload": "browserify -o lib/src/renderer/_preload-main.js -x electron --insert-global-vars=__filename,__dirname lib/src/renderer/preload-main.js",
"browserify-preload-component": "browserify -o lib/src/renderer/_preload-component.js -x electron --insert-global-vars=__filename,__dirname lib/src/renderer/preload-component.js",
2020-03-18 11:15:00 +05:30
"compile": "run-s lint compile:*",
"compile:project": "gulp build",
"compile:spec": "tsc -p tsconfig.spec.json",
"compile:robot": "npm rebuild --build-from-source robotjs",
2019-06-03 13:43:36 +05:30
"dev": "npm run prebuild && cross-env ELECTRON_DEV=true electron .",
2020-03-18 11:15:00 +05:30
"demo": "run-os",
"demo:win32": "npm run prebuild && cross-env ELECTRON_DEV=true electron . --url=file:///src/demo/index.html",
"demo:darwin": "npm run prebuild && cross-env ELECTRON_DEV=true electron . --url=file://$(pwd)/src/demo/index.html",
2021-01-29 13:39:26 +05:30
"format": "pretty-quick",
2020-03-18 11:15:00 +05:30
"lint": "run-s lint:*",
"lint:project": "tslint --project tsconfig.json",
"lint:spec": "tslint --project tsconfig.spec.json",
2019-10-30 20:58:25 +05:30
"packed-linux": "npm run prebuild && npm run test && ./node_modules/.bin/electron-builder build --linux",
2019-06-03 13:43:36 +05:30
"packed-mac": "npm run unpacked-mac && packagesbuild -v installer/mac/symphony-mac-packager.pkgproj",
2020-03-18 11:15:00 +05:30
"prebuild": "run-s compile rebuild browserify",
"rebuild": "electron-rebuild -f",
2020-03-18 11:15:00 +05:30
"start": "run-s compile browserify && cross-env ELECTRON_DEV=true electron .",
"test": "run-s lint test:unit",
"test:unit": "cross-env ELECTRON_QA=true jest --config jest-config.json --runInBand --detectOpenHandles",
2020-03-23 17:45:21 +05:30
"test:spectron": "npm run copy && run-s lint compile browserify && cross-env ELECTRON_QA=true npx ava --verbose --serial",
2020-03-18 11:15:00 +05:30
"copy": "run-os",
"copy:darwin": "ncp config 'node_modules/electron/dist/Electron.app/Contents/config'",
"copy:win32": "ncp config node_modules\\electron\\dist\\config",
2019-10-30 20:58:25 +05:30
"unpacked-mac": "npm run prebuild && npm run test && ./node_modules/.bin/electron-builder build --mac --dir",
"unpacked-win": "npm run prebuild && npm run test && node_modules\\.bin\\electron-builder build --win --x64 --dir"
2019-10-30 20:58:25 +05:30
},
"build": {
"appId": "com.symphony.electron-desktop",
"asar": true,
2019-10-31 10:43:21 +05:30
"asarUnpack": "**/*.node",
2019-10-30 20:58:25 +05:30
"files": [
"!coverage/*",
"!installer/*",
"!tests/*",
"!node_modules/@nornagon/cld/deps/cld${/*}",
"!node_modules/@nornagon/cld/build/deps${/*}",
2020-03-31 21:29:07 +05:30
"!node_modules/@nornagon/spellchecker/vendor${/*}",
"!**/*.map"
2019-10-30 20:58:25 +05:30
],
"extraFiles": [
"config/Symphony.config",
"config/titleBarStyles.css",
"config/InstallVariant.info",
2019-10-30 20:58:25 +05:30
"dictionaries/**",
"library/libsymphonysearch.dylib",
"library/indexvalidator.exec",
"library/cryptoLib.dylib",
"library/dictionary",
"library/lz4.exec",
"node_modules/screen-share-indicator-frame/SymphonyScreenShareIndicator"
2019-10-30 20:58:25 +05:30
],
"mac": {
"category": "public.app-category.business",
"icon": "images/icon.icns",
"entitlements": "entitlements.mac.plist",
"entitlementsInherit": "entitlements.mac.plist",
"gatekeeperAssess": true,
"hardenedRuntime": true,
"binaries": [
"library/lz4.exec",
"library/indexvalidator.exec",
"library/libsymphonysearch.dylib",
"library/cryptoLib.dylib",
2020-04-27 16:34:56 +05:30
"library/dictionary"
]
2019-10-30 20:58:25 +05:30
},
"win": {
"icon": "images/icon.ico",
"target": [
"squirrel"
]
},
"linux": {
"category": "Network;InstantMessaging;Chat",
"desktop": {
"StartupWMClass": "Symphony"
},
"target": [
"deb",
"rpm"
],
"icon": "images/linux"
}
2016-11-07 12:31:39 -08:00
},
2016-09-26 19:39:43 -07:00
"repository": {
"type": "git",
2017-02-17 18:53:25 -08:00
"url": "git+https://github.com/SymphonyOSS/SymphonyElectron.git"
2016-09-26 19:39:43 -07:00
},
"keywords": [
"Symphony",
2016-11-07 12:31:39 -08:00
"start"
2016-09-26 19:39:43 -07:00
],
2017-02-17 18:53:25 -08:00
"license": "Apache-2.0",
2016-09-26 19:39:43 -07:00
"bugs": {
2016-11-07 12:31:39 -08:00
"url": "https://support.symphony.com"
2016-09-26 19:39:43 -07:00
},
"devDependencies": {
"@types/cheerio": "^0.22.22",
"@types/enzyme": "^3.10.7",
"@types/ffi-napi": "2.4.1",
2021-03-03 13:01:14 +05:30
"@types/fs-extra": "^8.1.1",
2019-01-22 13:12:16 -02:00
"@types/jest": "23.3.12",
2021-03-03 13:01:14 +05:30
"@types/node": "^12.12.43",
"@types/react": "16.8.3",
2018-10-30 00:22:58 +05:30
"@types/react-dom": "16.0.9",
"@types/ref-napi": "1.4.0",
"@types/rimraf": "^3.0.0",
2020-03-18 11:15:00 +05:30
"ava": "2.4.0",
"browserify": "16.5.1",
"cross-env": "5.2.0",
2019-01-22 13:12:16 -02:00
"del": "3.0.0",
2021-01-28 03:40:41 +05:30
"electron": "9.4.1",
2020-06-01 18:08:01 +05:30
"electron-builder": "22.7.0",
2018-12-26 13:03:19 +05:30
"electron-builder-squirrel-windows": "20.38.3",
"electron-icon-maker": "0.0.4",
2020-06-01 18:08:01 +05:30
"electron-osx-sign": "^0.4.16",
"electron-rebuild": "1.10.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.10.0",
"enzyme-to-json": "^3.3.5",
"gulp": "4.0.0",
"gulp-less": "4.0.1",
"gulp-sourcemaps": "2.6.4",
2019-10-30 20:58:25 +05:30
"gulp-typescript": "5.0.1",
2021-01-29 11:41:05 +05:30
"husky": "^4.3.8",
"jest": "25.2.4",
"jest-html-reporter": "3.0.0",
"less": "3.8.1",
2020-03-18 11:15:00 +05:30
"ncp": "2.0.0",
2020-06-01 18:08:01 +05:30
"node-abi": "^2.17.0",
"npm-run-all": "4.1.5",
2021-01-29 11:36:48 +05:30
"prettier": "2.2.1",
2021-01-29 11:41:05 +05:30
"pretty-quick": "^3.1.0",
2020-03-18 11:15:00 +05:30
"robotjs": "0.6.0",
"run-script-os": "1.0.7",
2020-06-15 13:15:44 +05:30
"spectron": "^11.0.0",
"ts-jest": "25.3.0",
2018-10-05 17:34:19 +05:30
"tslint": "5.11.0",
2021-01-29 11:41:05 +05:30
"tslint-config-prettier": "^1.18.0",
2020-07-22 05:26:44 +05:30
"typescript": "3.9.7"
2016-11-07 12:31:39 -08:00
},
"dependencies": {
"@types/lazy-brush": "^1.0.0",
2019-08-18 10:49:42 +05:30
"archiver": "3.1.1",
"async.map": "0.5.2",
"classnames": "2.2.6",
"electron-dl": "3.0.0",
"electron-fetch": "1.4.0",
"electron-log": "4.0.7",
2021-03-23 13:28:00 +01:00
"electron-spellchecker": "git+https://github.com/symphonyoss/electron-spellchecker.git#v2.3.2",
"ffi-napi": "3.0.0",
"filesize": "6.1.0",
"lazy-brush": "^1.0.1",
"react": "16.13.0",
"react-dom": "16.13.0",
"ref-napi": "1.4.3",
"rimraf": "^3.0.2",
"save-svg-as-png": "^1.4.17",
"shell-path": "2.1.0"
2017-04-21 16:07:36 -07:00
},
"optionalDependencies": {
"screen-snippet": "git+https://github.com/symphonyoss/ScreenSnippet2.git#v1.0.11",
"screen-share-indicator-frame": "git+https://github.com/symphonyoss/ScreenShareIndicatorFrame.git#v1.4.10",
2020-03-10 12:05:25 +01:00
"swift-search": "2.0.2"
2020-03-18 11:15:00 +05:30
},
"ava": {
"failFast": true,
"files": [
"lib/spectron/**/*.spec.js"
],
"ignoredByWatcher": [
"!lib/src/**/*.js"
2020-03-18 11:15:00 +05:30
]
2021-01-29 11:41:05 +05:30
},
"husky": {
"hooks": {
2021-01-29 13:10:30 +05:30
"pre-commit": "pretty-quick --staged && npm run lint"
2021-01-29 11:41:05 +05:30
}
2016-09-26 19:39:43 -07:00
}
}