-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.38 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
{
"name": "Confidante",
"version": "1.0.3",
"license": "SEE LICENSE IN LICENSE.md",
"description": "Usable encrypted email",
"author": "UW CSE Security and Privacy Lab",
"private": true,
"main": "./src/electron/main.js",
"scripts": {
"build": "./scripts/build.sh",
"build:electron": "node scripts/build-electron.js",
"build:package": "node scripts/build-package.js",
"build:installer-win": "node scripts/build-installer-win.js",
"clean": "./scripts/clean.sh",
"electron": "electron .",
"lint": "eslint src/* || true",
"prod-build": "./scripts/prod-build.sh",
"postinstall": "node scripts/postinstall.js",
"test": "mocha"
},
"browser": {
"request": "xhr"
},
"dependencies": {
"@tappleby/react-typeahead-component": "^0.10.3",
"body-parser": "^1.17.2",
"bootstrap": "^3.3.7",
"compression": "^1.7.0",
"cookie": "^0.3.1",
"dateformat": "^2.0.0",
"ejs": "^2.5.7",
"ejs-electron": "github:eric-zeng/ejs-electron",
"electron-config": "^1.0.0",
"electron-context-menu": "^0.9.1",
"electron-squirrel-startup": "^1.0.0",
"email-addresses": "^3.0.1",
"email-validator": "^1.1.1",
"express": "^4.15.3",
"express-session": "^1.15.5",
"flux": "^3.1.3",
"get-port": "^3.1.0",
"google-auth-library": "^0.10.0",
"googleapis": "^59.0.0",
"jquery": "^3.2.1",
"kbpgp": "^2.0.73",
"keybase-proofs": "^2.1.16",
"mongoose": "^5.7.8",
"node-uuid": "^1.4.8",
"pgp-utils": "0.0.32",
"purepack": "^1.0.4",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-notify-toast": "^0.3.0",
"request": "^2.81.0",
"semver": "^5.4.1",
"triplesec": "^3.0.25",
"urlsafe-base64": "^1.0.0",
"xhr": "^2.4.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"electron": "^9.1.0",
"electron-packager": "^8.7.2",
"electron-winstaller": "^2.6.3",
"envify": "^4.1.0",
"eslint": "^4.3.0",
"eslint-plugin-react": "^7.1.0",
"fs-extra": "^4.0.1",
"insert-module-globals": "^7.0.1",
"mocha": "^3.5.0",
"mockery": "^2.1.0",
"sinon": "^2.4.1",
"uglify-js": "^3.0.27"
},
"repository": {
"type": "git",
"url": "git@gitlab.cs.washington.edu:lerner/keymail.git"
}
}