SymphonyElectron/package.json

99 lines
2.9 KiB
JSON
Raw Normal View History

2016-09-26 21:39:43 -05:00
{
"name": "Symphony",
"productName": "Symphony",
2017-02-06 18:25:03 -06:00
"version": "1.0.1",
"description": "Symphony desktop app (Foundation ODP)",
2016-11-07 14:31:39 -06:00
"author": "Symphony",
2017-02-10 20:20:09 -06:00
"main": "js/main.js",
2016-09-26 21:39:43 -05:00
"scripts": {
"dev": "npm run browserify-preload && cross-env ELECTRON_DEV=true electron .",
"demo-win": "npm run browserify-preload && cross-env ELECTRON_DEV=true electron . --url=file:///demo/index.html",
"demo-mac": "npm run browserify-preload && cross-env ELECTRON_DEV=true electron . --url=file://$(pwd)/demo/index.html",
2017-03-07 16:44:31 -06:00
"dist-mac": "npm run prebuild && build --mac",
"dist-win": "npm run prebuild && build --win --x64",
"dist-win-x86": "npm run prebuild && build --win --ia32",
"unpacked-win": "npm run prebuild && build --win --x64 --dir",
"unpacked-win-x86": "npm run prebuild && build --win --ia32 --dir",
"prebuild": "npm run lint && npm run test && npm run browserify-preload",
"rebuild": "npm install electron-rebuild && ./node_modules/.bin/electron-rebuild",
2017-03-21 17:28:21 -05:00
"lint": "eslint --ext .js js/",
"test": "jest --testPathPattern test",
2017-04-18 11:02:25 -05:00
"browserify-preload": "browserify -o js/preload/_preloadMain.js -x electron --insert-global-vars=__filename,__dirname js/preload/preloadMain.js"
2016-11-07 14:31:39 -06:00
},
"jest": {
"collectCoverage": true,
"transformIgnorePatterns": []
},
2016-11-07 14:31:39 -06:00
"build": {
2017-03-03 18:07:48 -06:00
"files": [
2017-03-21 13:50:26 -05:00
"!coverage/*",
"!installer/*",
"!tests/*"
2017-03-03 18:07:48 -06:00
],
"extraFiles": "config/Symphony.config",
2016-11-07 14:31:39 -06:00
"appId": "symphony-electron-desktop",
"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": {
2017-03-22 12:24:34 -05:00
"babel-jest": "^19.0.0",
"babel-preset-es2015": "^6.24.0",
2017-03-21 13:50:26 -05:00
"browserify": "^14.1.0",
"cross-env": "^3.2.4",
2017-05-05 15:52:05 -05:00
"electron": "1.6.7",
2017-02-23 18:40:45 -06:00
"electron-builder": "^13.9.0",
2017-02-26 19:58:48 -06:00
"electron-builder-squirrel-windows": "^12.3.0",
2017-02-23 18:40:45 -06:00
"electron-packager": "^8.5.2",
2017-03-03 18:07:48 -06:00
"eslint": "^3.16.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
2017-03-21 13:50:26 -05:00
"jest": "^19.0.2"
2016-11-07 14:31:39 -06:00
},
"dependencies": {
"@paulcbetts/system-idle-time": "^1.0.4",
2017-03-21 17:28:21 -05:00
"async": "^2.1.5",
"auto-launch": "^5.0.1",
"electron-context-menu": "^0.8.0",
"electron-rebuild": "^1.5.7",
2017-03-01 18:32:21 -06:00
"electron-squirrel-startup": "^1.0.0",
"keymirror": "0.1.1",
2017-03-22 12:24:34 -05:00
"winreg": "^1.2.3"
},
"optionalDependencies": {
"screen-snippet": "git+https://github.com/symphonyoss/ScreenSnippet.git#v1.0.1"
2016-09-26 21:39:43 -05:00
}
}