-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.55 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "google-play-music-desktop-player",
"productName": "Google Play Music Desktop Player",
"version": "3.2.4",
"apiVersion": "1.0.0",
"description": "An electron wrapper for Google Play Music",
"main": "build/index.js",
"scripts": {
"build": "gulp build",
"clean": "gulp clean",
"lint": "eslint ./src/ ./test/ ./vendor/",
"make:darwin": "gulp make:darwin",
"make:linux": "gulp make:linux",
"make:deb": "gulp make:linux:deb",
"make:rpm": "gulp make:linux:rpm",
"make:deb:32": "gulp deb:linux:32",
"make:deb:64": "gulp deb:linux:64",
"make:rpm:32": "gulp rpm:linux:32",
"make:rpm:64": "gulp rpm:linux:64",
"make:win": "gulp make:win && npm run postinstall",
"package:darwin": "gulp package:darwin",
"package:linux": "gulp package:linux",
"package:linux:32": "gulp package:linux:32",
"package:linux:64": "gulp package:linux:64",
"package:win": "gulp package:win && npm run postinstall",
"postinstall": "node vendor/rebuild.js --instant",
"test": "npm run lint",
"pretest-unit": "npm run build",
"test-unit": "electron-mocha ./test --recursive --compilers js:babel-core/register --timeout 10000 -R spec-xunit-file",
"prestart": "pre-flight",
"start": "electron . --dev",
"watch": "gulp watch"
},
"repository": {
"type": "git",
"url": "git://github.com/MarshallOfSound/Google-Play-Music-Desktop-Player-UNOFFICIAL-"
},
"author": {
"name": "Samuel Attard",
"email": "samuel.r.attard@gmail.com",
"url": "https://www.samuelattard.com"
},
"homepage": "http://www.googleplaymusicdesktopplayer.com",
"license": "MIT",
"dependencies": {
"auto-launch": "^2.0.1",
"electron-chromecast": "^1.0.3",
"electron-prebuilt": "1.0.1",
"html-entities": "^1.2.0",
"lastfm": "^0.9.2",
"lodash": "^4.12.0",
"mdns": "^2.3.3",
"mkdirp": "^0.5.1",
"node-fetch": "^1.5.2",
"pretty-colorwheel": "^1.0.1",
"universal-analytics": "^0.3.11",
"uuid": "^2.0.2",
"winston": "^2.2.0",
"ws": "^1.1.0",
"xss": "^0.2.13",
"yargs": "^4.7.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.8.0",
"chai": "^3.5.0",
"chai-fs": "^0.1.0",
"devtron": "^1.0.1",
"electron-mocha": "^1.2.3",
"electron-packager": "^7.0.1",
"electron-rebuild": "^1.1.3",
"electron-winstaller": "^2.3.0",
"eslint": "^2.9.0",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.7.0",
"gmusic-mini-player.js": "^1.0.7",
"gmusic-theme.js": "^1.1.4",
"gmusic.js": "^4.2.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-clean": "^0.3.2",
"gulp-concat": "^2.6.0",
"gulp-cssmin": "^0.1.7",
"gulp-electron": "0.1.2",
"gulp-grunt": "^0.5.3",
"gulp-less": "^3.1.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"jquery": "^2.2.3",
"material-design-icons-iconfont": "^2.0.5",
"materialize-css": "^0.97.6",
"mocha": "^2.4.5",
"mocha-testdata": "^1.2.0",
"pre-commit": "^1.1.2",
"pre-flight": "^1.0.2",
"request": "^2.72.0",
"run-sequence": "^1.1.5",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"sinon-mocha": "0.0.3",
"spec-xunit-file": "0.0.1-3"
},
"optionalDependencies": {
"mouse-forward-back": "^1.0.1",
"dbus": "GPMDP/node-dbus#linux-only",
"mpris-service": "GPMDP/mpris-service",
"electron-installer-debian": "^0.3.0",
"electron-installer-redhat": "^0.2.0",
"ll-keyboard-hook-win": "^3.0.0"
},
"babel": {
"presets": [
"es2015"
]
}
}