-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.14 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.14 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
{
"name": "dbQueryConverter",
"version": "1.0.0",
"author": {
"name": "BRISSON Pierre-Alain",
"email": "brissonpierrealain@hotmail.com"
},
"homepage": "https://bitbucket.org/PAB78430/dbquery-converter/src/master/",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "./node_modules/.bin/electron-builder build --dir",
"dist": "./node_modules/.bin/electron-builder build"
},
"build": {
"mac": {
"category": "public.app-category.developer-tools",
"icon": "build/icon.icns",
"target": [
"dmg",
"pkg"
]
},
"linux": {
"icon": "build/icon.png",
"target": [
"AppImage",
"deb",
"7z",
"tar.gz",
"tar.bz2"
]
},
"win": {
"icon": "build/icon.ico",
"target": [
"msi",
"portable"
]
},
"directories": {
"buildResources": "build"
}
},
"devDependencies": {
"electron": "3.0.10",
"electron-builder": "^21.1.5",
"electron-packager": "^14.0.3"
},
"dependencies": {
"codemirror": "5.47.0",
"jquery": "^3.4.1",
"split.js": "1.5.11"
}
}