-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 670 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 670 Bytes
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
{
"name": "create-music-stream",
"version": "1.2.0",
"main": "src/index.js",
"repository": "https://github.com/chrvadala/create-music-stream.git",
"author": "chr.vadala",
"license": "MIT",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"standard": "standard",
"ci": "npm-run-all standard coverage",
"build": "exit 0"
},
"devDependencies": {
"@jest/globals": "^26.0.1",
"jest": "^26.0.1",
"npm-run-all": "^4.1.5",
"speaker": "^0.4.1",
"standard": "^14.3.3"
},
"dependencies": {
"fluent-ffmpeg": "^2.1.2",
"lame": "^1.2.4",
"progress-stream": "^2.0.0",
"ytdl-core": "^2.1.5"
}
}