-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.08 KB
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
{
"name": "ProFile",
"productName": "ProFile",
"version": "0.2.5",
"description": "",
"license": "MIT",
"repository": "user/repo",
"author": {
"name": "",
"email": "",
"url": ""
},
"scripts": {
"test": "xo",
"start": "electron .",
"build:osx": "electron-packager . --out=dist --asar --overwrite --icon=assets/icons/mac/icon.icns",
"build:win": "electron-packager . --out=dist --asar --overwrite --icon=assets/icons/win/icon.ico",
"build:linux": "electron-packager . --out=dist --asar --overwrite"
},
"keywords": [
"electron-app",
"electron"
],
"dependencies": {
"clipboard": "^1.6.1",
"decompress-zip": "^0.3.0",
"electron-debug": "^1.1.0",
"fs-extra": "^2.1.2",
"glob": "^7.1.1",
"os": "^0.1.1",
"readdirp": "^2.1.0",
"rimraf": "^2.6.1",
"shell": "^0.3.2",
"xml2js": "^0.4.17"
},
"devDependencies": {
"devtron": "^1.1.0",
"electron-packager": "^8.0.0",
"electron": "^1.0.1",
"xo": "^0.16.0"
},
"xo": {
"esnext": true,
"envs": [
"node",
"browser"
]
}
}