-
-
Notifications
You must be signed in to change notification settings - Fork 176
/
package.json
51 lines (51 loc) · 1.21 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
{
"name": "push_notifications",
"productName": "PushNotifications",
"version": "1.7.10",
"description": "A macOS, Linux, Windows app to test push notifications on iOS and Android",
"main": "main.js",
"repository": "https://github.com/onmyway133/PushNotifications",
"author": "Khoa Pham <onmyway133@gmail.com>",
"license": "MIT",
"scripts": {
"start": "npx electron main.js",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"build": {
"appId": "com.onmyway133.PushNotifications",
"buildVersion": "5",
"productName": "Push Notifications",
"icon": "./Icon/Icon.icns",
"mac": {
"category": "public.app-category.productivity",
"target": [
"dmg",
"zip"
]
},
"win": {
"target": "msi"
},
"linux": {
"target": [
"AppImage",
"deb"
]
}
},
"dependencies": {
"apn": "node-apn/node-apn#master",
"electron-store": "^2.0.0",
"fs-extra": "^8.1.0",
"material-ui": "0.20.1",
"node-fetch": "^1.7.2",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-tap-event-plugin": "3.0.2"
},
"devDependencies": {
"electron": "^6.1.12",
"electron-builder": "22.7.0"
}
}