-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "spotify-cli-mac",
"version": "1.4.1",
"description": "A nodejs app to control Spotify without leaving your terminal on Mac OS X.",
"main": "index.js",
"scripts": {
"precommit": "npm run lint",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"spotify": "./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ersel/spotify-cli-mac.git"
},
"keywords": [
"spotify",
"client",
"mac",
"os"
],
"author": "Ersel Aker",
"license": "MIT",
"bugs": {
"url": "https://github.com/ersel/spotify-cli-mac/issues"
},
"homepage": "https://github.com/ersel/spotify-cli-mac#readme",
"dependencies": {
"bluebird": "^3.4.7",
"chalk": "^1.1.3",
"commander": "^2.16.0",
"imgcat": "^2.3.0",
"lodash": "^4.17.10",
"lyricist": "^2.2.2",
"moment": "^2.22.2",
"moment-duration-format": "^1.3.0",
"nconf": "^0.8.4",
"node-emoji": "^1.5.0",
"node-osascript": "^1.0.4",
"progress": "^1.1.8",
"prompt": "^1.0.0",
"readline-sync": "^1.4.9",
"semver": "^5.5.0",
"spotify-web-api-node": "^2.5.0"
},
"devDependencies": {
"eslint": "^3.14.1",
"husky": "^0.14.3"
}
}