-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "gramin-express",
"productName": "Gramin Express",
"description": "Sync Strava activities from any Garmin device",
"homepage": "http://salomvary.github.io/gramin-express",
"author": {
"name": "Márton Salomváry",
"email": "[email protected]"
},
"private": true,
"version": "0.0.7-0",
"main": "app/main.js",
"engines": {
"electron": "^0.37.2"
},
"engineStrict": true,
"scripts": {
"eslint": "eslint",
"gulp": "gulp",
"start": "NODE_ENV=development GRAMIN_PROFILE=development electron .",
"pack": "build --dir",
"dist": "build",
"build": "build",
"config": "node bin/generate-config app/config-example.js app/config.js",
"prebuild": "gulp icons",
"postinstall": "install-app-deps"
},
"build": {
"appId": "com.gramin.express",
"extraResources": [
"Credits.rtf"
],
"linux": {
"target": "tar.bz2"
}
},
"dependencies": {
"moment": "^2.12.0",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"request": "^2.69.0"
},
"devDependencies": {
"electron-builder": "20.2.0",
"electron-prebuilt": "^0.37.2",
"eslint": "^2.2.0",
"gulp": "^3.9.1",
"gulp-rename": "^1.2.2",
"gulp-svg2png": "^2.0.2",
"gulp-to-ico": "^1.0.0",
"merge-stream": "^1.0.1"
}
}