-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "spotydrive",
"version": "0.1.8",
"description": "Synchronize your Spotify playlists offline as mp3 files",
"main": "spotydrive.js",
"preferGlobal": true,
"bin": "./spotydrive.js",
"scripts": {
"test": "node spotydrive.js",
"start": "node spotydrive.js"
},
"keywords": [
"nodejs",
"cli-app",
"spotify",
"spotify-api",
"youtube-api",
"commanderjs"
],
"author": "Emerson Soares <[email protected]>",
"repository": "github:emersonsoares/spotydrive",
"license": "MIT",
"dependencies": {
"commander": "^2.15.1",
"fs-extra": "^5.0.0",
"lowdb": "^1.0.0",
"multi-progress": "^2.0.0",
"progress": "^2.0.0",
"request": "^2.85.0",
"request-promise": "^4.2.2",
"terminal-link": "^1.1.0",
"youtube-mp3-downloader": "^0.5.3"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0"
}
}