mattermost-desktop/package.json

99 lines
2.6 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-09-30 07:33:13 -07:00
"version": "3.4.1",
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",
"build": "gulp build",
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-06-05 08:38:17 -07:00
"test": "gulp build && mocha --reporter mocha-circleci-reporter --recursive test/specs && gulp prettify:verify",
"package:all": "build -wml --x64 --ia32 && npm run manipulate-windows-zip",
"package:windows": "build --win --x64 --ia32 && npm run manipulate-windows-zip",
"package:mac": "build --mac --x64 --ia32",
2016-09-19 06:32:59 -07:00
"package:linux": "build --linux --x64 --ia32",
"manipulate-windows-zip": "node scripts/manipulate_windows_zip.js",
2016-09-23 06:44:22 -07:00
"prettify": "gulp prettify"
},
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-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-07-21 07:07:13 -07:00
"devtron": "^1.3.0",
"electron-builder": "^7.11.2",
2016-09-21 11:12:16 -07:00
"electron-connect": "~0.6.0",
"electron-prebuilt": "1.4.2",
2016-07-21 07:07:13 -07:00
"esformatter": "^0.9.6",
"esformatter-jsx": "^7.0.1",
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-07-21 07:07:13 -07:00
"style-loader": "^0.13.1",
2016-02-20 06:59:59 -08:00
"through2": "^2.0.1",
2016-01-30 07:50:43 -08:00
"vinyl-named": "^1.1.0",
"webpack": "^1.13.1",
"webpack-stream": "^3.2.0"
},
"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",
"filter": "create_desktop_file.sh"
}]
},
"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
}