-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
62 lines (62 loc) · 1.69 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
58
59
60
61
62
{
"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.5.2",
"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"
],
"appImage": {
"category": "Network"
}
},
"scripts": {
"postinstall": "install-app-deps electron-builder 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",
"compare-versions": "^3.1.0",
"fs-jetpack": "^1.2.0",
"node-fetch": "^1.7.3"
},
"devDependencies": {
"electron": "^1.8.2-beta.3",
"electron-builder": "^19.48.3",
"eslint": "^4.13.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.2.0",
"gulp": "^3.9.0",
"gulp-batch": "^1.0.5",
"gulp-watch": "^4.3.5",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^6.0.0",
"minimist": "^1.2.0",
"prettier": "^1.9.2",
"rollup": "^0.44.0"
}
}