-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (72 loc) · 2.66 KB
/
package.json
File metadata and controls
75 lines (72 loc) · 2.66 KB
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
{
"name": "hm-explorer",
"productName": "Homematic Explorer",
"description": "A Desktop App for HM device investigation",
"version": "0.0.22",
"author": "thkl <th.kluge@me.com>",
"copyright": "c 2017",
"homepage": "https://github.com/thkl/HM-Explorer",
"bugs":"https://github.com/thkl/HM-Explorer/issues",
"license": "MIT",
"main": "app/background.js",
"build": {
"appId": "",
"files": [
"app/**/*",
"node_modules/**/*",
"package.json"
],
"publish": ""
},
"scripts": {
"postinstall": "install-app-deps",
"build": "gulp build",
"prerelease": "gulp build --env=production",
"release": "build",
"start": "gulp start",
"pretest": "gulp build-unit --env=test",
"test": "electron-mocha app/specs.js.autogenerated --renderer --require source-map-support/register",
"coverage": "npm test -- -R scripts/istanbul-reporter",
"pree2e": "gulp build-e2e --env=test",
"e2e": "mocha app/e2e.js.autogenerated --require source-map-support/register",
"bundle": "gulp pack",
"package-mac": "electron-packager pack HM_Explorer --platform=darwin --icon=app/img/mac/icon.icns --overwrite --asar",
"package-win": "electron-packager pack HM_Explorer --platform=win32 --overwrite --asar --icon=assets/icons/win/icon.ico --version-string.CompanyName=kSquare --version-string.FileDescription=HomeMaticExplorer --version-string.ProductName=\"HomeMatic Explorer\"",
"package-win32": "electron-packager pack HM_Explorer32Bit --platform=win32 --overwrite --asar --arch=ia32 --icon=assets/icons/win/icon.ico --version-string.CompanyName=kSquare --version-string.FileDescription=HomeMaticExplorer --version-string.ProductName=\"HomeMatic Explorer\"",
"build-updatedescription":"node tasks/build_updatedescription.js"
},
"dependencies": {
"electron-tree-view": "1.1.0",
"fs-jetpack": "^1.0.0",
"brightwheel": "0.1.8",
"xml2js": "0.4.17",
"binrpc": "3.1.0",
"homematic-xmlrpc": "1.0.2",
"asar-updater":"0.3.1",
"encoding":"0.1.12"
},
"devDependencies": {
"chai": "^4.0.1",
"devtron": "^1.4.0",
"electron": "12.0.0",
"electron-builder": "^19.5.1",
"electron-debug": "1.2.0",
"electron-mocha": "^4.0.0",
"electron-packager": "^8.7.1",
"gulp": "^3.9.1",
"gulp-batch": "^1.0.5",
"gulp-jshint": "2.0.4",
"gulp-less": "^3.3.0",
"gulp-plumber": "^1.1.0",
"gulp-util": "^3.0.8",
"gulp-watch": "^4.3.11",
"istanbul": "^0.4.5",
"jshint": "latest",
"minimist": "^1.2.0",
"mocha": "^3.2.0",
"rollup": "^0.43.0",
"rollup-plugin-istanbul": "^1.1.0",
"source-map-support": "^0.4.11",
"spectron": "^3.6.4"
}
}