This repository has been archived by the owner on Mar 27, 2018. It is now read-only.
forked from karmainside/ms-teams-linux
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.54 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "ms-teams-capsule",
"productName": "Microsoft Teams Capsule",
"description": "Microsoft Teams Capsule allows to run MS Teams web version as a standalone app",
"version": "0.4.0",
"author": "Vadzim Miashaikin <[email protected]>",
"copyright": "© 2017, Vadzim Miashaikin",
"license": "MIT",
"main": "app/background.js",
"build": {
"appId": "com.karmainsie.ms-teams-capsule",
"files": [
"app/**/*",
"node_modules/**/*",
"package.json"
]
},
"scripts": {
"postinstall": "install-app-deps",
"build": "gulp build",
"prerelease": "gulp build --env=production",
"release": "build",
"start": "gulp start",
"test": "jest",
"prettier": "prettier --write --print-width 80 --single-quote --trailing-comma es5 \"{config,src,tasks}/**/*.js\"",
"eslint": "eslint \"{config,src,tasks}/**/*.js\"",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"npm run eslint",
"npm run prettier",
"git add"
]
},
"dependencies": {
"about-window": "^1.6.1",
"fs-jetpack": "^0.10.2"
},
"devDependencies": {
"electron": "^1.6.0",
"electron-builder": "^15.1.1",
"eslint": "^3.17.1",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-config-prettier": "^1.5.0",
"eslint-plugin-import": "^2.2.0",
"gulp": "^3.9.0",
"gulp-batch": "^1.0.5",
"gulp-watch": "^4.3.5",
"husky": "^0.13.2",
"jest": "^19.0.2",
"lint-staged": "^3.3.1",
"minimist": "^1.2.0",
"prettier": "^0.21.0",
"rollup": "^0.36.3"
}
}