-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
38 lines (38 loc) · 952 Bytes
/
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
{
"name": "gmail-app",
"productName": "Gmail",
"version": "0.0.1",
"description": "A native gmail client.",
"main": "index.js",
"bin": { "gmail": "./launch.sh" },
"scripts": {
"start": "./launch.sh",
"build": "electron-packager . Gmail --platform=darwin --arch=x64 --version=0.35.1 --icon=lib/media/gmail.png",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paulot/gmail.git"
},
"keywords": [
"gmail",
"mail",
"app"
],
"author": "Paulo Tanaka",
"license": "MIT",
"bugs": {
"url": "https://github.com/paulot/gmail/issues"
},
"homepage": "https://github.com/paulot/gmail#readme",
"dependencies": {
"bluebird": "^3.0.5",
"jquery": "^2.1.4",
"node-gmail": "^1.0.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.1.18",
"babel-core": "^6.2.1",
"electron-prebuilt": "^0.35.1"
}
}