-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
68 lines (68 loc) · 1.59 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
{
"author": "Evothings <[email protected]>",
"bugs": {
"url": "https://github.com/evothings/evothings-studio/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/evothings/evothings-studio.git"
},
"devDependencies": {
"chai": "^3.5.0",
"electron": "^1.4.14",
"electron-builder": "^11.2.4",
"electron-packager": "^8.5.0",
"node-promise": "^0.5.12",
"spectron": "^3.4.1",
"electron-builder-squirrel-windows": "^11.2.5"
},
"build": {
"appId": "com.evothings.studio",
"linux": {
"category": "Development",
"target": [
"deb",
"rpm",
"AppImage"
],
"synopsis": "IoT hybrid mobile app development tool",
"vendor": "Evothings <[email protected]>"
},
"mac": {
"category": "public.app-category.developer-tools"
},
"dmg": {
"contents": [
{
"x": 140,
"y": 220
},
{
"x": 450,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": [
"nsis",
"squirrel"
]
},
"squirrelWindows": {
"iconUrl": "http://evothings.com/evothings-logo.ico"
}
},
"scripts": {
"test": "electron-mocha",
"dist": "build --linux deb rpm && build --mac && build --win && build --win --ia32",
"dist:mac": "build --mac",
"dist:linux": "build --linux",
"dist:win": "build --win",
"dist:win32": "build --win --ia32",
"start": "cd app && electron --enable-logging main.js"
}
}