This repository has been archived by the owner on Jan 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.71 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
{
"name": "timesheethero",
"productName": "Timesheet-Hero",
"description": "Helps you keep track of your time.",
"author": "",
"private": true,
"version": "1.5.2",
"build": {
"appId": "ca.cgagnier.timesheethero",
"artifactName": "${name}-setup-${version}.${ext}",
"win": {
"extraFiles": [
{
"from": "build/",
"to": "./",
"filter": [
"*.dll"
]
}
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Moustachauve/Timesheet-Helper.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/Moustachauve/Timesheet-Helper/issues"
},
"homepage": "https://github.com/Moustachauve/Timesheet-Helper#readme",
"devDependencies": {
"electron": "^3.1.13",
"electron-builder": "^21.2.0",
"electron-winstaller": "^4.0.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
},
"scripts": {
"preinstall": "cd app && npm install",
"start": "./node_modules/.bin/electron app/.",
"rebuild": "./node_modules/.bin/electron-rebuild",
"package": "electron-packager ./app --out=packaged --icon=app/icon.ico --overwrite --asar --win32metadata.ProductName=\"Timesheet Hero\"",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"postinstall": "electron-builder install-app-deps",
"lint": "eslint --ext .js -f ./node_modules/eslint-friendly-formatter app",
"lint:fix": "eslint --ext .js -f ./node_modules/eslint-friendly-formatter --fix app"
}
}