-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.62 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
63
{
"name": "esc-configurator-app",
"productName": "ESC Configurator",
"version": "0.2.0",
"private": true,
"description": "Standalone app for esc-configurator.com",
"main": "main.js",
"build": {
"appId": "com.esc-configurator.app",
"mac": {
"target": "zip",
"category": "public.app-category.utilities"
},
"snap": {
"publish": "github"
},
"forceCodeSigning": true
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "electronmon .",
"build": "electron-builder",
"release": "standard-version",
"lint": "eslint .",
"test": "npm run lint"
},
"simple-git-hooks": {
"pre-commit": "npx --no with-staged '**/*.js' -- eslint",
"pre-push": "[ $(git branch --show-current) != main ] || npx --no -- commitlint --from=origin/main --to=HEAD"
},
"dependencies": {
"electron-log": "^4.4.1",
"electron-store": "^8.0.1",
"electron-updater": "^4.3.9"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"electron": "^16.0.7",
"electron-builder": "22.11.7",
"electronmon": "^2.0.2",
"eslint-config-standard": "^16.0.3",
"patch-package": "^6.4.7",
"simple-git-hooks": "^2.6.1",
"standard-version": "^9.3.2",
"with-staged": "^1.0.2"
},
"author": "Mathias Rasmussen <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mathiasvr/esc-configurator-app.git"
},
"keywords": [
"esc",
"configurator",
"electron"
],
"bugs": {
"url": "https://github.com/mathiasvr/esc-configurator-app/issues"
},
"homepage": "https://github.com/mathiasvr/esc-configurator-app#readme"
}