1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-11 13:13:59 +03:00
tabby/package.json

116 lines
3.5 KiB
JSON
Raw Normal View History

2016-12-23 12:06:53 +03:00
{
"name": "term",
"devDependencies": {
2017-06-21 00:28:58 +03:00
"@types/fs-promise": "1.0.1",
"@types/node": "7.0.5",
"@types/webpack-env": "1.13.0",
"apply-loader": "0.1.0",
2017-04-06 23:25:41 +03:00
"awesome-typescript-loader": "3.1.2",
2017-06-21 00:28:58 +03:00
"core-js": "2.4.1",
"cross-env": "4.0.0",
"css-loader": "0.28.0",
2018-03-18 21:07:31 +03:00
"electron": "1.8.4",
2017-06-21 00:28:58 +03:00
"electron-builder": "17.1.1",
2017-06-24 14:06:52 +03:00
"electron-builder-squirrel-windows": "17.0.1",
2017-06-21 00:28:58 +03:00
"electron-rebuild": "1.5.11",
"file-loader": "0.9.0",
2016-12-23 12:06:53 +03:00
"font-awesome": "4.7.0",
2017-11-21 23:59:54 +03:00
"graceful-fs": "^4.1.11",
2017-06-21 00:28:58 +03:00
"html-loader": "0.4.4",
"json-loader": "0.5.4",
"less": "2.7.1",
2017-06-24 14:06:52 +03:00
"less-loader": "2.2.3",
2017-06-21 00:28:58 +03:00
"node-abi": "2.0.3",
2017-07-04 19:17:23 +03:00
"node-gyp": "^3.6.2",
2017-06-28 00:19:18 +03:00
"node-sass": "^4.5.3",
2017-06-21 00:28:58 +03:00
"npmlog": "4.1.0",
"npx": "^9.7.1",
2017-06-24 14:06:52 +03:00
"pug": "2.0.0-beta11",
2017-06-21 00:28:58 +03:00
"pug-html-loader": "1.0.9",
"pug-loader": "2.3.0",
2016-12-23 12:06:53 +03:00
"pug-static-loader": "0.0.1",
2017-06-21 00:28:58 +03:00
"raven-js": "3.16.0",
"raw-loader": "0.5.1",
"sass-loader": "6.0.3",
"shelljs": "0.7.7",
"source-sans-pro": "2.0.10",
"style-loader": "0.13.1",
"to-string-loader": "1.1.5",
2017-06-24 14:06:52 +03:00
"tslint": "5.1.0",
2017-06-21 00:28:58 +03:00
"tslint-config-standard": "5.0.2",
"tslint-eslint-rules": "4.0.0",
"typescript": "2.2.2",
"url-loader": "0.5.7",
"val-loader": "0.5.0",
2017-06-24 14:06:52 +03:00
"webpack": "^3.0.0",
"yaml-loader": "0.4.0",
"yarn": "^1.3.2"
2016-12-23 12:06:53 +03:00
},
"build": {
2017-05-01 01:01:12 +03:00
"appId": "org.terminus",
"productName": "Terminus",
2016-12-23 12:06:53 +03:00
"compression": "normal",
2017-04-30 01:25:01 +03:00
"extraResources": [
2017-05-11 23:56:48 +03:00
"builtin-plugins",
"clink"
2017-04-30 01:25:01 +03:00
],
2016-12-23 12:06:53 +03:00
"win": {
2017-09-09 12:43:21 +03:00
"icon": "./build/windows/icon.ico",
2017-11-21 23:59:54 +03:00
"publish": [
"github"
]
2016-12-23 12:06:53 +03:00
},
2017-05-01 21:42:11 +03:00
"squirrelWindows": {
2017-09-09 12:33:06 +03:00
"iconUrl": "https://github.com/Eugeny/terminus/raw/master/build/windows/icon.ico",
2017-09-10 10:22:28 +03:00
"artifactName": "terminus-${version}-${os}-${arch}.exe"
2017-05-01 21:42:11 +03:00
},
2016-12-23 12:06:53 +03:00
"mac": {
"category": "public.app-category.video",
"icon": "./build/mac/icon.icns",
2017-09-09 12:43:21 +03:00
"identity": null,
2017-11-21 23:59:54 +03:00
"publish": [
"github"
]
2016-12-23 12:06:53 +03:00
},
2017-09-09 12:33:06 +03:00
"dmg": {
2017-09-10 10:22:28 +03:00
"artifactName": "terminus-${version}-${os}-${arch}.dmg"
2017-09-09 12:33:06 +03:00
},
2016-12-23 12:06:53 +03:00
"linux": {
2017-05-01 14:35:26 +03:00
"category": "Utilities",
2017-09-09 12:33:06 +03:00
"icon": "./build/icons",
2017-11-21 23:59:54 +03:00
"publish": [
"github"
]
},
"deb": {
2017-07-03 18:50:00 +03:00
"depends": [
"screen",
"gconf2",
"gconf-service",
"libnotify4",
"libappindicator1",
"libxtst6",
2017-08-05 11:15:07 +03:00
"libnss3",
"tmux"
2017-09-09 12:33:06 +03:00
],
2017-09-10 10:22:28 +03:00
"artifactName": "terminus-${version}-${os}-${arch}.deb"
},
"rpm": {
2017-07-03 18:50:00 +03:00
"depends": [
"screen",
"gnome-python2-gnomekeyring"
2017-09-09 12:33:06 +03:00
],
2017-09-10 10:22:28 +03:00
"artifactName": "terminus-${version}-${os}-${arch}.rpm"
2016-12-23 12:06:53 +03:00
}
},
"scripts": {
2017-11-28 00:37:32 +03:00
"build": "webpack --color --config app/webpack.config.js && webpack --color --config terminus-core/webpack.config.js && webpack --color --config terminus-settings/webpack.config.js && webpack --color --config terminus-terminal/webpack.config.js && webpack --color --config terminus-settings/webpack.config.js && webpack --color --config terminus-plugin-manager/webpack.config.js && webpack --color --config terminus-community-color-schemes/webpack.config.js && webpack --color --config terminus-ssh/webpack.config.js",
2017-04-17 15:57:22 +03:00
"watch": "webpack --progress --color --watch",
2017-05-14 14:45:14 +03:00
"start": "cross-env DEV=1 electron --js-flags='--ignition' app --debug",
2017-07-10 16:25:42 +03:00
"prod": "cross-env DEV=1 electron --js-flags='--ignition' app",
2017-05-01 14:35:26 +03:00
"lint": "tslint -c tslint.json -t stylish terminus-*/src/**/*.ts terminus-*/src/*.ts app/src/*.ts",
"postinstall": "install-app-deps"
2017-06-10 01:29:16 +03:00
},
2017-07-01 01:54:55 +03:00
"repository": "eugeny/terminus"
2016-12-23 12:06:53 +03:00
}