-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "iBroadcast-desktop",
"version": "1.0.0",
"description": "Election wrapper for iBroadcast web player",
"main": "./index.js",
"scripts": {
"lint": "eslint --cache --ext .js .",
"lint:fix": "eslint --fix --ext .js .",
"prettier": "prettier --write '**/*.js'",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"postinstall": "electron-builder install-app-deps",
"prepare": "husky install"
},
"author": "Nicolas Martel",
"license": "MIT",
"build": {
"appId": "your.id",
"mac": {
"category": "your.app.category.type"
}
},
"devDependencies": {
"@commitlint/config-conventional": "^16.2.1",
"commitlint": "^16.2.1",
"electron": "^17.1.0",
"electron-builder": "^22.14.13",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}