2015-06-09 11:41:40 -04:00
|
|
|
{
|
2015-10-29 18:29:12 -04:00
|
|
|
"name": "peertube",
|
2018-01-15 05:10:46 -05:00
|
|
|
"description": "Federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.",
|
2018-10-19 09:29:30 -04:00
|
|
|
"version": "1.1.0-alpha.2",
|
2015-06-09 11:41:40 -04:00
|
|
|
"private": true,
|
2018-03-11 04:52:33 -04:00
|
|
|
"licence": "AGPLv3",
|
2015-06-09 11:41:40 -04:00
|
|
|
"engines": {
|
2017-12-18 05:53:04 -05:00
|
|
|
"node": ">=8.x"
|
2015-11-24 02:53:35 -05:00
|
|
|
},
|
2018-09-13 08:27:44 -04:00
|
|
|
"bin": {
|
|
|
|
"peertube": "dist/server/tools/peertube.js"
|
|
|
|
},
|
2015-11-24 02:53:35 -05:00
|
|
|
"author": {
|
2018-10-03 10:43:57 -04:00
|
|
|
"name": "Chocobozzz",
|
|
|
|
"email": "chocobozzz@cpy.re",
|
2015-11-24 02:53:35 -05:00
|
|
|
"url": "http://github.com/Chocobozzz"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2018-08-16 04:57:57 -04:00
|
|
|
"url": "git+https://github.com/Chocobozzz/PeerTube.git"
|
2015-06-09 11:41:40 -04:00
|
|
|
},
|
2018-08-02 09:34:09 -04:00
|
|
|
"typings": "*.d.ts",
|
2015-06-09 11:41:40 -04:00
|
|
|
"scripts": {
|
2018-05-16 13:59:21 -04:00
|
|
|
"e2e": "scripty",
|
2018-10-01 07:40:21 -04:00
|
|
|
"e2e:local": "scripty",
|
2017-06-11 05:29:03 -04:00
|
|
|
"build": "SCRIPTY_PARALLEL=true scripty",
|
|
|
|
"build:server": "scripty",
|
|
|
|
"build:client": "scripty",
|
2016-06-03 16:34:39 -04:00
|
|
|
"clean:client": "scripty",
|
2017-07-06 08:39:39 -04:00
|
|
|
"clean:server": "scripty",
|
2016-04-30 05:17:50 -04:00
|
|
|
"clean:server:test": "scripty",
|
2017-06-11 05:29:03 -04:00
|
|
|
"watch:client": "scripty",
|
|
|
|
"watch:server": "scripty",
|
2016-10-13 15:45:23 -04:00
|
|
|
"danger:clean:dev": "scripty",
|
|
|
|
"danger:clean:prod": "scripty",
|
2016-04-30 05:17:50 -04:00
|
|
|
"danger:clean:modules": "scripty",
|
2018-05-31 12:12:15 -04:00
|
|
|
"i18n:generate": "scripty",
|
2018-06-06 08:23:40 -04:00
|
|
|
"i18n:xliff2json": "node ./dist/scripts/i18n/xliff2json.js",
|
|
|
|
"i18n:create-custom-files": "node ./dist/scripts/i18n/create-custom-files.js",
|
2018-01-26 03:50:43 -05:00
|
|
|
"reset-password": "node ./dist/scripts/reset-password.js",
|
2016-04-30 05:17:50 -04:00
|
|
|
"play": "scripty",
|
2017-08-25 05:36:23 -04:00
|
|
|
"dev": "scripty",
|
2017-06-11 05:29:03 -04:00
|
|
|
"dev:server": "scripty",
|
|
|
|
"dev:client": "scripty",
|
2017-06-10 16:57:31 -04:00
|
|
|
"start": "node dist/server",
|
2018-01-26 03:50:43 -05:00
|
|
|
"update-host": "node ./dist/scripts/update-host.js",
|
2018-05-30 04:49:40 -04:00
|
|
|
"create-transcoding-job": "node ./dist/scripts/create-transcoding-job.js",
|
2018-06-02 15:39:41 -04:00
|
|
|
"create-import-video-file-job": "node ./dist/scripts/create-import-video-file-job.js",
|
2016-04-30 05:17:50 -04:00
|
|
|
"test": "scripty",
|
|
|
|
"help": "scripty",
|
2018-01-24 05:54:32 -05:00
|
|
|
"generate-api-doc": "scripty",
|
2018-10-20 13:15:41 -04:00
|
|
|
"generate-cli-doc": "scripty",
|
2018-01-26 03:50:43 -05:00
|
|
|
"parse-log": "node ./dist/scripts/parse-log.js",
|
2018-05-29 05:11:52 -04:00
|
|
|
"prune-storage": "node ./dist/scripts/prune-storage.js",
|
2018-10-08 10:26:04 -04:00
|
|
|
"optimize-old-videos": "node ./dist/scripts/optimize-old-videos.js",
|
2017-06-24 04:17:44 -04:00
|
|
|
"postinstall": "cd client && yarn install --pure-lockfile",
|
2017-06-10 16:57:31 -04:00
|
|
|
"tsc": "tsc",
|
2018-01-24 05:54:32 -05:00
|
|
|
"spectacle-docs": "node_modules/spectacle-docs/bin/spectacle.js",
|
2018-01-23 12:58:07 -05:00
|
|
|
"commander": "commander",
|
2018-01-06 12:10:51 -05:00
|
|
|
"ng": "ng",
|
2017-06-11 09:19:43 -04:00
|
|
|
"nodemon": "nodemon",
|
2017-06-16 08:32:15 -04:00
|
|
|
"ts-node": "ts-node",
|
2017-10-31 12:23:57 -04:00
|
|
|
"tslint": "tslint",
|
2018-06-07 10:50:33 -04:00
|
|
|
"concurrently": "concurrently",
|
2018-05-12 11:28:37 -04:00
|
|
|
"sasslint": "sass-lint --verbose --no-exit",
|
|
|
|
"sasslint:fix": "sass-lint-auto-fix -c .sass-lint.yml --verbose",
|
2018-04-19 10:23:09 -04:00
|
|
|
"mocha": "mocha",
|
2017-10-31 13:57:32 -04:00
|
|
|
"travis": "scripty",
|
2017-12-20 03:04:52 -05:00
|
|
|
"release": "scripty",
|
|
|
|
"client-report": "scripty"
|
2015-06-09 11:41:40 -04:00
|
|
|
},
|
2018-05-12 11:28:37 -04:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
2018-11-13 08:31:31 -05:00
|
|
|
"pre-commit": "lint-staged && ./scripts/openapi-peertube-version.sh"
|
2018-05-12 11:28:37 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.scss": [
|
2018-09-17 09:00:46 -04:00
|
|
|
"sass-lint -c client/.sass-lint.yml",
|
2018-05-12 11:28:37 -04:00
|
|
|
"git add"
|
|
|
|
]
|
|
|
|
},
|
2018-07-17 04:16:45 -04:00
|
|
|
"resolutions": {
|
|
|
|
"@types/bluebird": "3.5.21"
|
|
|
|
},
|
2015-06-09 11:41:40 -04:00
|
|
|
"dependencies": {
|
2018-09-13 08:27:44 -04:00
|
|
|
"application-config": "^1.0.1",
|
2016-07-18 11:17:52 -04:00
|
|
|
"async": "^2.0.0",
|
2018-05-23 04:03:26 -04:00
|
|
|
"async-lock": "^1.1.2",
|
2017-07-12 05:56:02 -04:00
|
|
|
"async-lru": "^1.1.1",
|
2018-09-13 03:20:06 -04:00
|
|
|
"bcrypt": "2",
|
2017-03-03 12:45:40 -05:00
|
|
|
"bittorrent-tracker": "^9.0.0",
|
2017-07-05 07:26:25 -04:00
|
|
|
"bluebird": "^3.5.0",
|
2015-06-09 11:41:40 -04:00
|
|
|
"body-parser": "^1.12.4",
|
2018-06-30 03:55:42 -04:00
|
|
|
"bull": "^3.4.2",
|
2018-09-11 10:27:07 -04:00
|
|
|
"bytes": "^3.0.0",
|
2018-09-20 10:53:31 -04:00
|
|
|
"cli-table": "^0.3.1",
|
2018-01-23 12:58:07 -05:00
|
|
|
"commander": "^2.13.0",
|
2018-08-27 10:34:41 -04:00
|
|
|
"concurrently": "^4.0.1",
|
|
|
|
"config": "^2.0.1",
|
2018-06-28 07:59:48 -04:00
|
|
|
"cookie-parser": "^1.4.3",
|
2016-10-07 09:12:53 -04:00
|
|
|
"cors": "^2.8.1",
|
2016-07-26 16:30:46 -04:00
|
|
|
"create-torrent": "^3.24.5",
|
2018-07-31 08:02:47 -04:00
|
|
|
"deep-object-diff": "^1.1.0",
|
2015-06-09 11:41:40 -04:00
|
|
|
"express": "^4.12.4",
|
2017-08-25 15:02:09 -04:00
|
|
|
"express-oauth-server": "^2.0.0",
|
2018-08-27 10:34:41 -04:00
|
|
|
"express-rate-limit": "^3.1.0",
|
2018-02-16 12:42:02 -05:00
|
|
|
"express-validator": "^5.0.0",
|
2018-07-31 08:02:47 -04:00
|
|
|
"flat": "^4.1.0",
|
2016-05-03 16:41:46 -04:00
|
|
|
"fluent-ffmpeg": "^2.1.0",
|
2018-08-27 07:28:49 -04:00
|
|
|
"fs-extra": "^7.0.0",
|
2018-07-16 03:02:08 -04:00
|
|
|
"helmet": "^3.12.1",
|
2018-10-19 05:41:19 -04:00
|
|
|
"http-signature": "^1.2.0",
|
2018-08-02 20:02:01 -04:00
|
|
|
"ip-anonymize": "^0.0.6",
|
2018-08-27 10:34:41 -04:00
|
|
|
"ipaddr.js": "1.8.1",
|
2018-05-22 13:43:13 -04:00
|
|
|
"is-cidr": "^2.0.5",
|
2018-04-23 08:39:52 -04:00
|
|
|
"iso-639-3": "^1.0.1",
|
2016-03-14 17:41:06 -04:00
|
|
|
"js-yaml": "^3.5.4",
|
2018-03-13 11:00:39 -04:00
|
|
|
"jsonld": "^1.0.1",
|
2017-12-18 05:53:04 -05:00
|
|
|
"jsonld-signatures": "https://github.com/Chocobozzz/jsonld-signatures#rsa2017",
|
2018-05-22 10:02:29 -04:00
|
|
|
"lodash": "^4.17.10",
|
2016-07-26 16:30:46 -04:00
|
|
|
"magnet-uri": "^5.1.4",
|
2018-10-20 13:15:41 -04:00
|
|
|
"marked-man": "^0.2.1",
|
2018-09-14 05:52:23 -04:00
|
|
|
"memoizee": "^0.4.14",
|
2015-06-09 11:41:40 -04:00
|
|
|
"morgan": "^1.5.3",
|
2015-12-04 15:43:26 -05:00
|
|
|
"multer": "^1.1.0",
|
2018-09-13 08:27:44 -04:00
|
|
|
"netrc-parser": "^3.1.6",
|
2018-01-30 07:27:07 -05:00
|
|
|
"nodemailer": "^4.4.2",
|
2018-05-11 03:53:03 -04:00
|
|
|
"parse-torrent": "^6.0.0",
|
2016-04-19 16:29:36 -04:00
|
|
|
"password-generator": "^2.0.2",
|
2017-11-09 11:51:58 -05:00
|
|
|
"pem": "^1.12.3",
|
2018-06-29 08:40:39 -04:00
|
|
|
"pfeed": "^1.1.6",
|
2018-02-16 12:42:02 -05:00
|
|
|
"pg": "^7.4.1",
|
2016-12-11 15:50:51 -05:00
|
|
|
"pg-hstore": "^2.3.2",
|
2018-07-11 08:23:52 -04:00
|
|
|
"prompt": "^1.0.0",
|
2018-01-30 07:27:07 -05:00
|
|
|
"redis": "^2.8.0",
|
2017-12-12 11:53:50 -05:00
|
|
|
"reflect-metadata": "^0.1.10",
|
2017-04-16 08:25:37 -04:00
|
|
|
"request": "^2.81.0",
|
2016-12-29 06:13:19 -05:00
|
|
|
"safe-buffer": "^5.0.1",
|
2016-06-01 14:12:25 -04:00
|
|
|
"scripty": "^1.5.0",
|
2018-06-26 11:52:14 -04:00
|
|
|
"sequelize": "4.38.0",
|
2018-08-27 10:34:41 -04:00
|
|
|
"sequelize-typescript": "0.6.6",
|
2018-03-13 11:00:39 -04:00
|
|
|
"sharp": "^0.20.0",
|
2018-07-16 08:22:16 -04:00
|
|
|
"srt-to-vtt": "^1.1.2",
|
2018-09-13 08:27:44 -04:00
|
|
|
"summon-install": "^0.4.3",
|
2018-08-02 20:02:01 -04:00
|
|
|
"useragent": "^2.3.0",
|
2017-10-26 02:51:11 -04:00
|
|
|
"uuid": "^3.1.0",
|
2018-05-11 03:53:03 -04:00
|
|
|
"validator": "^10.2.0",
|
2017-11-09 11:51:58 -05:00
|
|
|
"webfinger.js": "^2.6.6",
|
2018-08-27 10:34:41 -04:00
|
|
|
"webtorrent": "^0.102.1",
|
2018-09-20 10:53:31 -04:00
|
|
|
"winston": "3.1.0",
|
2018-08-27 10:34:41 -04:00
|
|
|
"ws": "^6.0.0",
|
2018-08-02 09:34:09 -04:00
|
|
|
"youtube-dl": "^1.12.2"
|
2015-06-09 11:41:40 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-05-15 16:22:03 -04:00
|
|
|
"@types/async": "^2.0.40",
|
2018-05-23 04:03:26 -04:00
|
|
|
"@types/async-lock": "^1.1.0",
|
2018-05-11 03:53:03 -04:00
|
|
|
"@types/bcrypt": "^2.0.0",
|
2018-07-17 04:16:45 -04:00
|
|
|
"@types/bluebird": "3.5.21",
|
2017-05-15 16:22:03 -04:00
|
|
|
"@types/body-parser": "^1.16.3",
|
2018-06-30 03:55:42 -04:00
|
|
|
"@types/bull": "^3.3.12",
|
2018-09-11 10:27:07 -04:00
|
|
|
"@types/bytes": "^3.0.0",
|
2017-09-04 15:21:47 -04:00
|
|
|
"@types/chai": "^4.0.4",
|
2018-04-18 10:08:36 -04:00
|
|
|
"@types/chai-json-schema": "^1.4.3",
|
|
|
|
"@types/chai-xml": "^0.3.1",
|
2018-02-16 12:42:02 -05:00
|
|
|
"@types/config": "^0.0.34",
|
2017-05-15 16:22:03 -04:00
|
|
|
"@types/express": "^4.0.35",
|
2018-03-29 04:58:24 -04:00
|
|
|
"@types/express-rate-limit": "^2.9.3",
|
2018-10-18 03:44:43 -04:00
|
|
|
"@types/fluent-ffmpeg": "^2.1.8",
|
2018-08-27 10:23:34 -04:00
|
|
|
"@types/fs-extra": "^5.0.4",
|
2018-06-26 11:52:14 -04:00
|
|
|
"@types/libxmljs": "^0.18.0",
|
2017-05-15 16:22:03 -04:00
|
|
|
"@types/lodash": "^4.14.64",
|
2017-06-10 16:15:25 -04:00
|
|
|
"@types/magnet-uri": "^5.1.1",
|
2018-01-30 09:16:24 -05:00
|
|
|
"@types/maildev": "^0.0.1",
|
2018-09-14 05:52:23 -04:00
|
|
|
"@types/memoizee": "^0.4.2",
|
2017-08-25 12:36:49 -04:00
|
|
|
"@types/mkdirp": "^0.5.1",
|
2018-04-06 05:54:24 -04:00
|
|
|
"@types/mocha": "^5.0.0",
|
2017-05-15 16:22:03 -04:00
|
|
|
"@types/morgan": "^1.7.32",
|
2017-08-25 12:36:49 -04:00
|
|
|
"@types/multer": "^1.3.3",
|
2018-05-11 03:53:03 -04:00
|
|
|
"@types/node": "^10.0.8",
|
2018-01-30 07:27:07 -05:00
|
|
|
"@types/nodemailer": "^4.3.1",
|
2018-08-27 10:34:41 -04:00
|
|
|
"@types/oauth2-server": "^3.0.8",
|
2017-11-09 11:51:58 -05:00
|
|
|
"@types/pem": "^1.9.3",
|
2018-01-30 07:27:07 -05:00
|
|
|
"@types/redis": "^2.8.5",
|
2017-08-25 12:36:49 -04:00
|
|
|
"@types/request": "^2.0.3",
|
2018-01-03 05:36:03 -05:00
|
|
|
"@types/sharp": "^0.17.6",
|
2017-09-04 15:21:47 -04:00
|
|
|
"@types/supertest": "^2.0.3",
|
2018-03-13 11:00:39 -04:00
|
|
|
"@types/validator": "^9.4.0",
|
2017-09-04 15:21:47 -04:00
|
|
|
"@types/webtorrent": "^0.98.4",
|
2018-08-27 10:34:41 -04:00
|
|
|
"@types/ws": "^6.0.0",
|
2017-08-25 12:36:49 -04:00
|
|
|
"chai": "^4.1.1",
|
2018-04-18 10:08:36 -04:00
|
|
|
"chai-json-schema": "^1.5.0",
|
|
|
|
"chai-xml": "^0.3.2",
|
2018-05-12 11:28:37 -04:00
|
|
|
"husky": "^1.0.0-rc.4",
|
2018-08-27 10:34:41 -04:00
|
|
|
"libxmljs": "0.19.3",
|
2018-05-12 11:28:37 -04:00
|
|
|
"lint-staged": "^7.1.0",
|
2018-01-30 09:16:24 -05:00
|
|
|
"maildev": "^1.0.0-rc3",
|
2018-01-24 04:25:56 -05:00
|
|
|
"mocha": "^5.0.0",
|
2017-06-11 05:29:03 -04:00
|
|
|
"nodemon": "^1.11.0",
|
2018-05-12 11:28:37 -04:00
|
|
|
"sass-lint": "^1.12.1",
|
2017-10-09 08:55:13 -04:00
|
|
|
"source-map-support": "^0.5.0",
|
2018-04-06 04:44:02 -04:00
|
|
|
"spectacle-docs": "^1.0.2",
|
2017-02-10 05:03:03 -05:00
|
|
|
"supertest": "^3.0.0",
|
2018-08-27 10:34:41 -04:00
|
|
|
"ts-node": "7.0.1",
|
2017-09-04 14:07:54 -04:00
|
|
|
"tslint": "^5.7.0",
|
2018-09-21 03:26:02 -04:00
|
|
|
"tslint-config-standard": "^8.0.1",
|
2018-02-22 04:44:03 -05:00
|
|
|
"typescript": "^2.5.2",
|
2018-08-27 10:34:41 -04:00
|
|
|
"xliff": "^4.0.0"
|
2015-06-09 11:41:40 -04:00
|
|
|
},
|
2016-10-21 05:20:14 -04:00
|
|
|
"scripty": {
|
|
|
|
"silent": true
|
2018-09-07 04:51:42 -04:00
|
|
|
},
|
2018-09-13 08:27:44 -04:00
|
|
|
"summon": {
|
|
|
|
"silent": true
|
|
|
|
},
|
2018-09-07 04:51:42 -04:00
|
|
|
"sasslintConfig": "client/.sass-lint.yml"
|
2015-06-09 11:41:40 -04:00
|
|
|
}
|