-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.17 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
{
"name": "gramin-mapinstall",
"productName": "Gramin MapInstall",
"description": "Install maps onto your Garmin GPS device with no hassle",
"version": "0.0.1",
"private": true,
"main": "./app/main.js",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"start": "electron-forge start",
"test": "mocha",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish"
},
"devDependencies": {
"@electron-forge/cli": "6.0.0-beta.32",
"@electron-forge/maker-deb": "6.0.0-beta.32",
"@electron-forge/maker-dmg": "^6.0.0-beta.22",
"@electron-forge/maker-rpm": "6.0.0-beta.32",
"@electron-forge/publisher-github": "^6.0.0-beta.22",
"electron": "4.0.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^5.2.0",
"mock-fs": "^4.7.0",
"ncp": "^2.0.0",
"redux-devtools": "^3.5.0",
"tmp": "0.0.33"
},
"dependencies": {
"electron-squirrel-startup": "^1.0.0",
"fs-extra": "^7.0.1",
"glob": "^7.1.3",
"immutable": "^4.0.0-rc.12",
"moment": "^2.23.0",
"node-7z": "^1.0.1",
"promisify-node": "^0.5.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"tmp": "0.0.33"
},
"config": {
"forge": {
"packagerConfig": {
"ignore": "test",
"executableName": "gramin-mapinstall"
},
"makers": [
{
"name": "@electron-forge/maker-dmg",
"config": {}
},
{
"name": "@electron-forge/maker-deb",
"config": {}
},
{
"name": "@electron-forge/maker-rpm",
"config": {}
}
],
"publishers": [
{
"name": "@electron-forge/publisher-github",
"config": {
"prerelease": "true",
"repository": {
"owner": "salomvary",
"name": "gramin-mapinstall"
}
}
}
]
}
}
}