forked from Nic128/iBroadcast-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 KB
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
{
"name": "iBroadcast",
"version": "1.1.1",
"description": "Election wrapper for iBroadcast Web player",
"main": "./index.js",
"scripts": {
"start": "electron .",
"lint": "eslint --cache --ext .js .",
"lint:fix": "eslint --fix --ext .js .",
"prettier": "prettier --write '**/*.js'",
"app:dir": "electron-builder --dir",
"app:dist": "electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"author": "Joris Berthelot <[email protected]>",
"contributors": [
{
"name": "Nicolas Martel"
}
],
"license": "MIT",
"build": {
"appId": "net.eexit.ibroadcast-app",
"mac": {
"category": "public.app-category.music"
}
},
"devDependencies": {
"@commitlint/config-conventional": "^17.4.2",
"commitlint": "^17.4.2",
"electron": "^22.1.0",
"electron-builder": "^23.6.0",
"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",
"lint-staged": "^13.1.0",
"prettier": "^2.5.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"dependencies": {}
}