-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
62 lines (62 loc) · 1.54 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
{
"name": "mater",
"version": "1.0.9",
"description": "A Pomodoro menubar app",
"main": "main.js",
"scripts": {
"start": "electron main.js",
"build": "run-s build:*",
"build:mac": "electron-packager . Mater --platform=darwin --arch=x64 --overwrite --icon=mater",
"build:linux": "electron-packager . Mater --platform=linux --arch=x64 --overwrite --icon=mater",
"build:win": "electron-packager . Mater --platform=win32 --arch=x64 --overwrite --icon=mater",
"lint:css": "stylelint \"*.css\"",
"lint:js": "xo",
"test": "run-s lint:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasonlong/mater.git"
},
"keywords": [
"pomodoro",
"productivity",
"timer",
"electron",
"menubar"
],
"author": "Jason Long",
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonlong/mater/issues"
},
"homepage": "https://github.com/jasonlong/mater",
"dependencies": {
"menubar": "^9.5.1",
"tiny-timer": "^1.6.0"
},
"devDependencies": {
"devtron": "^1.4.0",
"electron": "31.1.0",
"electron-osx-sign": "^0.6.0",
"electron-packager": "^17.1.2",
"npm-run-all": "^4.1.5",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
"xo": "^0.59.3"
},
"xo": {
"global": [
"Audio",
"document",
"path"
],
"rules": {
"comma-dangle": 0,
"unicorn/prefer-module": 0,
"unicorn/prefer-node-protocol": 0
},
"semicolon": false,
"space": true
}
}