2016-12-23 09:06:53 +00:00
|
|
|
{
|
|
|
|
"name": "term",
|
|
|
|
"devDependencies": {
|
2017-04-11 20:45:59 +00:00
|
|
|
"@types/core-js": "^0.9.35",
|
|
|
|
"@types/electron": "1.4.34",
|
2017-04-23 22:34:07 +00:00
|
|
|
"@types/fs-promise": "^1.0.1",
|
2017-04-11 20:45:59 +00:00
|
|
|
"@types/node": "^7.0.5",
|
2017-04-11 00:22:48 +00:00
|
|
|
"@types/webpack-env": "^1.13.0",
|
2016-12-23 09:06:53 +00:00
|
|
|
"apply-loader": "^0.1.0",
|
2017-04-06 20:25:41 +00:00
|
|
|
"awesome-typescript-loader": "3.1.2",
|
2017-04-23 22:34:07 +00:00
|
|
|
"cross-env": "^4.0.0",
|
2016-12-23 09:06:53 +00:00
|
|
|
"css-loader": "0.26.1",
|
2017-03-20 16:46:25 +00:00
|
|
|
"electron": "1.6.2",
|
2017-04-29 22:25:01 +00:00
|
|
|
"electron-builder": "^17.1.1",
|
2017-04-30 22:01:12 +00:00
|
|
|
"electron-builder-squirrel-windows": "^17.0.1",
|
2016-12-23 09:06:53 +00:00
|
|
|
"electron-osx-sign": "electron-userland/electron-osx-sign#f092181a1bffa2b3248a23ee28447a47e14a8f04",
|
2017-03-20 16:46:25 +00:00
|
|
|
"electron-rebuild": "1.5.7",
|
2016-12-23 09:06:53 +00: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 20:47:52 +00:00
|
|
|
"node-sass": "^4.5.0",
|
2016-12-23 09:06:53 +00: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 20:47:52 +00:00
|
|
|
"sass-loader": "^6.0.3",
|
2017-04-30 22:01:12 +00:00
|
|
|
"shelljs": "^0.7.7",
|
2017-04-23 22:34:07 +00:00
|
|
|
"source-sans-pro": "^2.0.10",
|
2016-12-23 09:06:53 +00:00
|
|
|
"style-loader": "^0.13.1",
|
|
|
|
"to-string-loader": "^1.1.5",
|
2017-05-01 11:35:26 +00:00
|
|
|
"tslint": "^5.1.0",
|
|
|
|
"tslint-config-standard": "^5.0.2",
|
|
|
|
"tslint-eslint-rules": "^4.0.0",
|
2017-04-11 20:45:59 +00:00
|
|
|
"typescript": "~2.1.0",
|
2016-12-23 09:06:53 +00:00
|
|
|
"url-loader": "^0.5.7",
|
|
|
|
"val-loader": "^0.5.0",
|
2017-04-15 13:20:18 +00:00
|
|
|
"webpack": "2.4.1"
|
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": [
|
|
|
|
"builtin-plugins"
|
|
|
|
],
|
2016-12-23 09:06:53 +00:00
|
|
|
"win": {
|
|
|
|
"icon": "./app/assets/img/shortcut.ico"
|
|
|
|
},
|
|
|
|
"mac": {
|
|
|
|
"category": "public.app-category.video",
|
|
|
|
"icon": "./build/mac/icon.icns",
|
|
|
|
"identity": "Syslink GmbH"
|
|
|
|
},
|
|
|
|
"linux": {
|
2017-05-01 11:35:26 +00:00
|
|
|
"category": "Utilities",
|
|
|
|
"icon": "./build/icons"
|
2016-12-23 09:06:53 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"scripts": {
|
2017-04-17 12:57:22 +00:00
|
|
|
"build": "webpack --progress --color",
|
|
|
|
"watch": "webpack --progress --color --watch",
|
2017-04-23 22:34:07 +00:00
|
|
|
"start": "cross-env DEV=1 electron app --debug",
|
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"
|
2016-12-23 09:06:53 +00:00
|
|
|
}
|
|
|
|
}
|