-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "safegateway",
"productName": "Safegateway",
"version": "0.0.0",
"description": "My tiptop app",
"license": "MIT",
"main": "index.js",
"repository": "krishnaIndia/safegateway",
"author": {
"name": "krishna",
"email": "krishnaof1988@gmail.com",
"url": "maidsafe.net"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"start": "electron .",
"build": "electron-packager . SAFEGateway --out=output --ignore=output --prune --asar --platform=win32 --arch=x64 --version=0.30.0",
"build-osx": "electron-packager . SAFEGateway --out=output --ignore=output --prune --asar --platform=darwin --arch=x64 --version=0.30.0"
},
"files": [
"index.js",
"index.html",
"index.css"
],
"keywords": [
"electron-app"
],
"dependencies": {
"auth-header": "^0.2.2",
"body-parser": "^1.14.2",
"electron-debug": "^0.1.1",
"express": "^4.13.3",
"http-proxy": "^1.12.0",
"jsonwebtoken": "^5.5.0",
"libsodium-wrappers": "^0.2.12",
"mime": "^1.3.4",
"npmlog": "^2.0.0"
},
"devDependencies": {
"electron-packager": "^5.0.0",
"electron-prebuilt": "^0.30.0"
}
}