forked from onmyway133/PushNotifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.08 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
{
"name": "PushNotifications",
"productName": "PushNotifications",
"version": "1.3.0",
"description": "A macOS app to test push notifications",
"main": "main.js",
"repository": "https://github.com/onmyway133/PushNotifications",
"author": "Khoa Pham <[email protected]>",
"license": "MIT",
"scripts": {
"start": "electron main.js",
"release": "electron-packager . --icon=Icon/Icon.icns",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"build": {
"appId": "com.onmyway133.pushnotifications",
"mac": {
"category": "public.app-category.productivity"
},
"win": {
"target": "msi"
},
"linux": {
"target": [
"AppImage",
"deb"
]
}
},
"dependencies": {
"apn": "^2.2.0",
"electron-store": "^2.0.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": "^2.0.7",
"electron-builder": "20.25.0",
"electron-packager": "^12.1.0"
}
}