forked from gharte85/robinhood-to-csv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.1 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
{
"name": "robinhood-to-csv",
"productName": "Robinhood to CSV",
"version": "1.0.0",
"description": "Connect to your Robinhood account and export your trading history as a csv file or upload it to your Trading Dive account",
"main": "main.js",
"scripts": {
"start": "electron .",
"postinstall": "install-app-deps",
"package-mac": "electron-packager . --overwrite --platform=darwin --arch=x64 --icon=assets/icons/mac/icon.icns --prune=true --out=release-builds",
"package-win": "electron-packager . robinhood-to-csv --overwrite --asar=true --platform=win32 --arch=ia32 --icon=assets/icons/win/icon.ico --prune=true --out=release-builds --version-string.CompanyName=CE --version-string.FileDescription=CE --version-string.ProductName=\"Robinhood To CSV\"",
"package-linux": "electron-packager . robinhood-to-csv --overwrite --asar=true --platform=linux --arch=x64 --icon=assets/icons/png/icon.png --prune=true --out=release-builds",
"pack": "build --dir",
"dist": "build"
},
"build": {
"appId": "com.example.robinhood-to-csv",
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": "NSIS",
"icon": "build/icon.ico"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/gharte85/robinhood-to-csv.git"
},
"author": "Gareth Harte",
"license": "MIT",
"bugs": {
"url": "https://github.com/gharte85/robinhood-to-csv/issues"
},
"homepage": "https://github.com/gharte85/robinhood-to-csv#readme",
"dependencies": {
"electron-log": "^2.2.11",
"electron-updater": "^2.16.3",
"http": "0.0.0",
"https": "^1.0.0",
"moment": "^2.19.3",
"querystring": "^0.2.0",
"robinhood": "^1.1.2"
},
"devDependencies": {
"electron": "^1.7.9",
"electron-builder": "^19.47.1",
"electron-packager": "^10.1.0",
"electron-squirrel-startup": "^1.0.0"
}
}