forked from Scumfunk/yamusic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.72 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
{
"name": "yamusic",
"version": "1.0.0",
"description": "Yandex Music client with Touchbar and global shortcuts support",
"author": "Yury Ivannikov <[email protected]> (https://github.com/scumfunk/)",
"homepage": "https://github.com/Scumfunk/yamusic",
"license": "ISC",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/mocha ./test/*.js",
"start": "electron .",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "eslint --ignore-path .gitignore . --fix",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist:all": "electron-builder -mwl --publish never",
"dist:linux": "electron-builder -l --publish never",
"dist:osx": "electron-builder -m --publish never",
"dist:windows": "electron-builder -w --publish never"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"babel-eslint": "^10.1.0",
"electron": "^10.1.4",
"electron-builder": "^22.9.1",
"eslint": "^6.8.0",
"eslint-config-google": "^0.13.0",
"eslint-config-strongloop": "^2.1.0",
"lodash": "^4.17.20",
"mocha": "^6.2.3",
"sinon": "^7.5.0",
"spectron": "^12.0.0"
},
"build": {
"appId": "com.electron.yamusic",
"productName": "YaMusic",
"icon": "./assest/icons/icon.png",
"mac": {
"category": "public.app-category.music",
"target": "dmg"
},
"linux": {
"category": "Audio",
"target": [
"tar.gz",
"snap",
"deb",
"rpm"
]
},
"win": {
"target": [
"portable",
"msi"
]
}
}
}