mattermost-desktop/package.json

66 lines
1.8 KiB
JSON
Raw Normal View History

2015-10-06 06:35:26 -07:00
{
"name": "mattermost-desktop",
"productName": "Mattermost",
2016-04-13 07:57:16 -07:00
"version": "1.1.1",
"description": "Mattermost Desktop application for Windows, Mac and Linux",
2015-10-06 06:35:26 -07:00
"main": "main.js",
"author": "Yuya Ochiai <yuya0321@gmail.com>",
2015-10-23 07:56:53 -07:00
"license": "MIT",
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-02-15 06:58:46 -08:00
"test": "gulp build && mocha && 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 -d deb",
2015-12-23 05:04:21 -08:00
"package:all": "gulp package:all",
"prettify": "gulp prettify"
},
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",
2015-12-12 04:20:18 -08:00
"chromedriver": "^2.20.0",
"del": "^2.2.0",
"electron-builder": "^3.11.0",
"electron-connect": "^0.3.7",
2015-10-24 01:44:47 -07:00
"electron-packager": "^5.1.0",
2016-03-30 05:42:20 -07:00
"electron-prebuilt": "0.37.3",
"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",
2015-12-12 04:20:18 -08:00
"should": "^8.0.1",
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",
"webdriverio": "^3.3.0",
"webpack": "^1.12.15",
2016-01-30 07:50:43 -08:00
"webpack-stream": "^3.1.0"
},
"build": {
"linux": {
"synopsis": "Mattermost Desktop"
}
},
"directories":{
"buildResources": "resources",
"app": "dist",
"output": "release"
2015-10-23 07:56:53 -07:00
}
2015-10-06 06:35:26 -07:00
}