-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 2.82 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
{
"name": "astroffers",
"version": "1.1.3",
"description": "Take offers to watch at given nights by the NGC2000 catalog",
"main": "lib/main.js",
"typings": "lib",
"scripts": {
"build": "rimraf lib && tsc",
"build:w": "rimraf lib && tsc -w",
"start": "electron .",
"start-prod": "NODE_ENV=production npm start",
"dist": "rimraf dist && npm run build && electron-builder -mwl --publish always",
"mac": "npm run build && electron-builder --mac",
"linux": "npm run build && electron-builder --linux",
"win": "npm run build && electron-builder --win"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jayhasyee/astroffers.git"
},
"keywords": [],
"author": {
"name": "Péter Hauszknecht",
"email": "hasyee@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jayhasyee/astroffers/issues"
},
"homepage": "http://astroffers.org",
"dependencies": {
"astroffers-core": "1.0.3",
"classnames": "2.2.5",
"clone": "2.1.1",
"electron-ga": "1.0.6",
"electron-is-dev": "0.3.0",
"electron-log": "2.2.11",
"electron-updater": "2.21.0",
"font-roboto-local": "1.0.1",
"highcharts": "6.0.3",
"json-2-csv": "2.2.0",
"left-pad": "1.2.0",
"material-ui": "0.19.4",
"mdi": "2.0.46",
"moment": "2.19.3",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-google-maps": "9.4.1",
"react-highcharts": "15.0.0",
"react-markdown": "3.1.0",
"react-redux": "5.0.6",
"redux": "3.7.2",
"repatch": "1.3.12",
"uuid": "3.2.1"
},
"devDependencies": {
"@types/googlemaps": "3.30.0",
"@types/markerclustererplus": "2.1.33",
"@types/node": "8.0.53",
"@types/react": "16.0.25",
"@types/react-dom": "16.0.3",
"@types/react-redux": "5.0.14",
"electron": "1.8.3",
"electron-builder": "20.4.1",
"rimraf": "2.6.2",
"typescript": "2.6.2"
},
"build": {
"productName": "Astroffers",
"appId": "org.electron.astroffers",
"files": [
"lib",
"static",
"index.html",
"package.json"
],
"publish": {
"provider": "github",
"owner": "jayhasyee",
"repo": "astroffers"
},
"mac": {
"category": "public.app-category.astronomy"
},
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"linux": {
"category": "Astronomy",
"target": [
"AppImage"
]
},
"appImage": {
"systemIntegration": "doNotAsk"
}
}
}