This repository has been archived by the owner on Mar 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
59 lines (59 loc) · 1.84 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
{
"name": "live-stream-radio",
"version": "2.2.1",
"description": "24/7 live stream video radio station CLI / API",
"main": "index.js",
"bin": {
"live-stream-radio": "./src/index.js"
},
"scripts": {
"precommit": "pretty-quick --staged",
"start": "node src/index.js live-stream-radio",
"generate": "rm -rf live-stream-radio && node src/index.js --generate",
"dev": "node src/index.js live-stream-radio --output dev.flv",
"prettier": "npm run prettier:fix",
"lint": " echo \"Listing unlinted files, will show nothing if everything is fine.\" && npx prettier --config .prettierrc --list-different src/**/*.js",
"lint:fix": "npx prettier --config .prettierrc --write src/**/*.js",
"deploy": "npx np",
"docz:dev": "docz dev",
"docz:build": "docz build",
"docz:deploy": "npm run docz:build && gh-pages -d .docz/dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/torch2424/live-stream-radio.git"
},
"author": "Aaron Turner",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/torch2424/live-stream-radio/issues"
},
"homepage": "https://github.com/torch2424/live-stream-radio#readme",
"dependencies": {
"chalk": "^2.4.1",
"chalkline": "0.0.5",
"cli-progress": "^2.1.0",
"edit-json-file": "^1.1.0",
"fastify": "^1.12.1",
"fastify-formbody": "^2.0.1",
"find": "^0.2.9",
"fluent-ffmpeg": "^2.1.2",
"fs-extra": "^7.0.0",
"imagemin": "^6.0.0",
"imagemin-gifsicle": "^5.2.0",
"is-running": "^2.1.0",
"minimist": "^1.2.0",
"music-metadata": "^3.1.0",
"term-img": "^2.1.0",
"upath": "^1.1.0"
},
"devDependencies": {
"docz": "^0.11.2",
"gh-pages": "^2.0.0",
"husky": "^1.0.1",
"np": "^3.0.4",
"prettier": "1.14.3",
"pretty-quick": "^1.7.0",
"remark-external-links": "^3.0.0"
}
}