-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
55 lines (55 loc) · 1.34 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": "tempus",
"description": " A simple yet featureful pomodoro in the tray/menubar",
"version": "1.7.0",
"author": "Keziah Moselle (https://github.com/KeziahMoselle)",
"private": true,
"homepage": "./",
"license": "MIT",
"scripts": {
"web": "yarn workspace @tempus/app start",
"build:web": "yarn workspace @tempus/app build",
"test:app": "yarn workspace @tempus/app test",
"electron": "yarn workspace @tempus/electron start",
"build:electron": "yarn workspace @tempus/electron build",
"test:electron": "yarn workspace @tempus/electron test",
"release": "yarn workspace @tempus/electron release",
"format": "prettier packages/**/*.{js,jsx,json} --write"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"concurrently": "^5.0.1",
"cross-env": "^5.2.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"wait-on": "^3.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/**/*.{js,jsx,json}": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": "react-app"
},
"keywords": [
"pomodoro",
"tray",
"electron"
],
"repository": {
"type": "git",
"url": "git+https://github.com/keziahmoselle/tempus.git"
}
}