-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.65 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
{
"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": {
"electron": "^5.0.6",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"babel-eslint": "^10.0.2",
"electron-builder": "^20.44.4",
"eslint": "^6.0.1",
"eslint-config-google": "^0.13.0",
"eslint-config-strongloop": "^2.1.0",
"mocha": "^6.1.4",
"sinon": "^7.3.2",
"spectron": "^7.0.0",
"lodash": ">=4.17.13"
},
"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"]
}
}
}