forked from ngageoint/opensphere-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.17 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
{
"name": "opensphere-electron",
"version": "1.0.0",
"description": "OpenSphere is a pluggable GIS web application that supports both 2D and 3D views.",
"productName": "OpenSphere",
"main": "app/src/main.js",
"scripts": {
"guide": "make -C docs clean html",
"guide:auto": "sphinx-autobuild docs docs/_build/html",
"lint": "eslint 'app/src/**/*.js'",
"start": "electron .",
"create-installers": "electron-builder -mwl --x64",
"create-installer:linux": "electron-builder --linux --x64",
"create-installer:mac": "electron-builder --mac --x64",
"create-installer:win": "electron-builder --win --x64",
"postinstall": "electron-builder install-app-deps"
},
"repository": "https://github.com/ngageoint/opensphere-electron",
"keywords": [
"OpenSphere",
"Electron"
],
"license": "Apache-2.0",
"dependencies": {
"bluebird": "^3.7.2",
"config": "^3.3.3",
"electron-is-dev": "^1.2.0",
"electron-log": "^4.3.1",
"electron-updater": "^4.3.5",
"slash": "^3.0.0"
},
"devDependencies": {
"electron": "8.5.5",
"electron-builder": "22.9.1",
"eslint": "^7.26.0",
"eslint-config-google": "^0.14.0"
}
}