-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
87 lines (87 loc) · 1.99 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
86
87
{
"name": "Femto",
"productName": "Femto",
"version": "0.1.0",
"description": "An open source email client.",
"license": "MIT",
"repository": "popey456963/mailclient",
"author": {
"name": "Alexander Craggs",
"email": "[email protected]",
"url": "github.com/popey456963/mailclient"
},
"contributors": [
{
"name": "Miles Budden",
"url": "https://milesbudden.com",
"email": "[email protected]"
}
],
"scripts": {
"test": "ava",
"start": "electron .",
"build": "echo \"DEPRECATED\" && electron-packager . --out=dist --asar --overwrite --all",
"pack": "build --dir",
"dist": "build"
},
"build": {
"appId": "com.codefined.femto",
"mac": {
"category": "productivity"
}
},
"keywords": [
"electron-app",
"electron",
"femto"
],
"dependencies": {
"async": "^2.6.0",
"bluebird": "^3.5.0",
"chalk": "^1.1.3",
"dotenv": "^4.0.0",
"electron-debug": "^1.0.0",
"electron-in-page-search": "^1.2.3",
"fs-jetpack": "^0.13.3",
"gulp": "^3.9.1",
"imap": "^0.8.19",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"lzma-purejs": "^0.9.3",
"mailparser": "^2.0.2",
"materialize-css": "^0.98.2",
"merge-deep": "^3.0.0",
"moment": "^2.18.1",
"navigo": "^4.5.1",
"nedb": "^1.8.0",
"nodemailer": "^4.0.1",
"path": "^0.12.7",
"promise-timeout": "^1.1.1",
"sanitize-html": "^1.14.1",
"stack-trace": "0.0.9"
},
"devDependencies": {
"ava": "^0.19.1",
"devtron": "^1.4.0",
"electron": "^1.3.3",
"electron-bin-path": "^0.1.0",
"electron-builder": "^17.3.1",
"electron-packager": "^8.0.0",
"gulp": "^3.9.1",
"gulp-batch": "^1.0.5",
"gulp-plumber": "^1.1.0",
"gulp-sass": "^3.1.0",
"gulp-watch": "^4.3.11",
"spectron": "^3.7.0",
"standard": "^10.0.2"
},
"xo": {
"esnext": true,
"envs": [
"node",
"browser"
],
"linebreak-style": "windows",
"semi-colon": false
}
}