-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 944 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
46
{
"name": "skype-bot-configurator",
"productName": "SkypeBotConfigurator",
"version": "0.0.0",
"description": "My funkadelic app",
"license": "MIT",
"repository": "almirbi/skype-bot-configurator",
"author": {
"name": "Almir Bijedic",
"email": "[email protected]",
"url": "almirbijedic.rocks"
},
"scripts": {
"test": "xo",
"start": "electron .",
"build": "electron-packager . --out=dist --asar --overwrite --all"
},
"files": [
"index.js",
"index.html",
"index.css"
],
"keywords": [
"electron-app",
"electron"
],
"dependencies": {
"dialogs": "^1.1.16",
"electron-debug": "^1.0.0",
"vanilla-modal": "^1.3.0"
},
"devDependencies": {
"devtron": "^1.1.0",
"electron": "^1.3.3",
"electron-packager": "^8.0.0",
"fs-extra": "^1.0.0",
"xo": "^0.16.0"
},
"xo": {
"esnext": true,
"envs": [
"node",
"browser"
]
}
}