]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - package.json
36730aaa075bd06b25e6a6f1ce4be869416fb54c
[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 "build": "concurrently \"npm run client:sass\" \"npm run client:tsc\"",
21
22 "client:clean": "concurrently \"npm run client:tsc:clean\" \"npm run client:sass:clean\"",
23
24 "client:sass:index": "npm run client:sass:index:clean && cd client && node-sass --include-path node_modules/bootstrap-sass/assets/stylesheets/ stylesheets/application.scss stylesheets/index.css",
25 "client:sass:index:watch": "cd client && node-sass -w --include-path node_modules/bootstrap-sass/assets/stylesheets/ stylesheets/application.scss stylesheets/index.css",
26 "client:sass:index:clean": "cd client && rm -f stylesheets/index.css",
27
28 "client:sass:angular": "cd client && node-sass angular/ --output angular/",
29 "client:sass:angular:watch": "cd client && node-sass -w angular/ --output angular/",
30 "client:sass:angular:clean": "cd client && rm -f angular/**/*.css",
31
32 "client:sass": "concurrently \"npm run client:sass:index\" \"npm run client:sass:angular\"",
33 "client:sass:watch": "concurrently \"npm run client:sass:index:watch\" \"npm run client:sass:angular:watch\"",
34 "client:sass:clean": "concurrently \"npm run client:sass:index:clean\" \"npm run client:sass:angular:clean\"",
35
36 "client:tsc": "cd client && npm run tsc",
37 "client:tsc:watch": "cd client && npm run tsc:w",
38 "client:tsc:clean": "cd client && find angular -regextype posix-egrep -regex \".*\\.(js|map)$\" -exec rm -f {} \\;",
39
40 "dev": "npm run build && concurrently \"npm run livereload\" \"npm run client:tsc:watch\" \"npm run client:sass:watch\" \"npm start\"",
41 "livereload": "livereload ./client",
42 "start": "node server",
43 "test": "standard && mocha server/tests"
44 },
45 "dependencies": {
46 "async": "^1.2.1",
47 "bittorrent-tracker": "^7.0.0",
48 "body-parser": "^1.12.4",
49 "config": "^1.14.0",
50 "connect-livereload": "^0.5.3",
51 "debug": "^2.2.0",
52 "dezalgo": "^1.0.3",
53 "electron-spawn": "https://github.com/Chocobozzz/electron-spawn",
54 "express": "^4.12.4",
55 "express-validator": "^2.11.0",
56 "lodash-node": "^3.10.2",
57 "mkdirp": "^0.5.1",
58 "mongoose": "^4.0.5",
59 "morgan": "^1.5.3",
60 "multer": "^1.1.0",
61 "node-ipc": "^6.0.0",
62 "openssl-wrapper": "https://github.com/Chocobozzz/node-openssl-wrapper",
63 "request": "^2.57.0",
64 "request-replay": "^1.0.2",
65 "segfault-handler": "^1.0.0",
66 "ursa": "^0.9.1",
67 "validator": "^5.0.0",
68 "webtorrent": "^0.78.1",
69 "winston": "^2.1.1",
70 "ws": "^1.0.1"
71 },
72 "devDependencies": {
73 "chai": "^3.3.0",
74 "mocha": "^2.3.3",
75 "node-livereload": "^0.6.0",
76 "node-sass": "^3.4.2",
77 "standard": "^6.0.1",
78 "supertest": "^1.1.0"
79 },
80 "standard": {
81 "ignore": [
82 "client/"
83 ],
84 "globals": [
85 "alert",
86 "confirm",
87 "it",
88 "after",
89 "afterEach",
90 "before",
91 "beforeEach",
92 "describe",
93 "include"
94 ]
95 }
96 }