aboutsummaryrefslogtreecommitdiffhomepage
path: root/package.json
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2018-09-13 14:27:44 +0200
committerRigel Kent <sendmemail@rigelk.eu>2018-09-14 11:08:55 +0200
commit8704acf49efc770d73bf07c10468ed8c74d28a83 (patch)
treeffd46289fcf9a13ac4412b167e9f71dfb35753c5 /package.json
parent1d9d9cfdcf3983e3fd89026bc4b5633a8abf5752 (diff)
downloadPeerTube-8704acf49efc770d73bf07c10468ed8c74d28a83.tar.gz
PeerTube-8704acf49efc770d73bf07c10468ed8c74d28a83.tar.zst
PeerTube-8704acf49efc770d73bf07c10468ed8c74d28a83.zip
one cli to unite them all
Ash nazg thrakatulûk agh burzum-ishi krimpatul - refactor import-videos to use the youtubeDL helper - add very basic tests for the cli
Diffstat (limited to 'package.json')
-rw-r--r--package.json10
1 files changed, 10 insertions, 0 deletions
diff --git a/package.json b/package.json
index 5a8843b0c..cc4f6be5c 100644
--- a/package.json
+++ b/package.json
@@ -7,6 +7,9 @@
7 "engines": { 7 "engines": {
8 "node": ">=8.x" 8 "node": ">=8.x"
9 }, 9 },
10 "bin": {
11 "peertube": "dist/server/tools/peertube.js"
12 },
10 "author": { 13 "author": {
11 "name": "Florian Bigard", 14 "name": "Florian Bigard",
12 "email": "florian.bigard@gmail.com", 15 "email": "florian.bigard@gmail.com",
@@ -78,6 +81,7 @@
78 "@types/bluebird": "3.5.21" 81 "@types/bluebird": "3.5.21"
79 }, 82 },
80 "dependencies": { 83 "dependencies": {
84 "application-config": "^1.0.1",
81 "async": "^2.0.0", 85 "async": "^2.0.0",
82 "async-lock": "^1.1.2", 86 "async-lock": "^1.1.2",
83 "async-lru": "^1.1.1", 87 "async-lru": "^1.1.1",
@@ -86,6 +90,7 @@
86 "bluebird": "^3.5.0", 90 "bluebird": "^3.5.0",
87 "body-parser": "^1.12.4", 91 "body-parser": "^1.12.4",
88 "bull": "^3.4.2", 92 "bull": "^3.4.2",
93 "cli-table": "^0.3.1",
89 "bytes": "^3.0.0", 94 "bytes": "^3.0.0",
90 "commander": "^2.13.0", 95 "commander": "^2.13.0",
91 "concurrently": "^4.0.1", 96 "concurrently": "^4.0.1",
@@ -113,6 +118,7 @@
113 "magnet-uri": "^5.1.4", 118 "magnet-uri": "^5.1.4",
114 "morgan": "^1.5.3", 119 "morgan": "^1.5.3",
115 "multer": "^1.1.0", 120 "multer": "^1.1.0",
121 "netrc-parser": "^3.1.6",
116 "nodemailer": "^4.4.2", 122 "nodemailer": "^4.4.2",
117 "parse-torrent": "^6.0.0", 123 "parse-torrent": "^6.0.0",
118 "password-generator": "^2.0.2", 124 "password-generator": "^2.0.2",
@@ -130,6 +136,7 @@
130 "sequelize-typescript": "0.6.6", 136 "sequelize-typescript": "0.6.6",
131 "sharp": "^0.20.0", 137 "sharp": "^0.20.0",
132 "srt-to-vtt": "^1.1.2", 138 "srt-to-vtt": "^1.1.2",
139 "summon-install": "^0.4.3",
133 "useragent": "^2.3.0", 140 "useragent": "^2.3.0",
134 "uuid": "^3.1.0", 141 "uuid": "^3.1.0",
135 "validator": "^10.2.0", 142 "validator": "^10.2.0",
@@ -196,5 +203,8 @@
196 "scripty": { 203 "scripty": {
197 "silent": true 204 "silent": true
198 }, 205 },
206 "summon": {
207 "silent": true
208 },
199 "sasslintConfig": "client/.sass-lint.yml" 209 "sasslintConfig": "client/.sass-lint.yml"
200} 210}