]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - package.json
update modules AND REMOVE SUPPORT OF NODE 0.12 :'(
[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.",
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 "start": "grunt dev",
21 "test": "grunt build && standard && mocha test"
22 },
23 "dependencies": {
24 "async": "^1.2.1",
25 "bittorrent-tracker": "^7.0.0",
26 "blueimp-file-upload": "^9.10.1",
27 "body-parser": "^1.12.4",
28 "bootstrap-sass": "^3.3.5",
29 "config": "^1.14.0",
30 "connect-livereload": "^0.5.3",
31 "debug": "^2.2.0",
32 "dezalgo": "^1.0.3",
33 "electron-spawn": "https://github.com/Chocobozzz/electron-spawn",
34 "express": "^4.12.4",
35 "express-validator": "^2.11.0",
36 "grunt": "^0.4.5",
37 "grunt-browserify": "^4.0.1",
38 "grunt-concurrent": "^2.1.0",
39 "grunt-contrib-clean": "^0.7.0",
40 "grunt-contrib-copy": "0.8.2",
41 "grunt-contrib-watch": "^0.6.1",
42 "grunt-express-server": "^0.5.1",
43 "grunt-newer": "^1.1.1",
44 "grunt-sass": "^1.1.0",
45 "jade": "^1.10.0",
46 "jquery": "^2.1.4",
47 "js-yaml": "^3.3.1",
48 "load-grunt-tasks": "^3.3.0",
49 "lodash-node": "3.10.1",
50 "mkdirp": "^0.5.1",
51 "mongoose": "^4.0.5",
52 "morgan": "^1.5.3",
53 "multer": "^1.1.0",
54 "node-ipc": "^6.0.0",
55 "openssl-wrapper": "https://github.com/Chocobozzz/node-openssl-wrapper",
56 "request": "^2.57.0",
57 "request-replay": "^1.0.2",
58 "segfault-handler": "^1.0.0",
59 "time-grunt": "^1.2.1",
60 "ursa": "^0.9.1",
61 "validator": "^4.3.0",
62 "webtorrent": "^0.72.2",
63 "winston": "^2.1.1",
64 "ws": "^1.0.1"
65 },
66 "devDependencies": {
67 "chai": "^3.3.0",
68 "mocha": "^2.3.3",
69 "standard": "^5.1.0",
70 "supertest": "^1.1.0"
71 },
72 "standard": {
73 "globals": [
74 "alert",
75 "confirm",
76 "it",
77 "after",
78 "afterEach",
79 "before",
80 "beforeEach",
81 "describe",
82 "include"
83 ]
84 }
85 }