-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.52 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
{
"name": "arduino-custom-flasher",
"productName": "ArduinoCustomFlasher",
"description": "arduino cli wrapped inside Electron app",
"version": "0.0.1",
"private": true,
"author": "machinaeXphilip <[email protected]>",
"copyright": "© 2019, Jan Philip Steimel",
"homepage": "https://www.machinaex.com",
"main": "app/background.js",
"build": {
"appId": "de.philipsteimel.arduinocliwrapper",
"files": [
"app/**/*",
"node_modules/**/*",
"package.json"
],
"directories": {
"buildResources": "resources"
},
"publish": null,
"asar":false
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "node build/start.js",
"release": "cp src/arduino-cli.yaml app/;webpack --config=build/webpack.app.config.js --env=production && electron-builder"
},
"dependencies": {
"fs-jetpack": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.54",
"@babel/preset-env": "^7.0.0-beta.54",
"babel-loader": "^8.0.0-beta.4",
"babel-plugin-transform-object-rest-spread": "^7.0.0-beta.3",
"chai": "^4.1.0",
"css-loader": "^1.0.0",
"electron": "^18.3.7",
"electron-builder": "^20.40.2",
"electron-mocha": "^8.0.2",
"friendly-errors-webpack-plugin": "^1.7.0",
"mocha": "^5.2.0",
"source-map-support": "^0.5.6",
"spectron": "^3.8.0",
"style-loader": "^0.21.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.4",
"webpack-merge": "^4.1.3",
"webpack-node-externals": "^1.7.2"
}
}