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