-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
38 lines (38 loc) · 893 Bytes
/
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
{
"name": "spotivy",
"description": "Spotify music videos downloader",
"version": "0.6.0",
"author": "Guilherme Ventura <guilhermeventura2@gmail.com> (https://danguilherme.github.io/)",
"license": "MIT",
"repository": "danguilherme/spotivy",
"keywords": [
"spotify",
"youtube",
"video",
"download"
],
"scripts": {
"prestart": "npm install",
"run-bin": "node index.js",
"start": "node index.js init",
"test": "echo \"Error: no test specified\" && exit 1"
},
"main": "index.js",
"bin": {
"spotivy": "./index.js"
},
"dependencies": {
"caporal": "1.4.0",
"chalk": "4.1.2",
"highland": "^2.13.0",
"jsonfile": "^2.4.0",
"left-pad": "^1.3.0",
"mkdirp": "^0.5.1",
"spotify-web-api-node": "5.0.2",
"youtube-api": "3.0.1",
"ytdl-core": "4.11.0"
},
"devDependencies": {
"eslint": "^4.19.1"
}
}