]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - package.json
Implement user API (create, update, remove, list)
[github/Chocobozzz/PeerTube.git] / package.json
CommitLineData
8c308c2b 1{
d148f3b9 2 "name": "peertube",
93534495 3 "description": "Prototype of a decentralized video streaming platform using P2P (bittorent) directly in the web browser with WebTorrent and Angular 2.",
8c308c2b
C
4 "version": "0.0.1",
5 "private": true,
288a1331 6 "licence": "GPLv3",
8c308c2b 7 "engines": {
86435b9b 8 "node": ">=4.2.0"
288a1331
C
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"
8c308c2b
C
18 },
19 "scripts": {
fc76359b
C
20 "build": "npm run build:client:prod",
21 "build:client:dev": "scripty",
22 "build:client:prod": "scripty",
031bde86 23 "clean": "npm run clean:client",
fc76359b 24 "clean:client": "scripty",
93534495
C
25 "clean:server:test": "scripty",
26 "watch:client": "SCRIPTY_PARALLEL=true scripty",
93534495
C
27 "danger:clean:server": "scripty",
28 "danger:clean:modules": "scripty",
29 "play": "scripty",
30 "dev": "scripty",
ccfd23df 31 "start": "node server",
93534495
C
32 "test": "scripty",
33 "help": "scripty",
98b01bac 34 "postinstall": "cd client && npm install"
8c308c2b
C
35 },
36 "dependencies": {
1a42c9e2 37 "async": "^2.0.0",
02b72dc7 38 "bittorrent-tracker": "^8.0.0",
8c308c2b 39 "body-parser": "^1.12.4",
2c4a0b5d 40 "concurrently": "^2.0.0",
8c308c2b 41 "config": "^1.14.0",
8c308c2b
C
42 "debug": "^2.2.0",
43 "dezalgo": "^1.0.3",
44 "electron-spawn": "https://github.com/Chocobozzz/electron-spawn",
45 "express": "^4.12.4",
0c1cbbfe 46 "express-oauth-server": "https://github.com/Chocobozzz/express-oauth-server",
8c308c2b 47 "express-validator": "^2.11.0",
3a8a8b51 48 "fluent-ffmpeg": "^2.1.0",
e1c8024a 49 "js-yaml": "^3.5.4",
e7ea0979 50 "lodash": "^4.11.1",
8c308c2b
C
51 "mkdirp": "^0.5.1",
52 "mongoose": "^4.0.5",
53 "morgan": "^1.5.3",
207fbab4 54 "multer": "^1.1.0",
5495c83a 55 "node-ipc": "^8.0.0",
0890478c 56 "openssl-wrapper": "^0.3.4",
bb1e6d0c 57 "password-generator": "^2.0.2",
8c308c2b 58 "request": "^2.57.0",
a81e7a22 59 "request-replay": "^1.0.2",
575fdcec 60 "scripty": "^1.5.0",
207fbab4 61 "segfault-handler": "^1.0.0",
4429bba6 62 "ursa": "^0.9.1",
788a7e02 63 "webtorrent": "^0.93.2",
207fbab4 64 "winston": "^2.1.1",
0890478c 65 "ws": "^1.1.1"
8c308c2b
C
66 },
67 "devDependencies": {
68 "chai": "^3.3.0",
8f68c31a 69 "commander": "^2.9.0",
8c308c2b 70 "mocha": "^2.3.3",
bc503c2a 71 "standard": "^7.0.1",
8c308c2b
C
72 "supertest": "^1.1.0"
73 },
74 "standard": {
3d446a26
C
75 "ignore": [
76 "client/"
77 ],
8c308c2b
C
78 "globals": [
79 "alert",
80 "confirm",
81 "it",
82 "after",
3bcb78b3 83 "afterEach",
8c308c2b 84 "before",
3bcb78b3 85 "beforeEach",
2dd5b570
C
86 "describe",
87 "include"
8c308c2b
C
88 ]
89 }
90}