-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
61 lines (61 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
{
"name": "crypto-bar",
"version": "1.1.16",
"main": "index.js",
"title": "Crypto Bar",
"description": "A menu bar application that updates cryptocurrencies prices in real-time",
"author": "Geraldo Ramos",
"repository": "geraldoramos/crypto-bar",
"scripts": {
"start": "electron -r babel-register .",
"publish": "build -p always"
},
"dependencies": {
"axios": "^0.17.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.3.13",
"better-react-spinkit": "^2.0.4",
"electron-google-analytics": "0.0.24",
"electron-log": "^2.2.14",
"electron-positioner": "^3.0.0",
"electron-store": "^1.3.0",
"electron-updater": "^2.20.1",
"format-currency": "^1.0.0",
"node-machine-id": "^1.1.10",
"open": "0.0.5",
"path": "^0.12.7",
"raven": "^2.4.0",
"react": "^15.3.2",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^15.3.2",
"react-spinkit": "^3.0.0",
"react-virtualized-select": "^3.1.1",
"socket.io-client": "^2.0.4",
"underscore": "^1.8.3"
},
"devDependencies": {
"electron": "^1.8.4"
},
"build": {
"publish": [
{
"provider": "github",
"owner": "geraldoramos",
"repo": "crypto-bar"
}
],
"appId": "com.github.geraldoramos.crypto-bar",
"mac": {
"category": "public.app-category.utilities",
"icon": "assets/mac_icon.icns",
"target": [
"zip",
"dmg"
]
},
"dmg": {
"background": "assets/background.tiff"
}
}
}