-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1.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
{
"name": "spotifyCurrentlyPlaying.js",
"version": "0.3.2",
"homepage": "http://kylebrumm.com/spotifyCurrentlyPlaying.js",
"author": "Kyle Brumm",
"description": "Display your currently playing Spotify song(s) using Last.fm scrobbling.",
"main": "dist/spotifyCurrentlyPlaying.js",
"scripts": {
"browsersync": "browser-sync start --server --files 'css/style.css, js, **/*.html'",
"build": "npm run js:build && npm run css:build",
"css": "npm run css:watch",
"css:autoprefix": "postcss --use autoprefixer --output css/style.css css/style.css",
"css:build": "npm run css:compile && npm run css:autoprefix",
"css:compile": "node-sass --output-style compressed scss/style.scss css/style.css",
"css:watch": "watch 'npm run css:build' scss",
"dev": "parallelshell 'npm run watch' 'npm run browsersync'",
"js:build": "uglifyjs dist/spotifyCurrentlyPlaying.js -c -m --mangle-props=1 --comments='@license' -o dist/spotifyCurrentlyPlaying.min.js",
"watch": "npm run css"
},
"repository": {
"type": "git",
"url": "https://github.com/kjbrum/spotifyCurrentlyPlaying.js.git"
},
"keywords": [
"spotify",
"widget",
"last.fm",
"scrobbling",
"current",
"playing",
"recent",
"music",
"kjbrum"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kjbrum/spotifyCurrentlyPlaying.js/issues"
},
"devDependencies": {
"autoprefixer": "latest",
"node-sass": "latest",
"parallelshell": "latest",
"postcss-cli": "latest",
"uglify-js": "latest",
"watch": "latest"
}
}