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

74 lines
2.1 KiB
JSON
Raw Normal View History

2016-12-23 12:06:53 +03:00
{
"name": "term",
"devDependencies": {
2017-04-11 23:45:59 +03:00
"@types/core-js": "^0.9.35",
"@types/electron": "1.4.34",
2017-04-24 01:34:07 +03:00
"@types/fs-promise": "^1.0.1",
2017-04-11 23:45:59 +03:00
"@types/node": "^7.0.5",
2017-04-11 03:22:48 +03:00
"@types/webpack-env": "^1.13.0",
2016-12-23 12:06:53 +03:00
"apply-loader": "^0.1.0",
2017-04-06 23:25:41 +03:00
"awesome-typescript-loader": "3.1.2",
2017-04-24 01:34:07 +03:00
"cross-env": "^4.0.0",
2016-12-23 12:06:53 +03:00
"css-loader": "0.26.1",
2017-05-14 14:45:14 +03:00
"electron": "1.6.7",
2017-04-30 01:25:01 +03:00
"electron-builder": "^17.1.1",
2017-05-01 01:01:12 +03:00
"electron-builder-squirrel-windows": "^17.0.1",
2016-12-23 12:06:53 +03:00
"electron-osx-sign": "electron-userland/electron-osx-sign#f092181a1bffa2b3248a23ee28447a47e14a8f04",
2017-03-20 19:46:25 +03:00
"electron-rebuild": "1.5.7",
2016-12-23 12:06:53 +03:00
"file-loader": "^0.9.0",
"font-awesome": "4.7.0",
"html-loader": "^0.4.4",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"node-gyp": "^3.4.0",
2017-03-18 23:47:52 +03:00
"node-sass": "^4.5.0",
2016-12-23 12:06:53 +03:00
"pug-html-loader": "^1.0.9",
"pug-loader": "^2.3.0",
"pug-static-loader": "0.0.1",
"raw-loader": "^0.5.1",
2017-03-18 23:47:52 +03:00
"sass-loader": "^6.0.3",
2017-05-01 01:01:12 +03:00
"shelljs": "^0.7.7",
2017-04-24 01:34:07 +03:00
"source-sans-pro": "^2.0.10",
2016-12-23 12:06:53 +03:00
"style-loader": "^0.13.1",
"to-string-loader": "^1.1.5",
2017-05-01 14:35:26 +03:00
"tslint": "^5.1.0",
"tslint-config-standard": "^5.0.2",
"tslint-eslint-rules": "^4.0.0",
2017-04-11 23:45:59 +03:00
"typescript": "~2.1.0",
2016-12-23 12:06:53 +03:00
"url-loader": "^0.5.7",
"val-loader": "^0.5.0",
2017-04-15 16:20:18 +03:00
"webpack": "2.4.1"
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-05-01 21:12:39 +03:00
"icon": "./build/windows/icon.ico"
2016-12-23 12:06:53 +03:00
},
2017-05-01 21:42:11 +03:00
"squirrelWindows": {
"iconUrl": "https://github.com/Eugeny/terminus/raw/master/build/windows/icon.ico"
},
2016-12-23 12:06:53 +03:00
"mac": {
"category": "public.app-category.video",
"icon": "./build/mac/icon.icns",
2017-05-01 17:01:14 +03:00
"identity": null
2016-12-23 12:06:53 +03:00
},
"linux": {
2017-05-01 14:35:26 +03:00
"category": "Utilities",
"icon": "./build/icons"
2016-12-23 12:06:53 +03:00
}
},
"scripts": {
2017-04-17 15:57:22 +03:00
"build": "webpack --progress --color",
"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-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"
2016-12-23 12:06:53 +03:00
}
}