forked from TTLApp/time-to-leave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.91 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
{
"name": "time-to-leave",
"productName": "Time to Leave",
"version": "1.5.6-dev",
"description": "Log work hours and get notified when it's time to leave the office and start to live.",
"author": "Thamara Andrade",
"homepage": "https://github.com/thamara/time-to-leave#readme",
"repository": {
"type": "git",
"url": "github:thamara/time-to-leave.git"
},
"main": "main.js",
"scripts": {
"clean": "rimraf coverage release-builds __tests__/__main__/__database.ttldb__ ",
"debug:main": "electron --inspect=5858 .",
"debug:render": "electron --remote-debugging-port=9222 .",
"lint": "npx npm-run-all lint:*",
"lint:css": "stylelint **/*.css",
"lint:eslint": "eslint . ",
"lint:markdown": "prettier docs/*.md *.md -c",
"lint:standard": "standard . ",
"lint-fix": "npx npm-run-all lint-fix:*",
"lint-fix:css": "npm run lint:css -- --fix",
"lint-fix:eslint": "npm run lint:eslint -- --fix",
"lint-fix:markdown": "npm run lint:markdown -- --write",
"lint-fix:standard": "npm run lint:standard -- --fix",
"package:deb": "electron-packager . time-to-leave --overwrite --asar --platform=linux --arch=x64 --icon=assets/timer.png --prune=true --out=release-builds --ignore=__tests__",
"package:mac": "electron-packager . 'Time to Leave' --overwrite --platform=darwin --arch=x64 --icon=assets/icon-mac.icns --prune=true --out=release-builds --ignore=__tests__",
"package:win": "electron-packager . time-to-leave --overwrite --platform=win32 --arch=ia32 --icon=assets/timer.ico --prune=true --out=release-builds --version-string.CompanyName=CE --version-string.FileDescription=CE --version-string.ProductName=\"Time to Leave\" --ignore=__tests__",
"preinstall": "npx npm-force-resolutions",
"postinstall": "patch-package",
"pretest": "npm run clean",
"start": "electron .",
"test": "jest --runInBand --detectOpenHandles --verbose --colors"
},
"pre-commit": [
"clean",
"lint-fix",
"clean"
],
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"selector-list-comma-newline-after": null,
"length-zero-no-unit": null
}
},
"license": "GPL-3.0",
"devDependencies": {
"@jest-runner/electron": "^3.0.0",
"electron": "^10.1.3",
"electron-packager": "^15.1.0",
"electron-reloader": "^1.0.1",
"eslint": "^7.10.0",
"jest": "^26.5.2",
"patch-package": "^6.2.2",
"jquery-mousewheel": "^3.1.13",
"pre-commit": "^1.2.2",
"standard": "^14.3.4",
"stylelint": "^13.7.2",
"stylelint-config-standard": "^20.0.0"
},
"dependencies": {
"bootstrap": "^4.5.2",
"date-holidays": "^1.7.0",
"electron-store": "^6.0.1",
"is-online": "^8.4.0",
"jquery": "^3.5.1",
"node-notifier": "^8.0.0",
"popper.js": "^1.16.1"
},
"resolutions": {
"fsevents": "^2.1.2"
},
"engines": {
"node": "^10.12.6",
"yarn": "YARN NO LONGER USED - use npm instead."
}
}