-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 914 Bytes
/
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
{
"name": "evaluator",
"version": "1.2.3",
"author": "Alec Rios",
"description": "A powerful calculator on standby.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/alecrios/evaluator.git"
},
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder build",
"ship": "electron-builder build -p always"
},
"build": {
"appId": "com.electron.evaluator",
"productName": "Evaluator",
"copyright": "Copyright © 2022 Alec Rios",
"mac": {
"category": "public.app-category.utilities",
"darkModeSupport": true
},
"win": {
"target": "portable"
},
"publish": {
"provider": "github"
}
},
"dependencies": {
"evaluator.js": "^3.2.4"
},
"devDependencies": {
"electron": "^6.0.12",
"electron-builder": "^21.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2"
}
}