-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
66 lines (66 loc) · 1.38 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
{
"name": "vizgraph",
"version": "0.0.8",
"description": "A simple tool for Using Graphviz.",
"main": "main.js",
"scripts": {
"start": "electron .",
"dev": "electron . --debug",
"test": "echo \"Error: no test specified\" && exit 1",
"dist": "electron-builder -lw --publish always",
"win": "electron-builder -w",
"linux": "electron-builder -l",
"mac": "electron-builder -m"
},
"author": {
"name": "Jcf94",
"email": "jcf94@outlook.com"
},
"repository": {
"type": "git",
"url": "https://github.com/jcf94/vizgraph.git"
},
"license": "ISC",
"devDependencies": {
"electron": "^4.0.0",
"electron-builder": "^20.38.4"
},
"dependencies": {
"ace-builds": "^1.4.2",
"electron-settings": "^3.2.0",
"split.js": "^1.5.10",
"svg-pan-zoom": "^3.6.0",
"viz.js": "^2.1.2"
},
"build": {
"appId": "com.jcf94.vizgraph",
"productName": "vizgraph",
"extraFiles": [
"template/*",
"src/img/ico.png"
],
"win": {
"target": {
"target": "portable",
"arch": [
"ia32",
"x64"
]
},
"publisherName": "Jcf94",
"icon": "src/img/ico.ico"
},
"linux": {
"target": {
"target": "AppImage",
"arch": [
"ia32",
"x64"
]
}
},
"mac": {
"icon": "src/img/ico.png"
}
}
}