mattermost-desktop/package.json

104 lines
3 KiB
JSON
Raw Normal View History

2015-10-06 06:35:26 -07:00
{
2016-10-19 06:57:06 -07:00
"name": "mattermost-desktop",
"productName": "Mattermost",
2016-11-30 08:30:24 -08:00
"version": "3.5.0",
2016-09-19 06:32:59 -07:00
"description": "Mattermost",
2015-10-06 06:35:26 -07:00
"main": "main.js",
2016-05-06 06:53:56 -07:00
"author": {
"name": "Yuya Ochiai",
"email": "yuya0321@gmail.com"
},
2016-06-05 08:45:30 -07:00
"license": "Apache-2.0",
2016-02-20 07:08:38 -08:00
"engines": {
"node": ">=4.2.0"
},
2016-08-20 03:44:31 -07:00
"repository": {
"type": "git",
"url": "git://github.com/mattermost/desktop.git"
},
"scripts": {
2015-12-23 05:04:21 -08:00
"install": "cd src && npm install",
"postinstall": "npm run build",
2016-10-11 08:02:05 -07:00
"build": "npm run build:main && npm run build:renderer && gulp build",
"build:main": "cross-env NODE_ENV=production webpack --config webpack.config.main.js",
"build:renderer": "cross-env NODE_ENV=production webpack --config webpack.config.renderer.js",
2016-01-30 07:50:43 -08:00
"start": "electron dist",
2016-02-09 03:59:52 -08:00
"watch": "gulp watch",
"serve": "gulp watch",
2016-09-30 08:30:23 -07:00
"test": "npm run build && npm run test:app && npm run lint:js",
"test:app": "mocha --reporter mocha-circleci-reporter --recursive test/specs",
"package:all": "npm run package:windows && npm run package:mac && npm run package:linux",
"package:windows": "build --win --x64 --ia32 --em.name=mattermost && npm run manipulate-windows-zip",
"package:mac": "build --mac --x64 --ia32",
"package:linux": "build --linux --x64 --ia32 --em.name=mattermost-desktop",
"manipulate-windows-zip": "node scripts/manipulate_windows_zip.js",
2016-11-08 06:54:53 -08:00
"lint:js": "eslint --ext .js --ext .jsx ."
},
2015-10-23 07:56:53 -07:00
"devDependencies": {
"7zip-bin": "^2.0.1",
2016-04-14 05:30:58 -07:00
"babel-core": "^6.7.5",
"babel-eslint": "^6.1.2",
2016-04-14 05:30:58 -07:00
"babel-loader": "^6.2.4",
"babel-preset-react": "^6.5.0",
2016-06-05 08:41:35 -07:00
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
2016-10-12 08:08:04 -07:00
"cross-env": "^3.1.2",
2016-07-21 07:07:13 -07:00
"devtron": "^1.3.0",
"electron": "1.4.12",
"electron-builder": "^7.11.2",
2016-09-21 11:12:16 -07:00
"electron-connect": "~0.6.0",
2016-08-30 08:33:55 -07:00
"eslint": "^3.4.0",
"eslint-plugin-react": "^6.2.0",
2016-07-21 07:07:13 -07:00
"gulp": "^3.9.1",
"gulp-diff": "^1.0.0",
"gulp-esformatter": "^6.0.0",
"gulp-jsbeautifier": "^2.0.3",
2016-01-30 07:50:43 -08:00
"json-loader": "^0.5.4",
2016-08-20 03:11:13 -07:00
"mocha": "^3.0.2",
2016-07-21 07:07:13 -07:00
"mocha-circleci-reporter": "0.0.2",
2016-09-21 11:12:16 -07:00
"spectron": "~3.4.0",
2016-10-12 08:08:04 -07:00
"webpack": "^1.13.1",
"webpack-merge": "^0.14.1"
},
"build": {
2016-09-19 06:32:59 -07:00
"appId": "com.mattermost.desktop",
"linux": {
2016-09-19 06:32:59 -07:00
"category": "InstantMessaging",
"target": [
"deb",
"tar.gz"
],
2016-09-19 06:32:59 -07:00
"synopsis": "Mattermost",
"extraFiles": [
{
"from": "resources",
"filter": "icon.png"
},
{
"from": "resources/linux",
2016-12-05 06:45:35 -08:00
"filter": ["create_desktop_file.sh", "README.md"]
}
]
2016-09-19 06:32:59 -07:00
},
"mac": {
"category": "public.app-category.productivity",
"target": [
"tar.gz"
]
2016-09-19 06:32:59 -07:00
},
"win": {
"description": "Mattermost",
"target": [
"squirrel",
"zip"
],
2016-09-19 06:32:59 -07:00
"iconUrl": "https://raw.githubusercontent.com/mattermost/desktop/master/resources/icon.ico"
}
},
2016-05-16 07:01:26 -07:00
"directories": {
"buildResources": "resources",
"app": "dist",
"output": "release"
2015-10-23 07:56:53 -07:00
}
2015-10-06 06:35:26 -07:00
}