-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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": "youtube-audio-server",
"version": "2.8.2",
"description": "Easily stream and download audio from YouTube.",
"main": "src/index.js",
"scripts": {
"start": "./src/bin.js",
"test": "standard",
"test-focus": "standard-focus",
"test-run": "node src/test/index.js"
},
"bin": {
"yas": "./src/bin.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codealchemist/youtube-audio-server.git"
},
"author": "Alberto Miranda",
"license": "MIT",
"bugs": {
"url": "https://github.com/codealchemist/youtube-audio-server/issues"
},
"homepage": "https://github.com/codealchemist/youtube-audio-server#readme",
"dependencies": {
"chalk": "^1.1.3",
"download": "^8.0.0",
"express": "^4.17.1",
"express-no-favicons": "0.0.1",
"fluent-ffmpeg": "^2.1.2",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"ora": "^5.4.1",
"sanitize-filename": "^1.6.3",
"through2": "^2.0.3",
"youtube-node": "^1.3.3",
"ytdl-core": "^4.9.1"
},
"devDependencies": {
"standard-focus": "^1.1.2"
}
}