-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
120 lines (120 loc) · 2.63 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
120
{
"name": "probelab-reimager-app",
"productName": "Probelab ReImager",
"version": "1.6.1-stable",
"description": "Visual UI for Probelab ReImager using Electron",
"main": "./src/backend/main.js",
"scripts": {
"start": "electron .",
"build": "node util/build.js",
"build-prod": "node util/build.js production",
"build-el-capitan": "node util/elcapitain/download.js",
"compile": "node util/compile.js",
"clean": "node util/clean.js",
"distclean": "node util/clean.js distclean",
"test": "echo \"Error: no test specified\" && exit 1"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"env",
"react"
]
}
],
[
"browserify-css"
]
]
},
"build": {
"icon": "./assets/svg/atom-2-mac.ico",
"appId": "net.probelab.reimager",
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "portable",
"arch": [
"x64"
]
},
{
"target": "msi",
"arch": [
"x64"
]
}
]
},
"linux": {
"target": [
{
"target": "deb",
"arch": [
"x64"
]
},
{
"target": "snap",
"arch": [
"x64"
]
}
]
},
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"x64"
]
}
]
}
},
"author": "Bob620",
"email": "[email protected]",
"license": "MIT",
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-regular-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babelify": "^8.0.0",
"bakadux": "^1.1.0",
"bent": "^7.3.12",
"browserify": "^16.5.1",
"browserify-css": "^0.15.0",
"electron": "10.1.5",
"electron-builder": "^22.9.1",
"electron-packager": "^15.1.0",
"electron-rebuild": "^2.3.2",
"envify": "^4.1.0",
"node-gyp": "^7.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-svg": "^11.0.32",
"scssify": "^3.0.1",
"uglify-js": "^3.10.0",
"uglifyify": "^5.0.2"
},
"dependencies": {
"canvas": "^2.5.0",
"probelab-reimager": "github:bob620/probelab-reimager",
"sharp": "^0.25.4"
}
}