Use async series in installer for better readability
[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",
21     "build:client": "SCRIPTY_PARALLEL=true scripty",
22     "build:client:sass": "scripty",
23     "build:client:tsc": "scripty",
24     "clean": "npm run clean:client",
25     "clean:client": "SCRIPTY_PARALLEL=true scripty",
26     "clean:client:sass": "scripty",
27     "clean:client:tsc": "scripty",
28     "clean:server:test": "scripty",
29     "watch:client": "SCRIPTY_PARALLEL=true scripty",
30     "watch:client:sass": "scripty",
31     "watch:client:tsc": "scripty",
32     "danger:clean:server": "scripty",
33     "danger:clean:modules": "scripty",
34     "play": "scripty",
35     "dev": "scripty",
36     "livereload": "livereload ./client",
37     "start": "node server",
38     "test": "scripty",
39     "help": "scripty",
40     "postinstall": "cd client && npm install"
41   },
42   "dependencies": {
43     "async": "^1.2.1",
44     "bittorrent-tracker": "^8.0.0",
45     "body-parser": "^1.12.4",
46     "concurrently": "^2.0.0",
47     "config": "^1.14.0",
48     "connect-livereload": "^0.5.3",
49     "debug": "^2.2.0",
50     "dezalgo": "^1.0.3",
51     "electron-spawn": "https://github.com/Chocobozzz/electron-spawn",
52     "express": "^4.12.4",
53     "express-oauth-server": "https://github.com/Chocobozzz/express-oauth-server",
54     "express-validator": "^2.11.0",
55     "fluent-ffmpeg": "^2.1.0",
56     "js-yaml": "^3.5.4",
57     "lodash": "^4.11.1",
58     "mkdirp": "^0.5.1",
59     "mongoose": "^4.0.5",
60     "morgan": "^1.5.3",
61     "multer": "^1.1.0",
62     "node-ipc": "^7.0.0",
63     "openssl-wrapper": "^0.2.3",
64     "password-generator": "^2.0.2",
65     "request": "^2.57.0",
66     "request-replay": "^1.0.2",
67     "segfault-handler": "^1.0.0",
68     "ursa": "^0.9.1",
69     "validator": "^5.0.0",
70     "webtorrent": "^0.93.2",
71     "winston": "^2.1.1",
72     "ws": "^1.0.1"
73   },
74   "devDependencies": {
75     "chai": "^3.3.0",
76     "mocha": "^2.3.3",
77     "node-livereload": "^0.6.0",
78     "node-sass": "^3.4.2",
79     "scripty": "^1.5.0",
80     "standard": "^7.0.1",
81     "supertest": "^1.1.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 }