This repository has been archived by the owner on Nov 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
81 lines (81 loc) · 2.46 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@ytdl/ytdl",
"version": "1.4.16",
"description": "A CLI/Library written in typescript/javascript, which allows you to download/play videos from YouTube onto your system.",
"keywords": [
"youtube",
"download",
"video",
"audio",
"mp4",
"mp3",
"cli",
"player",
"ytdl"
],
"main": "dist/src/index.js",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf ./dist",
"test": "mocha --config test/.mocharc.json test/**/*.ts",
"lint": "eslint \"src/**/*.{ts,js,jsx}\" \"test/**/*.ts\" \"examples/**/*.{ts,js}\"",
"pack-src": "ncc build src/index.ts -o dist/src",
"pack-cli": "ncc build bin/ytdl -o dist/cli && mv dist/cli/index.js dist/cli/ytdl",
"pack": "npm run clean && npm run build && npm run pack-cli",
"start": "ts-node src/index.ts",
"prepare": "npm run build",
"preinstall": "node ./preinstall.js",
"postinstall": "node ./postinstall.js"
},
"bin": {
"ytdl": "bin/ytdl"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ytdl-node/ytdl.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ytdl-node/ytdl/issues"
},
"homepage": "https://github.com/ytdl-node/ytdl#readme",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "^4.2.11",
"@types/commander": "^2.12.2",
"@types/eslint": "^6.1.9",
"@types/fluent-ffmpeg": "^2.1.14",
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.8",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"@zeit/ncc": "^0.22.1",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-plugin-import": "^2.20.2",
"husky": "^4.2.3",
"mocha": "^7.1.1",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"dependencies": {
"axios": "^0.19.2",
"cli-progress": "^3.8.2",
"commander": "^5.0.0",
"ffbinaries": "^1.1.4",
"fluent-ffmpeg": "^2.1.2",
"npm-path": "^2.0.4",
"winston": "^3.2.1"
},
"optionalDependencies": {
"speaker": "^0.5.1"
}
}