]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - package.json
Merge branch 'webseed'
[github/Chocobozzz/PeerTube.git] / package.json
1 {
2 "name": "peertube",
3 "description": "Prototype of a decentralized video streaming platform using P2P (bittorent) directly in the web browser with WebTorrent and Angular 2.",
4 "version": "0.0.1",
5 "private": true,
6 "licence": "GPLv3",
7 "engines": {
8 "node": ">=4.2.0"
9 },
10 "author": {
11 "name": "Florian Bigard",
12 "email": "florian.bigard@gmail.com",
13 "url": "http://github.com/Chocobozzz"
14 },
15 "repository": {
16 "type": "git",
17 "url": "git://github.com/Chocobozzz/PeerTube.git"
18 },
19 "scripts": {
20 "build": "npm run build:client:prod",
21 "build:client:dev": "scripty",
22 "build:client:prod": "scripty",
23 "clean": "npm run clean:client",
24 "clean:client": "scripty",
25 "clean:server:test": "scripty",
26 "watch:client": "SCRIPTY_PARALLEL=true scripty",
27 "danger:clean:server": "scripty",
28 "danger:clean:modules": "scripty",
29 "play": "scripty",
30 "dev": "scripty",
31 "start": "node server",
32 "test": "scripty",
33 "help": "scripty",
34 "postinstall": "cd client && npm install"
35 },
36 "dependencies": {
37 "async": "^2.0.0",
38 "bcrypt": "^0.8.7",
39 "bittorrent-tracker": "^8.0.0",
40 "body-parser": "^1.12.4",
41 "concurrently": "^2.0.0",
42 "config": "^1.14.0",
43 "create-torrent": "^3.24.5",
44 "debug": "^2.2.0",
45 "dezalgo": "^1.0.3",
46 "express": "^4.12.4",
47 "express-oauth-server": "https://github.com/Chocobozzz/express-oauth-server",
48 "express-validator": "^2.11.0",
49 "fluent-ffmpeg": "^2.1.0",
50 "js-yaml": "^3.5.4",
51 "lodash": "^4.11.1",
52 "magnet-uri": "^5.1.4",
53 "mkdirp": "^0.5.1",
54 "mongoose": "^4.0.5",
55 "morgan": "^1.5.3",
56 "multer": "^1.1.0",
57 "openssl-wrapper": "^0.3.4",
58 "parse-torrent": "^5.8.0",
59 "password-generator": "^2.0.2",
60 "request": "^2.57.0",
61 "request-replay": "^1.0.2",
62 "scripty": "^1.5.0",
63 "ursa": "^0.9.1",
64 "winston": "^2.1.1",
65 "ws": "^1.1.1"
66 },
67 "devDependencies": {
68 "chai": "^3.3.0",
69 "commander": "^2.9.0",
70 "mocha": "^3.0.1",
71 "standard": "^8.0.0",
72 "supertest": "^2.0.0"
73 },
74 "standard": {
75 "ignore": [
76 "client/"
77 ],
78 "globals": [
79 "alert",
80 "confirm",
81 "it",
82 "after",
83 "afterEach",
84 "before",
85 "beforeEach",
86 "describe",
87 "include"
88 ]
89 }
90 }