forked from thamara/time-to-leave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 3.14 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
{
"name": "time-to-leave",
"productName": "Time to Leave",
"version": "2.0.2-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": "npm-run-all lint:*",
"lint:css": "stylelint css/*.css",
"lint:eslint": "eslint . ",
"lint:markdown": "prettier docs/*.md *.md -c",
"lint:json": "prettier locales/*/*.json -c",
"lint-fix": "npm-run-all lint-fix:*",
"lint-fix:css": "npm run lint:css -- --fix",
"lint-fix:eslint": "npm run lint:eslint -- --fix",
"lint-fix:json": "npm run lint:json -- --write",
"lint-fix:markdown": "npm run lint:markdown -- --write",
"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": "npm-run-all test:*",
"test:jest": "jest --runInBand --detectOpenHandles --verbose --colors",
"test:mocha": "nyc --reporter=lcov --reporter=json mocha tests/*"
},
"pre-commit": [
"clean",
"lint-fix",
"clean"
],
"license": "GPL-3.0",
"devDependencies": {
"@jest-runner/electron": "^3.0.0",
"electron": "^11.1.1",
"electron-mocha": "^10.1.0",
"electron-packager": "^15.2.0",
"electron-reloader": "^1.2.1",
"eslint": "^7.31.0",
"jest": "^26.6.3",
"mocha": "^9.0.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"patch-package": "^6.4.7",
"pre-commit": "^1.2.2",
"spectron": "^15.0.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"tap-spec": "^5.0.0",
"tape": "^5.2.2"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"bootstrap": "^5.0.2",
"date-holidays": "^1.8.5",
"electron-squirrel-startup": "^1.0.0",
"electron-store": "^6.0.1",
"i18next": "^20.3.3",
"i18next-node-fs-backend": "^2.1.3",
"is-online": "^9.0.1",
"jquery": "^3.6.0",
"jquery-i18next": "^1.2.1",
"jquery-mousewheel": "^3.1.13",
"node-notifier": "^10.0.0",
"popper.js": "^1.16.1"
},
"engines": {
"node": ">=14.15.5",
"yarn": "YARN NO LONGER USED - use npm instead."
}
}