-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.45 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
{
"name": "cyclient",
"productName": "cyclient",
"version": "0.0.1",
"description": "Unofficial Cyberoam Client",
"license": "MIT",
"repository": "akashnimare/Cyclient",
"author": {
"name": "Akash Nimare",
"email": "[email protected]",
"url": "akashnimare.in"
},
"engines": {
"node": ">=4"
},
"electronVersion": "0.33.3",
"scripts": {
"test": "xo",
"start": "electron .",
"build": "npm run build-osx",
"build-osx": "electron-packager . $npm_package_productName --overwrite --out=dist --ignore='^/dist$' --ignore='^/media$' --prune --platform=darwin --arch=x64 --icon=media/Icon.icns --app-bundle-id=com.akashnimare.cyclient --sign='Developer ID Application: Akash Nimare (YG56YK5RN8)' --app-version=$npm_package_version --version=$npm_package_electronVersion && cd dist/cyclient-darwin-x64 && zip -ryXq9 ../Cyclent-${npm_package_version}.zip Cyclent.app" },
"files": [
"index.js",
"browser.js",
"css/browser.css",
"css/sweet.css",
"sweet.js",
"menu.js",
"cy.js",
"jquery.js",
"media/Icon.icns"
],
"keywords": [
"electron-app",
"Cyclient",
"Cyberoam",
"App",
"login"
],
"dependencies": {
"electron-debug": "^0.2.1"
},
"devDependencies": {
"electron-packager": "^5.1.0",
"electron-prebuilt": "^0.33.3",
"xo": "*"
},
"xo": {
"esnext": true,
"envs": [
"node",
"browser"
],
"ignores": [
"dist/**"
]
}
}