-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 1.04 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
{
"name": "Freezer",
"productName": "Freezer",
"version": "0.0.0",
"description": "Unofficial Deezer desktop client.",
"license": "MIT",
"repository": "kvasir/Freezer",
"author": "Kvasir",
"contributors": [
"Martin Sandström <[email protected]> (http://martinsandstrom.github.io)",
"John-Philip Johansson <[email protected]> (http://johansson.jp/)",
"Esbjörn Ekberg <[email protected]> (http://oak.ninja/)"
],
"engines": {
"node": ">=4"
},
"electronVersion": "0.34.1",
"scripts": {
"test": "xo",
"start": "electron .",
"build": "electron-packager . $npm_package_productName --out=dist --ignore='^/dist$' --prune --asar --all --version=$npm_package_electronVersion"
},
"files": [
"index.js"
],
"keywords": [
"electron-app"
],
"dependencies": {
"electron-debug": "^0.4.0"
},
"devDependencies": {
"electron-packager": "^5.0.0",
"electron-prebuilt": "^0.34.1",
"xo": "^0.10.0"
},
"xo": {
"esnext": true,
"envs": [
"node",
"browser"
]
}
}