-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 912 Bytes
/
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
{
"name": "radvanfortuin",
"productName": "Radvanfortuin",
"version": "0.1.0",
"description": "My astounding app",
"license": "MIT",
"repository": "r.bosch/radvanfortuin",
"author": {
"name": "",
"email": "",
"url": "vvdenham.nl"
},
"scripts": {
"test": "xo",
"start": "electron .",
"build": "electron-packager . --out=dist --asar --prune --overwrite --platform=win32 --arch=ia32 --icon=assets/logo.ico"
},
"files": [
"index.js",
"index.html",
"index.css"
],
"keywords": [
"electron-app",
"electron"
],
"dependencies": {
"electron-config": "^0.2.1",
"electron-debug": "^1.0.0",
"rxjs-fetch": "^2.1.6"
},
"devDependencies": {
"devtron": "^1.1.0",
"electron-packager": "^8.0.0",
"electron": "^1.3.3",
"xo": "^0.16.0"
},
"xo": {
"esnext": true,
"envs": [
"node",
"browser"
]
}
}