forked from teamxenox/caligator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 1.58 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "caligator",
"productName": "caligator",
"version": "0.0.1-0",
"description": "The best app calculator ever",
"license": "MIT",
"repository": "sarthology/caligator",
"author": {
"name": "Sarthology",
"email": "[email protected]",
"url": "https://sarthak.it"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"lint": "xo",
"test": "xo && npm run lint",
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder --macos --linux --windows --publish always",
"release": "np"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{*,app}.js": "npm run lint"
},
"dependencies": {
"axios": "^0.19.0",
"electron-context-menu": "^0.12.1",
"electron-debug": "^3.0.0",
"electron-store": "^3.3.0",
"electron-unhandled": "^2.2.0",
"electron-updater": "^4.0.6",
"electron-util": "^0.12.0",
"mathjs": "^6.2.2"
},
"devDependencies": {
"electron": "4.0.1",
"electron-builder": "^20.43.0",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"np": "^5.0.3",
"xo": "^0.24.0"
},
"xo": {
"prettier": true,
"envs": [
"node",
"browser"
]
},
"np": {
"publish": false,
"releaseDraft": false
},
"build": {
"appId": "com.sarthak.caligator",
"mac": {
"category": "public.app-category.utility"
},
"dmg": {
"iconSize": 160,
"contents": [
{
"x": 180,
"y": 170
},
{
"x": 480,
"y": 170,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Utility"
}
}
}