-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
70 lines (70 loc) · 1.85 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
{
"name": "jumpfm",
"version": "1.0.6",
"description": "A file manager that lets you jump",
"author": {
"name": "Gilad Kutiel",
"email": "gilad.kutiel@gmail.com"
},
"license": "ISC",
"dependencies": {
"check-dependencies": "^1.1.0",
"electron-simple-updater": "^1.2.1",
"filesize": "^3.5.10",
"fs-extra": "^4.0.1",
"homedir": "^0.6.0",
"moment": "^2.18.1",
"node-cmd": "^3.0.0",
"node-watch": "^0.5.5",
"node.os": "^1.2.4",
"npm": "^6.2.0"
},
"devDependencies": {
"@types/electron": "^1.6.10",
"@types/fs-extra": "^4.0.8",
"@types/keyboardjs": "^2.2.31",
"@types/node": "^8.10.21",
"@types/npm": "^2.0.29",
"@types/watch": "^1.0.0",
"electron-builder": "^19.56.2",
"jumpfm-api": "^1.1.4"
},
"optionalDependencies": {
"7zip-bin-win": "^2.1.0"
},
"homepage": "https://jumpfm.org",
"repository": {
"type": "git",
"url": "git+https://github.com/Gilad-Kutiel-App/jumpfm.git"
},
"bugs": {
"url": "https://github.com/Gilad-Kutiel-App/jumpfm/issues"
},
"main": "app.js",
"build": {
"appId": "com.github.gkutiel.jumpfm",
"compression": "maximum",
"electronVersion": "1.7.5",
"linux": {
"files": [
"**/*",
"build/icons/*"
],
"target": [
"AppImage"
],
"category": "Utility",
"publish": "github"
},
"win": {
"target": "nsis"
}
},
"scripts": {
"test": "mocha js",
"pack": "build --dir",
"dist": "build",
"publish": "build --publish always",
"postinstall": "electron-builder install-app-deps"
}
}