]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - package.json
Merge branch 'postgresql'
[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.x"
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:dev": "scripty",
28 "danger:clean:prod": "scripty",
29 "danger:clean:modules": "scripty",
30 "play": "scripty",
31 "dev": "scripty",
32 "start": "node server",
33 "check": "scripty",
34 "upgrade": "scripty",
35 "update-host": "scripty",
36 "test": "scripty",
37 "help": "scripty",
38 "postinstall": "cd client && npm install"
39 },
40 "dependencies": {
41 "async": "^2.0.0",
42 "bcrypt": "^0.8.7",
43 "bittorrent-tracker": "^8.0.0",
44 "body-parser": "^1.12.4",
45 "concurrently": "^3.1.0",
46 "config": "^1.14.0",
47 "cors": "^2.8.1",
48 "create-torrent": "^3.24.5",
49 "debug": "^2.2.0",
50 "dezalgo": "^1.0.3",
51 "express": "^4.12.4",
52 "express-oauth-server": "https://github.com/Chocobozzz/express-oauth-server",
53 "express-validator": "^2.11.0",
54 "fluent-ffmpeg": "^2.1.0",
55 "js-yaml": "^3.5.4",
56 "lodash": "^4.11.1",
57 "magnet-uri": "^5.1.4",
58 "mkdirp": "^0.5.1",
59 "morgan": "^1.5.3",
60 "multer": "^1.1.0",
61 "openssl-wrapper": "^0.3.4",
62 "parse-torrent": "^5.8.0",
63 "password-generator": "^2.0.2",
64 "pg": "^6.1.0",
65 "pg-hstore": "^2.3.2",
66 "request": "^2.57.0",
67 "request-replay": "^1.0.2",
68 "rimraf": "^2.5.4",
69 "safe-buffer": "^5.0.1",
70 "scripty": "^1.5.0",
71 "sequelize": "^3.27.0",
72 "winston": "^2.1.1",
73 "ws": "^1.1.1"
74 },
75 "devDependencies": {
76 "chai": "^3.3.0",
77 "commander": "^2.9.0",
78 "mocha": "^3.0.1",
79 "standard": "^8.0.0",
80 "supertest": "^2.0.0",
81 "webtorrent": "^0.97.0"
82 },
83 "standard": {
84 "ignore": [
85 "client/"
86 ],
87 "globals": [
88 "alert",
89 "confirm",
90 "it",
91 "after",
92 "afterEach",
93 "before",
94 "beforeEach",
95 "describe",
96 "include"
97 ]
98 },
99 "scripty": {
100 "silent": true
101 }
102 }