mattermost-desktop/package.json

76 lines
2.1 KiB
JSON
Raw Normal View History

2015-10-06 06:35:26 -07:00
{
"name": "mattermost-desktop",
"productName": "Mattermost",
2016-07-07 06:35:39 -07:00
"version": "1.3.0",
"description": "Mattermost Desktop application for Windows, Mac and Linux",
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"
},
"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",
2015-12-23 05:04:21 -08:00
"package": "gulp package",
"package:windows": "gulp package:windows",
"package:osx": "gulp package:osx",
"package:linux": "gulp build && build --platform linux --arch all",
2015-12-23 05:04:21 -08:00
"package:all": "gulp package:all",
"prettify": "gulp prettify",
"installer": "node ./script/installer.js"
},
2015-10-23 07:56:53 -07:00
"devDependencies": {
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",
"del": "^2.2.0",
"devtron": "^1.2.1",
"electron-builder": "5.2.1",
"electron-connect": "^0.3.7",
"electron-packager": "^7.0.1",
2016-07-04 00:01:26 -07:00
"electron-prebuilt": "1.2.7",
"electron-winstaller": "^2.2.0",
"esformatter": "^0.9.3",
"esformatter-jsx": "^5.0.0",
2015-10-23 07:56:53 -07:00
"gulp": "^3.9.0",
2016-04-14 05:30:58 -07:00
"gulp-babel": "^6.1.2",
"gulp-changed": "^1.3.0",
"gulp-esformatter": "^6.0.0",
2015-12-12 04:20:18 -08:00
"gulp-jsbeautifier": "^1.0.1",
2016-01-30 07:50:43 -08:00
"json-loader": "^0.5.4",
2015-12-12 04:20:18 -08:00
"mocha": "^2.3.4",
2015-12-23 05:04:21 -08:00
"mocha-circleci-reporter": "0.0.1",
2016-06-06 06:56:19 -07:00
"spectron": "~3.2.0",
"rimraf": "^2.5.2",
2016-01-30 07:50:43 -08:00
"style-loader": "^0.13.0",
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": {
"app-bundle-id": "com.mattermost.desktop",
"app-category-type": "public.app-category.productivity",
"linux": {
"synopsis": "Mattermost Desktop",
"target": "deb"
}
},
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
}