forked from hovancik/stretchly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
141 lines (141 loc) · 3.04 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "stretchly",
"version": "0.21.0",
"description": "break time reminder app",
"main": "app/main.js",
"engines": {
"node": "12.8.1"
},
"scripts": {
"start": "electron ./app",
"dev": "NODE_ENV='development' electron ./app --enable-logging --remote-debugging-port=9222",
"electromon": "electromon ./app",
"postinstall": "electron-builder install-app-deps",
"pack-all": "electron-builder build --dir -mwl --x64 --ia32",
"dist-all": "electron-builder build -mwl --x64 --ia32",
"pack": "electron-builder build --dir",
"dist": "electron-builder build --x64 --ia32",
"test": "mocha test",
"test-single": "mocha $1",
"tdd": "mocha --watch test",
"lint": "./node_modules/.bin/standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hovancik/stretchly.git"
},
"keywords": [
"stretchly",
"break",
"time",
"reminder"
],
"author": "Jan Hovancik <conta.srdr@gmail.com>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/hovancik/stretchly/issues"
},
"homepage": "https://hovancik.net/stretchly",
"devDependencies": {
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"electromon": "^1.0.10",
"electron": "^7.1.7",
"electron-builder": "^21.2.0",
"husky": "^3.0.9",
"mocha": "^6.2.2",
"rimraf": "^3.0.0",
"sinon": "^7.5.0",
"spectron": "^9.0.0",
"standard": "^14.3.1"
},
"build": {
"appId": "net.hovancik.stretchly",
"productName": "stretchly",
"dmg": {
"icon": "build/icon.icns",
"iconSize": 128,
"contents": [
{
"x": 355,
"y": 125,
"type": "link",
"path": "/Applications"
},
{
"x": 155,
"y": 125,
"type": "file"
}
]
},
"mac": {
"category": "public.app-category.healthcare-fitness",
"target": [
"dmg",
"zip"
],
"extendInfo": {
"LSBackgroundOnly": 1,
"LSUIElement": 1
}
},
"linux": {
"category": "Utility",
"target": [
"AppImage",
"deb",
"rpm",
"freebsd",
"pacman",
"tar.xz"
]
},
"win": {
"target": [
"nsis",
"nsis-web",
"7z",
"zip"
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"nsisWeb": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"standard": {
"parser": "babel-eslint",
"globals": [
"it",
"describe",
"before",
"after",
"beforeEach",
"afterEach",
"Audio",
"fetch",
"Notification",
"alert"
],
"ignore": [
"sun.js"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"@meetfranz/electron-notification-state": "^1.0.0",
"i18next": "^19.0.2",
"i18next-node-fs-backend": "^2.1.3",
"moment": "^2.24.0"
}
}