579ef3d2ef542b7aa862247cbb837143d60942a4
[oweals/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": "^1.2.1",
38     "bittorrent-tracker": "^8.0.0",
39     "body-parser": "^1.12.4",
40     "concurrently": "^2.0.0",
41     "config": "^1.14.0",
42     "debug": "^2.2.0",
43     "dezalgo": "^1.0.3",
44     "electron-spawn": "https://github.com/Chocobozzz/electron-spawn",
45     "express": "^4.12.4",
46     "express-oauth-server": "https://github.com/Chocobozzz/express-oauth-server",
47     "express-validator": "^2.11.0",
48     "fluent-ffmpeg": "^2.1.0",
49     "js-yaml": "^3.5.4",
50     "lodash": "^4.11.1",
51     "mkdirp": "^0.5.1",
52     "mongoose": "^4.0.5",
53     "morgan": "^1.5.3",
54     "multer": "^1.1.0",
55     "node-ipc": "^7.0.0",
56     "node-sass": "^3.4.2",
57     "openssl-wrapper": "^0.2.3",
58     "password-generator": "^2.0.2",
59     "request": "^2.57.0",
60     "request-replay": "^1.0.2",
61     "scripty": "^1.5.0",
62     "segfault-handler": "^1.0.0",
63     "ursa": "^0.9.1",
64     "webtorrent": "^0.93.2",
65     "winston": "^2.1.1",
66     "ws": "^1.0.1"
67   },
68   "devDependencies": {
69     "chai": "^3.3.0",
70     "livereload": "^0.4.1",
71     "mocha": "^2.3.3",
72     "standard": "^7.0.1",
73     "supertest": "^1.1.0"
74   },
75   "standard": {
76     "ignore": [
77       "client/"
78     ],
79     "globals": [
80       "alert",
81       "confirm",
82       "it",
83       "after",
84       "afterEach",
85       "before",
86       "beforeEach",
87       "describe",
88       "include"
89     ]
90   }
91 }