Server: add npm run check to check CORS, bittorrent tracker...
[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.x"
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:dev": "scripty",
28     "danger:clean:prod": "scripty",
29     "danger:clean:modules": "scripty",
30     "play": "scripty",
31     "dev": "scripty",
32     "start": "node server",
33     "check": "scripty",
34     "test": "scripty",
35     "help": "scripty",
36     "postinstall": "cd client && npm install"
37   },
38   "dependencies": {
39     "async": "^2.0.0",
40     "bcrypt": "^0.8.7",
41     "bittorrent-tracker": "^8.0.0",
42     "body-parser": "^1.12.4",
43     "concurrently": "^3.1.0",
44     "config": "^1.14.0",
45     "cors": "^2.8.1",
46     "create-torrent": "^3.24.5",
47     "debug": "^2.2.0",
48     "dezalgo": "^1.0.3",
49     "express": "^4.12.4",
50     "express-oauth-server": "https://github.com/Chocobozzz/express-oauth-server",
51     "express-validator": "^2.11.0",
52     "fluent-ffmpeg": "^2.1.0",
53     "js-yaml": "^3.5.4",
54     "lodash": "^4.11.1",
55     "magnet-uri": "^5.1.4",
56     "mkdirp": "^0.5.1",
57     "mongoose": "^4.0.5",
58     "morgan": "^1.5.3",
59     "multer": "^1.1.0",
60     "openssl-wrapper": "^0.3.4",
61     "parse-torrent": "^5.8.0",
62     "password-generator": "^2.0.2",
63     "request": "^2.57.0",
64     "request-replay": "^1.0.2",
65     "rimraf": "^2.5.4",
66     "scripty": "^1.5.0",
67     "ursa": "^0.9.1",
68     "winston": "^2.1.1",
69     "ws": "^1.1.1"
70   },
71   "devDependencies": {
72     "chai": "^3.3.0",
73     "commander": "^2.9.0",
74     "mocha": "^3.0.1",
75     "standard": "^8.0.0",
76     "supertest": "^2.0.0",
77     "webtorrent": "^0.97.0"
78   },
79   "standard": {
80     "ignore": [
81       "client/"
82     ],
83     "globals": [
84       "alert",
85       "confirm",
86       "it",
87       "after",
88       "afterEach",
89       "before",
90       "beforeEach",
91       "describe",
92       "include"
93     ]
94   },
95   "scripty": {
96     "silent": true
97   }
98 }