-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
{
"name": "@bymi15/saveyoutube",
"version": "0.2.1",
"description": "Save youtube videos and playlists as mp3/mp4 files",
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/bymi15/SaveYoutube.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/bymi15"
},
"keywords": [
"youtube",
"saveyoutube",
"javascript",
"nodejs",
"express",
"handlebars",
"ffmpeg"
],
"author": "Brian Min <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bymi15/SaveYoutube/issues"
},
"homepage": "https://github.com/bymi15/SaveYoutube#readme",
"scripts": {
"start": "node app.js",
"dev": "nodemon -V --exec node app.js",
"release": "standard-version"
},
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "~1.4.3",
"express": "^4.17.1",
"ffmpeg-static": "^4.2.7",
"fluent-ffmpeg": "^2.1.2",
"hbs": "^4.1.1",
"morgan": "~1.10.0",
"sanitize-filename": "^1.6.1",
"serve-favicon": "^2.5.0",
"youtube-playlist": "^1.0.4",
"ytdl-core": "^3.3.0"
},
"devDependencies": {
"nodemon": "^2.0.4",
"standard-version": "^9.0.0"
}
}