tabby/package.json

96 lines
2.9 KiB
JSON
Raw Normal View History

2016-12-23 09:06:53 +00:00
{
"name": "term",
"devDependencies": {
2017-06-20 21:28:58 +00: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 20:25:41 +00:00
"awesome-typescript-loader": "3.1.2",
2017-06-20 21:28:58 +00:00
"core-js": "2.4.1",
"cross-env": "4.0.0",
"css-loader": "0.28.0",
2017-07-03 15:50:00 +00:00
"electron": "1.6.11",
2017-06-20 21:28:58 +00:00
"electron-builder": "17.1.1",
2017-06-24 11:06:52 +00:00
"electron-builder-squirrel-windows": "17.0.1",
2017-06-20 21:28:58 +00:00
"electron-rebuild": "1.5.11",
"file-loader": "0.9.0",
2016-12-23 09:06:53 +00:00
"font-awesome": "4.7.0",
2017-06-20 21:28:58 +00:00
"html-loader": "0.4.4",
"json-loader": "0.5.4",
"less": "2.7.1",
2017-06-24 11:06:52 +00:00
"less-loader": "2.2.3",
2017-06-20 21:28:58 +00:00
"node-abi": "2.0.3",
2017-07-04 16:17:23 +00:00
"node-gyp": "^3.6.2",
2017-06-27 21:19:18 +00:00
"node-sass": "^4.5.3",
2017-06-20 21:28:58 +00:00
"npmlog": "4.1.0",
2017-06-24 11:06:52 +00:00
"pug": "2.0.0-beta11",
2017-06-20 21:28:58 +00:00
"pug-html-loader": "1.0.9",
"pug-loader": "2.3.0",
2016-12-23 09:06:53 +00:00
"pug-static-loader": "0.0.1",
2017-06-20 21:28:58 +00: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 11:06:52 +00:00
"tslint": "5.1.0",
2017-06-20 21:28:58 +00: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 11:06:52 +00:00
"webpack": "^3.0.0",
"yaml-loader": "0.4.0"
2016-12-23 09:06:53 +00:00
},
"build": {
2017-04-30 22:01:12 +00:00
"appId": "org.terminus",
"productName": "Terminus",
2016-12-23 09:06:53 +00:00
"compression": "normal",
2017-04-29 22:25:01 +00:00
"extraResources": [
2017-05-11 20:56:48 +00:00
"builtin-plugins",
"clink"
2017-04-29 22:25:01 +00:00
],
2016-12-23 09:06:53 +00:00
"win": {
2017-05-01 18:12:39 +00:00
"icon": "./build/windows/icon.ico"
2016-12-23 09:06:53 +00:00
},
2017-05-01 18:42:11 +00:00
"squirrelWindows": {
"iconUrl": "https://github.com/Eugeny/terminus/raw/master/build/windows/icon.ico"
},
2016-12-23 09:06:53 +00:00
"mac": {
"category": "public.app-category.video",
"icon": "./build/mac/icon.icns",
2017-05-01 14:01:14 +00:00
"identity": null
2016-12-23 09:06:53 +00:00
},
"linux": {
2017-05-01 11:35:26 +00:00
"category": "Utilities",
"icon": "./build/icons"
},
"deb": {
2017-07-03 15:50:00 +00:00
"depends": [
"screen",
"gconf2",
"gconf-service",
"libnotify4",
"libappindicator1",
"libxtst6",
"libnss3"
]
},
"rpm": {
2017-07-03 15:50:00 +00:00
"depends": [
"screen"
]
2016-12-23 09:06:53 +00:00
}
},
"scripts": {
2017-06-24 13:49:32 +00: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",
2017-04-17 12:57:22 +00:00
"watch": "webpack --progress --color --watch",
2017-05-14 11:45:14 +00:00
"start": "cross-env DEV=1 electron --js-flags='--ignition' app --debug",
2017-07-10 13:25:42 +00:00
"prod": "cross-env DEV=1 electron --js-flags='--ignition' app",
2017-05-01 11:35:26 +00:00
"lint": "tslint -c tslint.json -t stylish terminus-*/src/**/*.ts terminus-*/src/*.ts app/src/*.ts",
"postinstall": "install-app-deps"
2017-06-09 22:29:16 +00:00
},
2017-06-30 22:54:55 +00:00
"repository": "eugeny/terminus"
2016-12-23 09:06:53 +00:00
}