-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.34 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "DeDop-studio",
"productName": "DeDop-studio",
"version": "1.5.1",
"description": "DeDop Studio",
"private": true,
"scripts": {
"start": "electron app",
"test:e2e": "mocha e2e/**/*-test.js",
"pretest": "npm run compile",
"test": "mocha app/main/**/*.spec.js app/renderer/**/*.spec.js",
"postinstall": "install-app-deps",
"compile": "tsc",
"compile:trace": "tsc --traceResolution",
"build": "build --x64 --publish never",
"publish": "build --x64 --publish always",
"publish:win": "build --x64 --win --publish always",
"publish:mac": "build --x64 --mac --publish always",
"dist": "npm run clean && npm run compile && build --x64 --publish never",
"pack": "npm run clean && npm run compile && build --x64 --publish never --dir",
"clean": "rimraf app/main app/renderer",
"clean:all": "npm run clean && rimraf node_modules app/node_modules"
},
"repository": {
"type": "git",
"url": "https://github.com/DeDop/dedop-studio"
},
"keywords": [
"dedop",
"studio",
"delay",
"doppler",
"altimetry"
],
"author": "Brockmann Consult GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/DeDop/dedop-studio/issues"
},
"homepage": "http://dedop.org/",
"devDependencies": {
"@blueprintjs/core": "~1.35.3",
"@blueprintjs/table": "~1.31.2",
"@types/chai": "~3.4.34",
"@types/chai-as-promised": "~0.0.29",
"@types/chai-enzyme": "~0.5.5",
"@types/deep-equal": "0.0.x",
"@types/dom4": "~1.5.20",
"@types/electron-devtools-installer": "~2.0.2",
"@types/enzyme": "~3.1.9",
"@types/enzyme-adapter-react-16": "~1.0.2",
"@types/mocha": "~2.2.32",
"@types/react": "~16.0.40",
"@types/react-dom": "~16.0.4",
"@types/react-redux": "4.4.40",
"@types/redux": "~3.6.31",
"@types/redux-logger": "~2.6.34",
"@types/redux-thunk": "~2.1.32",
"@types/reselect": "~2.0.27",
"@types/tether": "~1.1.27",
"cesium": "~1.27.0",
"chai": "~3.5.0",
"chai-as-promised": "~6.0.0",
"deep-equal": "~1.0.1",
"electron": "1.8.8",
"electron-builder": "19.56.0",
"electron-devtools-installer": "~2.2.1",
"enzyme": "~3.3.0",
"enzyme-adapter-react-16": "~1.1.1",
"mocha": "~3.1.2",
"moment": "~2.21.0",
"react": "~16.2.0",
"react-ace": "~5.9.0",
"react-addons-css-transition-group": "~15.6.2",
"react-dom": "~16.2.0",
"react-redux": "~5.0.5",
"redux": "~3.7.0",
"redux-logger": "~3.0.6",
"redux-thunk": "~2.2.0",
"reselect": "~2.5.4",
"rimraf": "~2.5.4",
"semver": "^5.5.0",
"spectron": "~3.4.0",
"ts-node": "~4.1.0",
"typescript": "~2.7.2"
},
"build": {
"appId": "org.esa.dedop-studio",
"win": {
"target": [
"nsis",
"zip"
],
"icon": "app/resources/win32/dedop.ico"
},
"nsis": {
"artifactName": "${name}-${version}-${os}-${arch}.${ext}",
"oneClick": true,
"installerHeaderIcon": "app/resources/win32/dedop.ico"
},
"linux": {
"icon": "app/resources/linux",
"target": [
"AppImage",
"tar.gz",
"zip"
],
"category": "Science"
},
"mac": {
"icon": "app/resources/darwin/dedop.icns",
"category": "Science"
},
"dmg": {
"title": "${name}-${version}",
"icon": "app/resources/darwin/dedop.icns"
}
}
}